mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-20 16:20:52 +01:00
Merge branch 'master' of ssh://git.tuxfamily.org/gitroot/qet/qet
This commit is contained in:
@@ -1,5 +1,15 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
# migrate .qet directory from SNAP_USER_DATA to SNAP_USER_COMMON
|
||||
from="$SNAP_USER_DATA/.qet"
|
||||
to="$SNAP_USER_COMMON/.qet"
|
||||
if [ ! -d "$to" ] && [ -d "$from" ]; then
|
||||
echo "Migrating user data from $from to $to"
|
||||
mkdir "$to"
|
||||
cp -av "$from/." "$to"
|
||||
fi
|
||||
|
||||
# link DXFtoQET so that QET finds it
|
||||
mkdir -p "$HOME/.qet"
|
||||
ln -snf "$SNAP/bin/DXFtoQET" "$HOME/.qet/DXFtoQET"
|
||||
|
||||
|
||||
@@ -13,47 +13,35 @@ confinement: strict
|
||||
|
||||
layout:
|
||||
/usr/local/share/qelectrotech:
|
||||
bind: $SNAP/usr/local/share/qelectrotech
|
||||
symlink: $SNAP/usr/local/share/qelectrotech
|
||||
/usr/share/libdrm/amdgpu.ids:
|
||||
bind-file: $SNAP/usr/share/libdrm/amdgpu.ids
|
||||
|
||||
plugs:
|
||||
gtk-3-themes:
|
||||
interface: content
|
||||
target: $SNAP/data-dir/themes
|
||||
default-provider: gtk-common-themes
|
||||
icon-themes:
|
||||
interface: content
|
||||
target: $SNAP/data-dir/icons
|
||||
default-provider: gtk-common-themes
|
||||
sound-themes:
|
||||
interface: content
|
||||
target: $SNAP/data-dir/sounds
|
||||
default-provider: gtk-common-themes
|
||||
symlink: $SNAP/kf5/usr/share/libdrm/amdgpu.ids
|
||||
|
||||
apps:
|
||||
qelectrotech:
|
||||
adapter: full
|
||||
command: usr/local/bin/qelectrotech
|
||||
command-chain:
|
||||
- bin/desktop-launch
|
||||
- bin/qelectrotech-launch
|
||||
desktop: usr/local/share/applications/qelectrotech.desktop
|
||||
plugs: &plugs [opengl, x11, unity7, wayland, desktop, desktop-legacy, home, removable-media, gsettings, network, cups-control]
|
||||
extensions: [kde-neon]
|
||||
plugs: &plugs [opengl, unity7, home, removable-media, gsettings, network, cups-control]
|
||||
environment: &env
|
||||
__EGL_VENDOR_LIBRARY_DIRS: $SNAP/usr/share/glvnd/egl_vendor.d
|
||||
QT_QPA_PLATFORMTHEME: gtk3
|
||||
QT_AUTO_SCREEN_SCALE_FACTOR: 1
|
||||
DISABLE_WAYLAND: 1
|
||||
TCL_LIBRARY: $SNAP/usr/share/tcltk/tcl8.6
|
||||
__EGL_VENDOR_LIBRARY_DIRS: $SNAP/kf5/usr/share/glvnd/egl_vendor.d:$SNAP/usr/share/glvnd/egl_vendor.d
|
||||
TCL_LIBRARY: $SNAP/usr/share/tcltk/tcl8.6
|
||||
QT_QPA_PLATFORMTHEME: gtk3
|
||||
QT_AUTO_SCREEN_SCALE_FACTOR: 1
|
||||
HOME: $SNAP_USER_COMMON
|
||||
PYTHONPATH: $SNAP:$SNAP/lib/python3.6/site-packages:$SNAP/usr/lib/python3.6:$SNAP/usr/lib/python3.6/lib-dynload
|
||||
|
||||
qet-tb-generator:
|
||||
command: desktop-launch $SNAP/bin/qet_tb_generator
|
||||
command: bin/qelectrotech-launch $SNAP/bin/qet_tb_generator
|
||||
extensions: [kde-neon]
|
||||
plugs: *plugs
|
||||
environment: *env
|
||||
|
||||
dxf-to-qet:
|
||||
command: desktop-launch $SNAP/bin/DXFtoQET
|
||||
command: bin/DXFtoQET
|
||||
extensions: [kde-neon]
|
||||
plugs: *plugs
|
||||
environment: *env
|
||||
|
||||
@@ -64,34 +52,7 @@ parts:
|
||||
organize:
|
||||
'*': bin/
|
||||
|
||||
desktop-qt5:
|
||||
source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
|
||||
source-subdir: qt
|
||||
plugin: make
|
||||
make-parameters: ["FLAVOR=qt5"]
|
||||
build-packages:
|
||||
- build-essential
|
||||
- qtbase5-dev
|
||||
- dpkg-dev
|
||||
stage-packages:
|
||||
- libxkbcommon0
|
||||
- ttf-ubuntu-font-family
|
||||
- dmz-cursor-theme
|
||||
- light-themes
|
||||
- adwaita-icon-theme
|
||||
- gnome-themes-standard
|
||||
- shared-mime-info
|
||||
- libqt5gui5
|
||||
- libgdk-pixbuf2.0-0
|
||||
- libqt5svg5 # for loading icon themes which are svg
|
||||
- try: [appmenu-qt5] # not available on core18
|
||||
- locales-all
|
||||
- xdg-user-dirs
|
||||
- fcitx-frontend-qt5
|
||||
- cups-bsd # for lpr used for printing in general (needs cups-control)
|
||||
|
||||
qet-tb-generator:
|
||||
after: [desktop-qt5]
|
||||
plugin: python
|
||||
python-version: python3
|
||||
source: https://github.com/qelectrotech/qet_tb_generator.git
|
||||
@@ -100,48 +61,58 @@ parts:
|
||||
- python3-tk
|
||||
- libtk8.6
|
||||
|
||||
dxf-to-qet:
|
||||
after: [desktop-qt5]
|
||||
plugin: qmake
|
||||
source: https://github.com/qelectrotech/DXFtoQET.git
|
||||
kde-sdk-setup:
|
||||
plugin: nil
|
||||
build-snaps:
|
||||
- kde-frameworks-5-core18-sdk
|
||||
build-packages:
|
||||
- qtbase5-dev
|
||||
- g++
|
||||
- mesa-common-dev
|
||||
- libglvnd-dev
|
||||
- rsync
|
||||
override-build: |
|
||||
snapcraftctl build
|
||||
rsync -a --ignore-existing /snap/kde-frameworks-5-core18-sdk/current/ /
|
||||
|
||||
dxf-to-qet:
|
||||
after: [kde-sdk-setup]
|
||||
plugin: nil
|
||||
source: https://github.com/qelectrotech/DXFtoQET.git
|
||||
override-build: |
|
||||
qmake "$SNAPCRAFT_PART_SRC/DXFtoQET.pro"
|
||||
make -j$(nproc)
|
||||
mkdir -p "$SNAPCRAFT_PART_INSTALL/bin"
|
||||
cp DXFtoQET "$SNAPCRAFT_PART_INSTALL/bin/"
|
||||
|
||||
qelectrotech:
|
||||
after: [desktop-qt5]
|
||||
plugin: qmake
|
||||
after: [kde-sdk-setup]
|
||||
plugin: nil
|
||||
source: .
|
||||
build-packages:
|
||||
- git
|
||||
override-pull: |
|
||||
snapcraftctl pull
|
||||
snap_version=$(git describe --dirty)
|
||||
modified_displayed_version=$snap_version".snap"
|
||||
sed -i -E "s|const QString displayedVersion =.*|const QString displayedVersion =\"$modified_displayed_version\";|" sources/qet.h
|
||||
snapcraftctl set-version "$snap_version"
|
||||
override-build: |
|
||||
qmake "$SNAPCRAFT_PART_SRC/qelectrotech.pro"
|
||||
make -j$(nproc)
|
||||
make install INSTALL_ROOT="$SNAPCRAFT_PART_INSTALL"
|
||||
override-stage: |
|
||||
snapcraftctl stage
|
||||
# patch desktop file with correct icon path
|
||||
SED_CMD="sed -i -E s|^Icon=(.*)|Icon=\${SNAP}/usr/local/share/icons/hicolor/128x128/apps/\1.png|g"
|
||||
$SED_CMD usr/local/share/applications/qelectrotech.desktop
|
||||
build-packages:
|
||||
- g++
|
||||
- qttools5-dev-tools
|
||||
- libqt5svg5-dev
|
||||
- libkf5widgetsaddons-dev
|
||||
- libkf5coreaddons-dev
|
||||
- git
|
||||
stage-packages:
|
||||
- qtwayland5
|
||||
- qt5-gtk-platformtheme
|
||||
- libkf5coreaddons5
|
||||
- libkf5widgetsaddons5
|
||||
- libqt5concurrent5
|
||||
- libqt5printsupport5
|
||||
- libqt5sql5
|
||||
- libqt5xml5
|
||||
- libfam0
|
||||
- libqt5sql5-sqlite
|
||||
- libdrm2
|
||||
|
||||
cleanup:
|
||||
after: [qelectrotech, dxf-to-qet, qet-tb-generator]
|
||||
plugin: nil
|
||||
build-snaps: [core18, kde-frameworks-5-core18]
|
||||
override-prime: |
|
||||
# Remove all files from snap that are already included in the base snap or in
|
||||
# any connected content snaps
|
||||
set -eux
|
||||
for snap in "core18" "kde-frameworks-5-core18"; do # List all content-snaps and base snaps you're using here
|
||||
cd "/snap/$snap/current" && find . -type f,l -exec rm -f "$SNAPCRAFT_PRIME/{}" \;
|
||||
done
|
||||
|
||||
@@ -0,0 +1,157 @@
|
||||
<definition type="element" width="130" hotspot_y="66" link_type="simple" hotspot_x="58" height="140" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{519ee754-8140-4e07-9658-7a4c1f6226a0}"/>
|
||||
<names>
|
||||
<name lang="fr">WEMOS D1 </name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-25" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="90" text="LED" color="#000000" y="45"/>
|
||||
<text x="-44" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GPIO" color="#000000" y="-31"/>
|
||||
<text x="21" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="Antenne SMA" color="#000000" y="-16"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="3V3" color="#000000" y="46"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D8" color="#000000" y="34"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D6" color="#000000" y="14"/>
|
||||
<text x="-25" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="Antenne céramique" color="#000000" y="-20"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="A0" color="#000000" y="-16"/>
|
||||
<text x="26" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="SLEEP" color="#000000" y="58"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D0" color="#000000" y="-6"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="3V3" color="#000000" y="44"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="5V" color="#000000" y="44"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D7" color="#000000" y="24"/>
|
||||
<text x="44" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GPIO" color="#000000" y="-31"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D5" color="#000000" y="4"/>
|
||||
<text x="49" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="5V" color="#000000" y="46"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="-4"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="16" color="#000000" y="-4"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D1" color="#000000" y="-6"/>
|
||||
<circle x="-42" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-60"/>
|
||||
<text x="48" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RXD" color="#000000" y="-14"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RX" color="#000000" y="-16"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="A0" color="#000000" y="-14"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D3" color="#000000" y="14"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="0" color="#000000" y="16"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="12" color="#000000" y="16"/>
|
||||
<circle x="47" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="62"/>
|
||||
<text x="57" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="34"/>
|
||||
<text x="46" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="36"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="15" color="#000000" y="36"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="6"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D2" color="#000000" y="4"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="14" color="#000000" y="6"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RST" color="#000000" y="-25"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D4" color="#000000" y="24"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="13" color="#000000" y="26"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="26"/>
|
||||
<text x="48" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="TXD" color="#000000" y="-24"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RST" color="#000000" y="-24"/>
|
||||
<text x="-43" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="RESET" color="#000000" y="61"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="TX" color="#000000" y="-25"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<line end2="none" x1="56" y2="-63" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="70"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<line end2="none" x1="-45" y2="70" antialias="false" x2="-45" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-63"/>
|
||||
<line end2="none" x1="-45" y2="70" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="70"/>
|
||||
<dynamic_text x="-14" z="69" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{5e1eae82-7736-41f4-9a3a-0a3b69bfe8d0}" y="45">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect x="-15" width="35" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="50"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<rect x="-50" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="12" y="53"/>
|
||||
<rect x="-53" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="56"/>
|
||||
<rect x="-52" width="0" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="1" y="58"/>
|
||||
<dynamic_text x="-20" z="82" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{0a357074-6c35-4e21-a72e-0bc787c8e984}" y="19">
|
||||
<text>4M/1M</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-30" z="83" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{edb0fae7-e085-4f32-a163-b9cbbda71185}" y="-53">
|
||||
<text>WEMOS D1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-25" z="84" font="Sans Serif,8,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{b432a8ed-7122-4f6c-a5d8-e0a1939aa212}" y="-17">
|
||||
<text>WEMOS D1
|
||||
Lite/Mini</text>
|
||||
</dynamic_text>
|
||||
<line end2="none" x1="-30" y2="-45" antialias="false" x2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-30" y2="-60" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-20" y2="-50" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-20" y2="-50" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="-10" y2="-50" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-10" y2="-60" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="0" y2="-50" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="0" y2="-50" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="10" y2="-60" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="10" y2="-60" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="20" y2="-50" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="20" y2="-50" antialias="false" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="30" y2="-60" antialias="false" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="30" y2="-60" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="40" y2="-40" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-45" y2="-63" antialias="false" x2="55" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-63"/>
|
||||
<rect x="-30" width="4" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:blue;color:blue" height="10" y="43"/>
|
||||
<rect x="27" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="45"/>
|
||||
<rect x="33" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="45"/>
|
||||
<dynamic_text x="25" z="104" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{a1ac1209-896b-4708-9730-54f0d72cf1c6}" y="34">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<circle x="32" diameter="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-26"/>
|
||||
<circle x="30" diameter="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-28"/>
|
||||
<rect x="-18" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-34"/>
|
||||
<rect x="-16" width="16" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="6" y="-32"/>
|
||||
<terminal x="2" orientation="s" y="69"/>
|
||||
<terminal x="-54" orientation="w" y="-24"/>
|
||||
<terminal x="-54" orientation="w" y="6"/>
|
||||
<terminal x="-54" orientation="w" y="36"/>
|
||||
<terminal x="-54" orientation="w" y="16"/>
|
||||
<terminal x="-54" orientation="w" y="26"/>
|
||||
<terminal x="-54" orientation="w" y="-14"/>
|
||||
<terminal x="-54" orientation="w" y="46"/>
|
||||
<terminal x="-54" orientation="w" y="-4"/>
|
||||
<terminal x="65" orientation="e" y="36"/>
|
||||
<terminal x="65" orientation="e" y="-24"/>
|
||||
<terminal x="66" orientation="e" y="26"/>
|
||||
<terminal x="65" orientation="e" y="16"/>
|
||||
<terminal x="65" orientation="e" y="46"/>
|
||||
<terminal x="65" orientation="e" y="6"/>
|
||||
<terminal x="65" orientation="e" y="-14"/>
|
||||
<terminal x="65" orientation="e" y="-4"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,183 @@
|
||||
<definition type="element" width="130" hotspot_y="65" link_type="simple" hotspot_x="58" height="200" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{201e02f3-08a7-4e96-a917-03c035f61698}"/>
|
||||
<names>
|
||||
<name lang="fr">WEMOS DI PRO</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-34" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="MISO" color="#000000" y="16"/>
|
||||
<text x="-34" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="90" text="LED" color="#000000" y="62"/>
|
||||
<text x="-19" font="Sans Serif,15,-1,5,50,0,0,0,0,0" rotation="0" text="-" color="#000000" y="106"/>
|
||||
<rect x="-40" width="35" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="25" y="105"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="90" text="I2C" color="#000000" y="70"/>
|
||||
<text x="25" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="90" text="IO5" color="#000000" y="52"/>
|
||||
<text x="18" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="BAT-A0" color="#000000" y="85"/>
|
||||
<text x="-34" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="SCK" color="#000000" y="6"/>
|
||||
<circle x="2" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="117"/>
|
||||
<text x="-34" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="SS" color="#000000" y="36"/>
|
||||
<rect x="30" width="4" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:blue;color:blue" height="10" y="50"/>
|
||||
<text x="-2.5" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="LDO_EN" color="#000000" y="85"/>
|
||||
<dynamic_text x="-24" z="13" font="Sans Serif,8,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{f95f914f-b959-4a75-86e9-a4a4805afdf8}" y="-38.5">
|
||||
<text>ESP8266</text>
|
||||
</dynamic_text>
|
||||
<text x="-34" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="MOSI" color="#000000" y="26"/>
|
||||
<text x="38" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="SCL" color="#000000" y="-4"/>
|
||||
<circle x="48" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-60"/>
|
||||
<text x="38" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="SDA" color="#000000" y="6"/>
|
||||
<text x="-36" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="108"/>
|
||||
<rect x="-1.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="72"/>
|
||||
<text x="-44" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GPIO" color="#000000" y="-31"/>
|
||||
<rect x="19" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="72"/>
|
||||
<rect x="4.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="72"/>
|
||||
<text x="21" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="Antenne SMA" color="#000000" y="-16"/>
|
||||
<rect x="25" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="72"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="3V3" color="#000000" y="46"/>
|
||||
<dynamic_text x="17" z="26" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{18222f9f-1654-48f7-977b-0b08e5d224cd}" y="61">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-3.5" z="27" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{02565b2f-871b-46a9-86fb-f18065716420}" y="61">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D8" color="#000000" y="34"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D6" color="#000000" y="14"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="A0" color="#000000" y="-16"/>
|
||||
<text x="-23" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="SLEEP" color="#000000" y="85"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D0" color="#000000" y="-6"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="3V3" color="#000000" y="44"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="5V" color="#000000" y="44"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D7" color="#000000" y="24"/>
|
||||
<text x="44" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GPIO" color="#000000" y="-31"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D5" color="#000000" y="4"/>
|
||||
<text x="49" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="5V" color="#000000" y="46"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="-4"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="16" color="#000000" y="-4"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D1" color="#000000" y="-6"/>
|
||||
<circle x="-42" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-60"/>
|
||||
<text x="48" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RXD" color="#000000" y="-14"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RX" color="#000000" y="-16"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="A0" color="#000000" y="-14"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D3" color="#000000" y="14"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="0" color="#000000" y="16"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="12" color="#000000" y="16"/>
|
||||
<circle x="42" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="97"/>
|
||||
<text x="57" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="34"/>
|
||||
<text x="46" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="36"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="15" color="#000000" y="36"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="6"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D2" color="#000000" y="4"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="14" color="#000000" y="6"/>
|
||||
<text x="-53" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RST" color="#000000" y="-25"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="D4" color="#000000" y="24"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="13" color="#000000" y="26"/>
|
||||
<text x="50" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="26"/>
|
||||
<text x="48" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="TXD" color="#000000" y="-24"/>
|
||||
<text x="-43" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="RST" color="#000000" y="-24"/>
|
||||
<text x="-2" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="RESET" color="#000000" y="110"/>
|
||||
<text x="58" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="TX" color="#000000" y="-25"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<rect x="-45" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<line end2="none" x1="56" y2="-63" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<line end2="none" x1="-45" y2="130" antialias="false" x2="-45" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-63"/>
|
||||
<line end2="none" x1="-45" y2="130" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<dynamic_text x="15" z="91" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{a65d71f4-aa7f-420a-bbbf-59ddaf346162}" y="104">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect x="15" width="30" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="110"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-30"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-20"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-10"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="30"/>
|
||||
<rect x="-55" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="40"/>
|
||||
<rect x="-52" width="0" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="1" y="58"/>
|
||||
<dynamic_text x="-23" z="102" font="Sans Serif,8,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{b3bd3aff-5821-48a3-8111-64f3df908621}" y="29.5">
|
||||
<text>16M bytes</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-30" z="103" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{6cbe8e32-ab02-447d-97a8-093e05e41838}" y="-53">
|
||||
<text>WEMOS D1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-23" z="104" font="Sans Serif,7,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{158649bf-cc15-4c1b-92d2-e7d6ffbe42c9}" y="-5">
|
||||
<text>WEMOS D1
|
||||
mini Pro</text>
|
||||
</dynamic_text>
|
||||
<line end2="none" x1="-30" y2="-45" antialias="false" x2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-30" y2="-60" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-20" y2="-50" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-20" y2="-50" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="-10" y2="-50" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-10" y2="-60" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="0" y2="-50" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="0" y2="-50" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="10" y2="-60" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="10" y2="-60" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="20" y2="-50" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="20" y2="-50" antialias="false" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="30" y2="-60" antialias="false" x2="30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="30" y2="-60" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="40" y2="-40" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-45" y2="-63" antialias="false" x2="55" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-63"/>
|
||||
<rect x="-40" width="4" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:blue;color:blue" height="10" y="60"/>
|
||||
<rect x="-22" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="72"/>
|
||||
<rect x="-16" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="9" y="72"/>
|
||||
<dynamic_text x="-24" z="124" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{8222893c-7a16-42a0-bbba-f2e19700db3a}" y="61">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<circle x="32" diameter="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-26"/>
|
||||
<circle x="30" diameter="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-28"/>
|
||||
<rect x="0" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="16" y="112"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="32" y="58"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8" y="58"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8" y="66"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8" y="74"/>
|
||||
<rect x="56" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8" y="82"/>
|
||||
<terminal x="65" orientation="e" y="62"/>
|
||||
<terminal x="-54" orientation="w" y="36"/>
|
||||
<terminal x="-54" orientation="w" y="6"/>
|
||||
<terminal x="65" orientation="e" y="16"/>
|
||||
<terminal x="65" orientation="e" y="6"/>
|
||||
<terminal x="-54" orientation="w" y="-14"/>
|
||||
<terminal x="65" orientation="e" y="46"/>
|
||||
<terminal x="65" orientation="e" y="-14"/>
|
||||
<terminal x="65" orientation="e" y="36"/>
|
||||
<terminal x="65" orientation="e" y="-4"/>
|
||||
<terminal x="-54" orientation="w" y="-4"/>
|
||||
<terminal x="66" orientation="e" y="26"/>
|
||||
<terminal x="-54" orientation="w" y="16"/>
|
||||
<terminal x="-54" orientation="w" y="26"/>
|
||||
<terminal x="-54" orientation="w" y="-24"/>
|
||||
<terminal x="30" orientation="s" y="130"/>
|
||||
<terminal x="-54" orientation="w" y="46"/>
|
||||
<terminal x="65" orientation="e" y="-24"/>
|
||||
<terminal x="65" orientation="e" y="70"/>
|
||||
<terminal x="65" orientation="e" y="86"/>
|
||||
<terminal x="65" orientation="e" y="78"/>
|
||||
<terminal x="-30" orientation="s" y="130"/>
|
||||
<terminal x="-15" orientation="s" y="130"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,61 @@
|
||||
<definition type="element" width="110" hotspot_y="6" link_type="terminal" hotspot_x="55" height="140" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{baea4887-3555-4d3f-b946-155c77dc2309}"/>
|
||||
<names>
|
||||
<name lang="fr">Capteur Gaz</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="25" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="VCC" color="#000000" y="16"/>
|
||||
<text x="-48" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" text="CO2, Alcool......." color="#000000" y="56"/>
|
||||
<text x="40" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="PWR" color="#000000" y="36"/>
|
||||
<text x="-17" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="AOUT" color="#000000" y="16"/>
|
||||
<text x="6" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<text x="-18" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="78"/>
|
||||
<text x="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="DOUT ADJ" color="#000000" y="71"/>
|
||||
<text x="-36" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="DAT" color="#000000" y="36"/>
|
||||
<circle x="-35" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="71"/>
|
||||
<text x="-37" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="DOUT" color="#000000" y="16"/>
|
||||
<text x="-32" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="Gas Sensor" color="#000000" y="38"/>
|
||||
<line end2="none" x1="-20" y2="10" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="0" y2="10" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="20" y2="10" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="40" y2="10" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<rect x="0" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<line end2="none" x1="51" y2="10" antialias="false" x2="51" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<line end2="none" x1="-36" y2="10" antialias="false" x2="-51" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-51" y2="130" antialias="false" x2="-51" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<rect x="-40" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<line end2="none" x1="50" y2="10" antialias="false" x2="36" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-51" y2="130" antialias="false" x2="50" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<arc x="-40" start="0" angle="178.938" width="20" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="66"/>
|
||||
<line end2="none" x1="-20" y2="71" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="76"/>
|
||||
<line end2="none" x1="-20" y2="72" antialias="false" x2="-22" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="76"/>
|
||||
<line end2="none" x1="-27" y2="79" antialias="false" x2="-33" style="line-style:normal;line-weight:normal;filling:white;color:white" end1="none" length1="1.5" length2="1.5" y1="73"/>
|
||||
<rect x="-40" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="10" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="0" y="10"/>
|
||||
<rect x="-48" width="6" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:blue;color:blue" height="14" y="24"/>
|
||||
<rect x="42" width="6" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:blue;color:blue" height="14" y="24"/>
|
||||
<dynamic_text x="-48" z="33" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{5d1db3b8-0749-48b7-a774-1d2bd08fcbc8}" y="103">
|
||||
<text>MQ7</text>
|
||||
</dynamic_text>
|
||||
<circle x="0" diameter="40" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="85"/>
|
||||
<circle x="5" diameter="30" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="90"/>
|
||||
<terminal x="-10" orientation="n" y="0"/>
|
||||
<terminal x="30" orientation="n" y="0"/>
|
||||
<terminal x="-30" orientation="n" y="0"/>
|
||||
<terminal x="10" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,69 @@
|
||||
<definition type="element" width="80" hotspot_y="74" link_type="terminal" hotspot_x="30" height="150" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{464550d9-0cb5-45c0-8f16-8a8409d96296}"/>
|
||||
<names>
|
||||
<name lang="fr">RF pulse</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">GCE Electronics</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<arc x="-0.1744" start="0" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="-3.0822"/>
|
||||
<text x="7" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="C1" color="#000000" y="57"/>
|
||||
<arc x="0.2813" start="90" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="17.9602" y="-3.0822"/>
|
||||
<arc x="0.2813" start="90" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="17.9602" y="-3.9802"/>
|
||||
<text x="-14" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="57"/>
|
||||
<arc x="0.2813" start="0" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="-3.9802"/>
|
||||
<text x="27" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="C2" color="#000000" y="57"/>
|
||||
<arc x="-8.8331" start="270" angle="90" width="9.11444" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="0.5099"/>
|
||||
<arc x="-13.3903" start="0" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="9.49"/>
|
||||
<line end2="none" x1="17.5987" y2="2.3059" antialias="false" x2="20.3331" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-0.3881"/>
|
||||
<arc x="15.7759" start="180" angle="90" width="9.11444" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="0" y="3.2039"/>
|
||||
<line end2="none" x1="9.3957" y2="-8.4702" antialias="false" x2="4.8385" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-3.9802"/>
|
||||
<text x="9" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="Enocean" color="#000000" y="15"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<text x="7" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="I1" color="#000000" y="-54"/>
|
||||
<text x="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="868 Mhz" color="#000000" y="-15"/>
|
||||
<circle x="10" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="-28"/>
|
||||
<text x="28" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="I2" color="#000000" y="-54"/>
|
||||
<text x="-18" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="RF PULSE" color="#000000" y="-30"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-60"/>
|
||||
<text x="-17" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="+12V" color="#000000" y="-54"/>
|
||||
<rect x="20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="1" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-60"/>
|
||||
<rect x="20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-60"/>
|
||||
<circle x="10" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="20"/>
|
||||
<rect x="8" width="35" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="5" y="42"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<rect x="0" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<rect x="20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="50"/>
|
||||
<rect x="0" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="50"/>
|
||||
<rect x="20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="50"/>
|
||||
<rect x="-25" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="100" y="-50"/>
|
||||
<text x="-11" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="GCE Electronics" color="#000000" y="40"/>
|
||||
<line end2="none" x1="40" y2="60" antialias="false" x2="45" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="60"/>
|
||||
<line end2="none" x1="10" y2="-60" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-15" y2="-60" antialias="false" x2="-25" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-25" y2="60" antialias="false" x2="-25" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-25" y2="60" antialias="false" x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="60"/>
|
||||
<rect x="0" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<line end2="none" x1="35" y2="-60" antialias="false" x2="45" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="45" y2="60" antialias="false" x2="45" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="45" y2="60" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="60"/>
|
||||
<terminal x="30" orientation="s" y="70"/>
|
||||
<terminal x="30" orientation="n" y="-70"/>
|
||||
<terminal x="10" orientation="n" y="-70"/>
|
||||
<terminal x="-10" orientation="s" y="70"/>
|
||||
<terminal x="10" orientation="s" y="70"/>
|
||||
<terminal x="-10" orientation="n" y="-70"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,116 @@
|
||||
<definition type="element" width="200" hotspot_y="6" link_type="terminal" hotspot_x="80" height="170" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{fc4b13dc-6a84-4283-98de-f5465f563326}"/>
|
||||
<names>
|
||||
<name lang="fr">IPXV4 Mini</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">GCE Eletronics</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">IPXV4 Mini</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="35" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="116"/>
|
||||
<rect x="-6" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="116"/>
|
||||
<text x="-2" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="RJ45" color="#000000" y="137"/>
|
||||
<rect x="28" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="116"/>
|
||||
<text x="-46" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="RJ12" color="#000000" y="137"/>
|
||||
<text x="33" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Pwr" color="#ffffff" y="123"/>
|
||||
<text x="-44" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Ext" color="#ffffff" y="123"/>
|
||||
<text x="-1" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="LAN" color="#ffffff" y="123"/>
|
||||
<rect x="-3.25" width="15" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="139"/>
|
||||
<rect x="-6" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="24" y="132"/>
|
||||
<line end2="none" x1="0" y2="152" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="150"/>
|
||||
<line end2="none" x1="0" y2="152" antialias="false" x2="8" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="152"/>
|
||||
<line end2="none" x1="8" y2="150" antialias="false" x2="8" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="152"/>
|
||||
<rect x="60" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="60"/>
|
||||
<text x="29" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="DC 12V" color="#000000" y="114"/>
|
||||
<text x="65" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Sel" color="#ffffff" y="67"/>
|
||||
<circle x="45" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="60"/>
|
||||
<text x="15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Bus+" color="#000000" y="16"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<text x="97" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="17"/>
|
||||
<text x="-45" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="3.3V" color="#000000" y="16"/>
|
||||
<text x="73" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="12V DC Power" color="#000000" y="26"/>
|
||||
<text x="78" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" text="-" color="#000000" y="18"/>
|
||||
<text x="-5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Bus-" color="#000000" y="16"/>
|
||||
<circle x="-10" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="60"/>
|
||||
<text x="-25" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<text x="55" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<text x="-50" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="IPX800 V4M" color="#000000" y="50"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<text x="-65" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<line end2="none" x1="-30" y2="10" antialias="false" x2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="-10" y2="10" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="10" y2="10" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="90" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<circle x="-40" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="60"/>
|
||||
<rect x="-46" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="75"/>
|
||||
<rect x="-15" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="75"/>
|
||||
<text x="-41" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Pwr" color="#ffffff" y="82"/>
|
||||
<text x="-10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Link" color="#ffffff" y="82"/>
|
||||
<rect x="55" width="55" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="5" y="120"/>
|
||||
<rect x="35" width="45" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:gray;color:gray" height="10" y="75"/>
|
||||
<text x="50" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="RESET" color="#000000" y="81"/>
|
||||
<rect x="-47.25" width="15" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="139"/>
|
||||
<rect x="-70" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="100" y="49"/>
|
||||
<text x="54" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="GCE Electronics" color="#000000" y="118"/>
|
||||
<line end2="none" x1="115" y2="10" antialias="false" x2="105" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="70" y2="10" antialias="false" x2="60" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-40" y2="10" antialias="false" x2="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-70" y2="10" antialias="false" x2="-74" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-75" y2="156" antialias="false" x2="-75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<dynamic_text x="-64" z="60" font="Sans Serif,6,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{1d3948be-e057-4441-a923-4c9c285f1877}" y="91">
|
||||
<text>IP:...:...:...:...:..</text>
|
||||
</dynamic_text>
|
||||
<rect x="-50" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<line end2="none" x1="95" y2="10" antialias="false" x2="100" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="50" y2="10" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="70" y2="10" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<rect x="90" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="24" y="132"/>
|
||||
<line end2="none" x1="-44" y2="152" antialias="false" x2="-44" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="150"/>
|
||||
<line end2="none" x1="-44" y2="152" antialias="false" x2="-36" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="152"/>
|
||||
<line end2="none" x1="-36" y2="150" antialias="false" x2="-36" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="152"/>
|
||||
<rect x="-4" width="2" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:yellow;color:yellow" height="2" y="152"/>
|
||||
<rect x="10" width="2" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="2" y="152"/>
|
||||
<line end2="none" x1="-75" y2="156" antialias="false" x2="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="156"/>
|
||||
<line end2="none" x1="-30" y2="156" antialias="false" x2="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="156"/>
|
||||
<circle x="66" diameter="8" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="136"/>
|
||||
<line end2="none" x1="23" y2="156" antialias="false" x2="115" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="156"/>
|
||||
<circle x="62" diameter="16" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="132"/>
|
||||
<line end2="none" x1="115" y2="155" antialias="false" x2="115" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="22" y2="156" antialias="false" x2="14" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="156"/>
|
||||
<rect x="-70" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="25" y="25"/>
|
||||
<circle x="68" diameter="4" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black" y="138"/>
|
||||
<rect x="70" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="20"/>
|
||||
<terminal x="100" orientation="n" y="0"/>
|
||||
<terminal x="0" orientation="n" y="0"/>
|
||||
<terminal x="-20" orientation="n" y="0"/>
|
||||
<terminal x="-60" orientation="n" y="0"/>
|
||||
<terminal x="-40" orientation="n" y="0"/>
|
||||
<terminal x="80" orientation="n" y="0"/>
|
||||
<terminal x="20" orientation="n" y="0"/>
|
||||
<terminal x="40" orientation="n" y="0"/>
|
||||
<terminal x="60" orientation="n" y="0"/>
|
||||
<terminal x="-40" orientation="s" y="156"/>
|
||||
<terminal x="4" orientation="s" y="156"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,121 +1,119 @@
|
||||
<definition height="190" link_type="simple" width="190" version="0.80" type="element" orientation="dyyy" hotspot_x="95" hotspot_y="94">
|
||||
<uuid uuid="{72d7ba56-9d1b-4899-a7db-1ccfaf8bf4cd}"/>
|
||||
<definition type="element" width="190" hotspot_y="94" link_type="simple" hotspot_x="95" height="190" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{981f8dc8-8881-4e9a-bd35-231c395d047e}"/>
|
||||
<names>
|
||||
<name lang="be">ECO-Device</name>
|
||||
<name lang="fr">ECO-Device</name>
|
||||
<name lang="pl">ECO-Device</name>
|
||||
<name lang="el">ECO-Device</name>
|
||||
<name lang="nl">ECO-Device</name>
|
||||
<name lang="cs">ECO-Device</name>
|
||||
<name lang="it">ECO-Device</name>
|
||||
<name lang="pl">ECO-Device</name>
|
||||
<name lang="be">ECO-Device</name>
|
||||
<name lang="el">ECO-Device</name>
|
||||
<name lang="en">ECO-Device</name>
|
||||
<name lang="es">ECO-Device</name>
|
||||
<name lang="it">ECO-Device</name>
|
||||
<name lang="cs">ECO-Device</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">GCE</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">ECO DEVICE</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">GCE Electronics</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">ECO DEVICE</elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="30"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="-22" text="4"/>
|
||||
<rect height="30" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="60" rx="0" width="20" x="-60"/>
|
||||
<rect height="35" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="55" rx="0" width="20" x="65"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="58" text="7"/>
|
||||
<rect height="20" style="line-style:normal;line-weight:normal;filling:black;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="65"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="38" text="6"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="-85" text="T1"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="78" text="8"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-58" length2="1.5" antialias="false" y2="82" x1="-58" y1="72" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-57.433" length2="1.5" antialias="false" y2="72" x1="-42.698" y1="72" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="35" text="C2"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" y="75" diameter="10" x="70"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-43" x="55" text="5-24Vdc"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" y="79" diameter="2" x="74"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-42" length2="1.5" antialias="false" y2="82" x1="-42" y1="72" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="70"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="30"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="62" x="66" text="Alim"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="30"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="70"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-57" length2="1.5" antialias="false" y2="82" x1="-55" y1="82" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="-82" text="1"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="50"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-42" length2="1.5" antialias="false" y2="82" x1="-45" y1="82" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="69" x="67" text="12V"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="-26" text="T4"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-54" length2="1.5" antialias="false" y2="82" x1="-54" y1="85" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="70"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-46" length2="1.5" antialias="false" y2="82" x1="-46" y1="85" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="-62" text="2"/>
|
||||
<text color="#000000" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" y="-61" x="78" text="-"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="-44" text="T3"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-54" length2="1.5" antialias="false" y2="85" x1="-46" y1="85" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="50"/>
|
||||
<text color="#000000" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" y="-61" x="55" text="+"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="10"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="69" x="-59" text="RJ45"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="18" text="6"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="80" x="-58" text="LAN"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="50"/>
|
||||
<rect height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-60" rx="0" width="40" x="50"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="-42" text="3"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-52" x="62" text="Alim"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="-9" text="GND"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="-66" text="T2"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="-2" text="5"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-62" x="16" text="C1"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-30"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-10"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-50"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="35" x="17" text="GCE Electronics"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-70"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-90"/>
|
||||
<rect height="70" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-25" rx="0" width="166" x="-81"/>
|
||||
<rect height="180" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="180" x="-90"/>
|
||||
<rect height="60" style="line-style:normal;line-weight:normal;filling:green;color:none" ry="0" antialias="false" y="-20" rx="0" width="5" x="-76"/>
|
||||
<dynamic_text text_from="UserText" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-28.5" Valignment="AlignTop" x="-71" z="58" frame="false" uuid="{041b8fb4-846c-46b2-b53e-490950a0b76c}" text_width="-1" Halignment="AlignLeft">
|
||||
<rect x="-90" width="180" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="180" y="-90"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="-22" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="-72"/>
|
||||
<rect x="-60" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="30" y="60"/>
|
||||
<rect x="65" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="35" y="55"/>
|
||||
<text x="58" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="7" color="#000000" y="-72"/>
|
||||
<rect x="65" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="20" y="70"/>
|
||||
<text x="38" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="-72"/>
|
||||
<text x="-85" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="T1" color="#000000" y="-62"/>
|
||||
<text x="78" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="8" color="#000000" y="-72"/>
|
||||
<line end2="none" x1="-58" y2="82" antialias="false" x2="-58" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<line end2="none" x1="-42.698" y2="72" antialias="false" x2="-57.433" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<text x="35" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C2" color="#000000" y="-62"/>
|
||||
<circle x="70" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black" y="75"/>
|
||||
<text x="55" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="5-24Vdc" color="#000000" y="-43"/>
|
||||
<circle x="74" diameter="2" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="79"/>
|
||||
<line end2="none" x1="-42" y2="82" antialias="false" x2="-42" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<text x="66" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Alim" color="#000000" y="62"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<line end2="none" x1="-55" y2="82" antialias="false" x2="-57" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="82"/>
|
||||
<text x="-82" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="-72"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<line end2="none" x1="-45" y2="82" antialias="false" x2="-42" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="82"/>
|
||||
<text x="67" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="12V" color="#000000" y="69"/>
|
||||
<text x="-26" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="T4" color="#000000" y="-62"/>
|
||||
<line end2="none" x1="-54" y2="82" antialias="false" x2="-54" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="85"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<line end2="none" x1="-46" y2="82" antialias="false" x2="-46" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="85"/>
|
||||
<text x="-62" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="-72"/>
|
||||
<text x="78" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="-" color="#000000" y="-61"/>
|
||||
<text x="-44" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="T3" color="#000000" y="-62"/>
|
||||
<line end2="none" x1="-46" y2="85" antialias="false" x2="-54" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="85"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="55" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="-61"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="-59" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="RJ45" color="#000000" y="69"/>
|
||||
<text x="18" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="-72"/>
|
||||
<text x="-58" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="LAN" color="#000000" y="80"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="50" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="-60"/>
|
||||
<text x="-42" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="-72"/>
|
||||
<text x="62" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Alim" color="#000000" y="-52"/>
|
||||
<text x="-9" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="-62"/>
|
||||
<text x="-66" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="T2" color="#000000" y="-62"/>
|
||||
<text x="-2" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="-72"/>
|
||||
<text x="16" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C1" color="#000000" y="-62"/>
|
||||
<rect x="-30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="-10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="17" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="GCE Electronics" color="#000000" y="35"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="-90" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="-81" width="166" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="70" y="-25"/>
|
||||
<rect x="-76" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:none" height="60" y="-20"/>
|
||||
<dynamic_text x="-71" z="58" font="Sans Serif,12,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{041b8fb4-846c-46b2-b53e-490950a0b76c}" y="-28.5">
|
||||
<text>ECO</text>
|
||||
</dynamic_text>
|
||||
<rect height="4" style="line-style:normal;line-weight:normal;filling:green;color:none" ry="0" antialias="false" y="37" rx="0" width="65" x="15"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="-90"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="-70"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="-50"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="-30"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="-10"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="20" x="10"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="-90"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="-70"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="-50"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="-30"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="-10"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-70" rx="0" width="20" x="10"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-14" x="-28" text="Devices"/>
|
||||
<dynamic_text text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="12" Valignment="AlignTop" x="-70" z="73" frame="false" uuid="{4e7a85bb-7edc-4655-92fc-a99ff79c6185}" text_width="-1" Halignment="AlignLeft">
|
||||
<rect x="15" width="65" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:none" height="4" y="37"/>
|
||||
<rect x="-90" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-90" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="-30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="-10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-70"/>
|
||||
<text x="-28" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Devices" color="#000000" y="-14"/>
|
||||
<dynamic_text x="-70" z="73" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{4e7a85bb-7edc-4655-92fc-a99ff79c6185}" y="12">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:gray;color:black" antialias="false" y="67.5" diameter="5" x="-12.5"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="69" x="-21" text="Reset"/>
|
||||
<terminal y="-90" x="80" orientation="n"/>
|
||||
<terminal y="-90" x="60" orientation="n"/>
|
||||
<terminal y="-90" x="20" orientation="n"/>
|
||||
<terminal y="-90" x="-80" orientation="n"/>
|
||||
<terminal y="90" x="75" orientation="s"/>
|
||||
<terminal y="-90" x="0" orientation="n"/>
|
||||
<terminal y="-90" x="-40" orientation="n"/>
|
||||
<terminal y="-90" x="-60" orientation="n"/>
|
||||
<terminal y="-90" x="-20" orientation="n"/>
|
||||
<terminal y="90" x="-50" orientation="s"/>
|
||||
<circle x="-12.5" diameter="5" antialias="false" style="line-style:normal;line-weight:normal;filling:gray;color:black" y="67.5"/>
|
||||
<text x="-21" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Reset" color="#000000" y="69"/>
|
||||
<terminal x="75" orientation="s" y="90"/>
|
||||
<terminal x="0" orientation="n" y="-90"/>
|
||||
<terminal x="-50" orientation="s" y="90"/>
|
||||
<terminal x="-40" orientation="n" y="-90"/>
|
||||
<terminal x="-80" orientation="n" y="-90"/>
|
||||
<terminal x="-60" orientation="n" y="-90"/>
|
||||
<terminal x="60" orientation="n" y="-90"/>
|
||||
<terminal x="-20" orientation="n" y="-90"/>
|
||||
<terminal x="80" orientation="n" y="-90"/>
|
||||
<terminal x="20" orientation="n" y="-90"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,195 +1,193 @@
|
||||
<definition height="210" link_type="simple" width="400" version="0.80" type="element" orientation="dyyy" hotspot_x="284" hotspot_y="114">
|
||||
<uuid uuid="{fe18b890-5dd5-4ac1-bf3f-7160a30ccd86}"/>
|
||||
<definition type="element" width="400" hotspot_y="114" link_type="simple" hotspot_x="284" height="210" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{9ad0f02a-4db1-45e4-be5a-2bf0554303ea}"/>
|
||||
<names>
|
||||
<name lang="be">ECO RT2</name>
|
||||
<name lang="fr">ECO RT2</name>
|
||||
<name lang="pl">ECO RT2</name>
|
||||
<name lang="el">ECO RT2</name>
|
||||
<name lang="nl">ECO RT2</name>
|
||||
<name lang="cs">ECO RT2</name>
|
||||
<name lang="it">ECO RT2</name>
|
||||
<name lang="pl">ECO RT2</name>
|
||||
<name lang="be">ECO RT2</name>
|
||||
<name lang="el">ECO RT2</name>
|
||||
<name lang="en">ECO RT2</name>
|
||||
<name lang="es">ECO RT2</name>
|
||||
<name lang="it">ECO RT2</name>
|
||||
<name lang="cs">ECO RT2</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">GCE</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">ECO DEVICE RT2</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">GCE</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">ECO DEVICE RT2</elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<arc angle="90" height="8.98011" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" antialias="true" y="-25.5523" width="18.2289" x="27.9353"/>
|
||||
<arc angle="90" height="17.9602" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" antialias="true" y="-25.5523" width="18.2289" x="28.391"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="40" x="-35"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-110" rx="0" width="25" x="39"/>
|
||||
<ellipse height="4" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" y="-72" width="3" x="-11"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-110" rx="0" width="20" x="-35"/>
|
||||
<ellipse height="4" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" y="-71" width="3" x="-61"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:blue;color:blue" antialias="false" y="-106" diameter="6" x="75"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="20" x="-267"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-110" rx="0" width="26" x="64"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-30" length2="1.5" antialias="false" y2="-70" x1="-30" y1="-80" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-110" rx="0" width="20" x="-15"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-91" x="-23" text="Ch2"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-20" length2="1.5" antialias="false" y2="-70" x1="-30" y1="-70" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0" length2="1.5" antialias="false" y2="-70" x1="0" y1="-80" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-10" length2="1.5" antialias="false" y2="-70" x1="0" y1="-70" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-11" length2="1.5" antialias="false" y2="-64" x1="-20" y1="-70" end2="none"/>
|
||||
<rect height="70" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-35" rx="0" width="376" x="-275"/>
|
||||
<ellipse height="4" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" y="-72" width="3" x="-22"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-83" x="-59" text="Relay Outputs"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-72" x="-208" text="Current Probes"/>
|
||||
<rect height="180" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="389" x="-279"/>
|
||||
<text color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" y="-71" x="48" text="50-60Hz - 0.1A"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-110" rx="0" width="20" x="-85"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="60" rx="0" width="20" x="-230"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="20" x="-205"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-230"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="60" rx="0" width="20" x="-130"/>
|
||||
<rect height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-250"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="20" x="-225"/>
|
||||
<rect height="30" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="50" rx="0" width="20" x="50"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-190"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="68" x="-129" text="0 V"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="68" x="-225" text="0V"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="52" length2="1.5" antialias="false" y2="72" x1="52" y1="62" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="20" x="-165"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-205"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-225"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="52.567" length2="1.5" antialias="false" y2="62" x1="67.302" y1="62" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-165"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-82" x="-222" text="CT1"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="25" x="39"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="40" x="-85"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-170"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="68" length2="1.5" antialias="false" y2="72" x1="68" y1="62" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-210"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="26" x="64"/>
|
||||
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" y="-89" x="74" text="N"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-170"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="53" length2="1.5" antialias="false" y2="72" x1="55" y1="72" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="20" x="-185"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-110" rx="0" width="20" x="-65"/>
|
||||
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" y="-89" x="50" text="L"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-130"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="68" length2="1.5" antialias="false" y2="72" x1="65" y1="72" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-190"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="56" length2="1.5" antialias="false" y2="72" x1="56" y1="75" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="20" x="-185"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="64" length2="1.5" antialias="false" y2="72" x1="64" y1="75" end2="none"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-210"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-65"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-82" x="-202" text="CT2"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-82" x="-182" text="CT3"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-82" x="-163" text="CT4"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-162" text="3"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="56" length2="1.5" antialias="false" y2="75" x1="64" y1="75" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-182" text="2"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-85"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-130"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-203" text="1"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-230"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-150"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-72" text="TIC"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-227" text="Gnd"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="80" rx="0" width="20" x="-150"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-128" text="Gnd"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="78" x="-142" text="4"/>
|
||||
<dynamic_text text_from="UserText" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="0" Valignment="AlignTop" x="-261" z="78" frame="false" uuid="{f2f79708-d64a-4c03-a5e8-d1aa565f2141}" text_width="-1" Halignment="AlignLeft">
|
||||
<rect x="-270" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="20" y="70"/>
|
||||
<rect x="-250" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="20" y="70"/>
|
||||
<rect x="-230" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-210" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-190" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-170" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-150" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-130" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-85" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-65" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="80"/>
|
||||
<rect x="-15" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="-110"/>
|
||||
<rect x="-35" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-110"/>
|
||||
<rect x="-65" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="-110"/>
|
||||
<rect x="-85" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="-110"/>
|
||||
<rect x="39" width="25" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="-110"/>
|
||||
<rect x="64" width="26" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="10" y="-110"/>
|
||||
<rect x="-279" width="389" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="180" y="-100"/>
|
||||
<arc x="27.9353" start="0" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="-25.5523"/>
|
||||
<arc x="28.391" start="90" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="17.9602" y="-25.5523"/>
|
||||
<rect x="-35" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<ellipse x="-11" width="3" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" height="4" y="-72"/>
|
||||
<ellipse x="-61" width="3" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" height="4" y="-71"/>
|
||||
<circle x="75" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="-106"/>
|
||||
<rect x="-267" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<line end2="none" x1="-30" y2="-70" antialias="false" x2="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-80"/>
|
||||
<text x="-23" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Ch2" color="#000000" y="-91"/>
|
||||
<line end2="none" x1="-30" y2="-70" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-70"/>
|
||||
<line end2="none" x1="0" y2="-70" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-80"/>
|
||||
<line end2="none" x1="0" y2="-70" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-70"/>
|
||||
<line end2="none" x1="-20" y2="-64" antialias="false" x2="-11" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-70"/>
|
||||
<rect x="-275" width="376" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="70" y="-35"/>
|
||||
<ellipse x="-22" width="3" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" height="4" y="-72"/>
|
||||
<text x="-59" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Relay Outputs" color="#000000" y="-83"/>
|
||||
<text x="-208" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Current Probes" color="#000000" y="-72"/>
|
||||
<text x="48" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="50-60Hz - 0.1A" color="#000000" y="-71"/>
|
||||
<rect x="-230" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<rect x="-205" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-230" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<rect x="-130" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<rect x="-225" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="30" y="50"/>
|
||||
<rect x="-190" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<text x="-129" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="0 V" color="#000000" y="68"/>
|
||||
<text x="-225" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="0V" color="#000000" y="68"/>
|
||||
<line end2="none" x1="52" y2="72" antialias="false" x2="52" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="62"/>
|
||||
<rect x="-165" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-205" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="-225" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<line end2="none" x1="67.302" y2="62" antialias="false" x2="52.567" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="62"/>
|
||||
<rect x="-165" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="-222" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="CT1" color="#000000" y="-82"/>
|
||||
<rect x="39" width="25" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-85" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<rect x="-170" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<line end2="none" x1="68" y2="72" antialias="false" x2="68" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="62"/>
|
||||
<rect x="-210" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<rect x="64" width="26" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<text x="74" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="N" color="#000000" y="-89"/>
|
||||
<line end2="none" x1="55" y2="72" antialias="false" x2="53" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<rect x="-185" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<text x="50" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="L" color="#000000" y="-90"/>
|
||||
<rect x="-130" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<line end2="none" x1="65" y2="72" antialias="false" x2="68" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<line end2="none" x1="56" y2="72" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="75"/>
|
||||
<rect x="-185" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<line end2="none" x1="64" y2="72" antialias="false" x2="64" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="75"/>
|
||||
<text x="-202" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="CT2" color="#000000" y="-82"/>
|
||||
<text x="-182" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="CT3" color="#000000" y="-82"/>
|
||||
<text x="-163" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="CT4" color="#000000" y="-82"/>
|
||||
<text x="-162" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="78"/>
|
||||
<line end2="none" x1="64" y2="75" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="75"/>
|
||||
<text x="-182" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="78"/>
|
||||
<text x="-203" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="78"/>
|
||||
<rect x="-150" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="70"/>
|
||||
<text x="-72" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="TIC" color="#000000" y="78"/>
|
||||
<text x="-227" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Gnd" color="#000000" y="78"/>
|
||||
<text x="-128" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Gnd" color="#000000" y="78"/>
|
||||
<text x="-142" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="78"/>
|
||||
<dynamic_text x="-261" z="79" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{f2f79708-d64a-4c03-a5e8-d1aa565f2141}" y="0">
|
||||
<text>IP: ---:---:---:---</text>
|
||||
</dynamic_text>
|
||||
<rect height="30" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="50" rx="0" width="20" x="-4"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-2" length2="1.5" antialias="false" y2="72" x1="-2" y1="62" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-1.433" length2="1.5" antialias="false" y2="62" x1="13.302" y1="62" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="14" length2="1.5" antialias="false" y2="72" x1="14" y1="62" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-1" length2="1.5" antialias="false" y2="72" x1="1" y1="72" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="14" length2="1.5" antialias="false" y2="72" x1="11" y1="72" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="2" length2="1.5" antialias="false" y2="72" x1="2" y1="75" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="10" length2="1.5" antialias="false" y2="72" x1="10" y1="75" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="2" length2="1.5" antialias="false" y2="75" x1="10" y1="75" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="70" x="52" text="EXT"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="68" x="-262" text="Bus EBX"/>
|
||||
<rect height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="51" x="39"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-81" x="45" text="100-240 Vac"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="59" x="-3" text="RJ45"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="72" x="-1" text="LAN"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="59" x="51" text="RJ12"/>
|
||||
<rect height="20" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="70" rx="0" width="20" x="-270"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-230" length2="1.5" antialias="false" y2="80" x1="-270" y1="80" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="79" x="-265" text="+"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="79" x="-242" text="-"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="60" rx="0" width="80" x="-210"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="67" x="-197" text="Digital Inputs"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-80" rx="0" width="80" x="-225"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-100" rx="0" width="40" x="-85"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="-91" x="-73" text="Ch1"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="60" rx="0" width="40" x="-270"/>
|
||||
<rect height="60" style="line-style:normal;line-weight:normal;filling:green;color:black" ry="0" antialias="false" y="-30" rx="0" width="10" x="-270"/>
|
||||
<rect height="15" style="line-style:normal;line-weight:normal;filling:black;color:black" ry="0" antialias="false" y="-19" rx="0" width="150" x="-255"/>
|
||||
<text color="#ffffff" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-7" x="-254" text="X-DEVICES"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:green;color:black" ry="0" antialias="false" y="19" rx="0" width="140" x="-50"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="17" x="-46" text="GCE Electronics"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="-90" rx="0" width="90" x="-85"/>
|
||||
<dynamic_text text_from="UserText" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-36" Valignment="AlignTop" x="-258" z="111" frame="false" uuid="{74c3ab20-d2b6-4920-b5fd-0d4ae599ab19}" text_width="-1" Halignment="AlignLeft">
|
||||
<rect x="-4" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="30" y="50"/>
|
||||
<line end2="none" x1="-2" y2="72" antialias="false" x2="-2" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="62"/>
|
||||
<line end2="none" x1="13.302" y2="62" antialias="false" x2="-1.433" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="62"/>
|
||||
<line end2="none" x1="14" y2="72" antialias="false" x2="14" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="62"/>
|
||||
<line end2="none" x1="1" y2="72" antialias="false" x2="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<line end2="none" x1="11" y2="72" antialias="false" x2="14" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="72"/>
|
||||
<line end2="none" x1="2" y2="72" antialias="false" x2="2" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="75"/>
|
||||
<line end2="none" x1="10" y2="72" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="75"/>
|
||||
<line end2="none" x1="10" y2="75" antialias="false" x2="2" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="75"/>
|
||||
<text x="52" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="EXT" color="#000000" y="70"/>
|
||||
<text x="-262" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="Bus EBX" color="#000000" y="68"/>
|
||||
<rect x="39" width="51" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="-90"/>
|
||||
<text x="45" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="100-240 Vac" color="#000000" y="-81"/>
|
||||
<text x="-3" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="RJ45" color="#000000" y="59"/>
|
||||
<text x="-1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="LAN" color="#000000" y="72"/>
|
||||
<text x="51" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="RJ12" color="#000000" y="59"/>
|
||||
<line end2="none" x1="-270" y2="80" antialias="false" x2="-230" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="80"/>
|
||||
<text x="-265" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="79"/>
|
||||
<text x="-242" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="-" color="#000000" y="79"/>
|
||||
<rect x="-210" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<text x="-197" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Digital Inputs" color="#000000" y="67"/>
|
||||
<rect x="-225" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-85" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<text x="-73" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Ch1" color="#000000" y="-91"/>
|
||||
<rect x="-270" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<rect x="-270" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:black" height="60" y="-30"/>
|
||||
<rect x="-255" width="150" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="15" y="-19"/>
|
||||
<text x="-254" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="X-DEVICES" color="#ffffff" y="-7"/>
|
||||
<rect x="-50" width="140" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:black" height="10" y="19"/>
|
||||
<text x="-46" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="GCE Electronics" color="#000000" y="17"/>
|
||||
<rect x="-85" width="90" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<dynamic_text x="-258" z="111" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{74c3ab20-d2b6-4920-b5fd-0d4ae599ab19}" y="-36">
|
||||
<text>ECO - RT2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="13" Valignment="AlignTop" x="-258" z="112" frame="false" uuid="{3870c052-19f5-40ac-8d88-1ef8881a0125}" text_width="-1" Halignment="AlignLeft">
|
||||
<dynamic_text x="-258" z="112" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{3870c052-19f5-40ac-8d88-1ef8881a0125}" y="13">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-256.3" length2="1.5" antialias="false" y2="-70" x1="-256.3" y1="-78.6955" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-261.6" length2="1.5" antialias="false" y2="-85.2171" x1="-256.3" y1="-77.9708" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-256.3" length2="1.5" antialias="false" y2="-85.2171" x1="-256.3" y1="-77.9708" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-251" length2="1.5" antialias="false" y2="-85.2171" x1="-256.3" y1="-77.9708" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-55" x="-274" text="RF 868 MHz"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-80" length2="1.5" antialias="false" y2="-69" x1="-80" y1="-79" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-70" length2="1.5" antialias="false" y2="-69" x1="-80" y1="-69" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-50" length2="1.5" antialias="false" y2="-69" x1="-50" y1="-79" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-60" length2="1.5" antialias="false" y2="-69" x1="-50" y1="-69" end2="none"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-61" length2="1.5" antialias="false" y2="-63" x1="-70" y1="-69" end2="none"/>
|
||||
<ellipse height="4" style="line-style:normal;line-weight:normal;filling:black;color:black" antialias="false" y="-71" width="3" x="-72"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:red;color:red" antialias="false" y="-106" diameter="6" x="48"/>
|
||||
<text color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" y="68" x="-79" text="Téléinfo"/>
|
||||
<rect height="10" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0" antialias="false" y="60" rx="0" width="40" x="-85"/>
|
||||
<arc angle="90" height="17.9602" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" antialias="true" y="-26.4503" width="18.2289" x="28.391"/>
|
||||
<arc angle="90" height="8.98011" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" antialias="true" y="-26.4503" width="18.2289" x="28.391"/>
|
||||
<arc angle="90" height="8.98011" style="line-style:normal;line-weight:normal;filling:none;color:black" start="270" antialias="true" y="-21.9602" width="9.11444" x="19.2766"/>
|
||||
<arc angle="90" height="8.98011" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" antialias="true" y="-12.9801" width="18.2289" x="14.7193"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="48.4428" length2="1.5" antialias="false" y2="-20.1642" x1="45.7084" y1="-22.8582" end2="none"/>
|
||||
<arc angle="90" height="0" style="line-style:normal;line-weight:normal;filling:none;color:black" start="180" antialias="true" y="-19.2662" width="9.11444" x="43.8856"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="32.9482" length2="1.5" antialias="false" y2="-30.9403" x1="37.5054" y1="-26.4503" end2="none"/>
|
||||
<text color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-8" x="38" text="Enocean"/>
|
||||
<terminal y="-100" x="-215" orientation="n"/>
|
||||
<terminal y="-100" x="-195" orientation="n"/>
|
||||
<terminal y="-100" x="-175" orientation="n"/>
|
||||
<terminal y="90" x="-55" orientation="s"/>
|
||||
<terminal y="90" x="-75" orientation="s"/>
|
||||
<terminal y="-100" x="-155" orientation="n"/>
|
||||
<terminal y="-110" x="-75" orientation="n"/>
|
||||
<terminal y="-110" x="-55" orientation="n"/>
|
||||
<terminal y="80" x="6" orientation="s"/>
|
||||
<terminal y="80" x="60" orientation="s"/>
|
||||
<terminal y="90" x="-120" orientation="s"/>
|
||||
<terminal y="90" x="-160" orientation="s"/>
|
||||
<terminal y="90" x="-180" orientation="s"/>
|
||||
<terminal y="90" x="-200" orientation="s"/>
|
||||
<terminal y="90" x="-220" orientation="s"/>
|
||||
<terminal y="90" x="-140" orientation="s"/>
|
||||
<terminal y="90" x="-260" orientation="s"/>
|
||||
<terminal y="90" x="-240" orientation="s"/>
|
||||
<terminal y="-98" x="-257" orientation="n"/>
|
||||
<terminal y="-110" x="-25" orientation="n"/>
|
||||
<terminal y="-110" x="-5" orientation="n"/>
|
||||
<terminal y="-110" x="51" orientation="n"/>
|
||||
<terminal y="-110" x="78" orientation="n"/>
|
||||
<line end2="none" x1="-256.3" y2="-70" antialias="false" x2="-256.3" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-78.6955"/>
|
||||
<line end2="none" x1="-256.3" y2="-85.2171" antialias="false" x2="-261.6" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-77.9708"/>
|
||||
<line end2="none" x1="-256.3" y2="-85.2171" antialias="false" x2="-256.3" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-77.9708"/>
|
||||
<line end2="none" x1="-256.3" y2="-85.2171" antialias="false" x2="-251" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-77.9708"/>
|
||||
<text x="-274" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="RF 868 MHz" color="#000000" y="-55"/>
|
||||
<line end2="none" x1="-80" y2="-69" antialias="false" x2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-79"/>
|
||||
<line end2="none" x1="-80" y2="-69" antialias="false" x2="-70" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-69"/>
|
||||
<line end2="none" x1="-50" y2="-69" antialias="false" x2="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-79"/>
|
||||
<line end2="none" x1="-50" y2="-69" antialias="false" x2="-60" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-69"/>
|
||||
<line end2="none" x1="-70" y2="-63" antialias="false" x2="-61" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-69"/>
|
||||
<ellipse x="-72" width="3" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" height="4" y="-71"/>
|
||||
<circle x="48" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:red;color:red" y="-106"/>
|
||||
<text x="-79" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Téléinfo" color="#000000" y="68"/>
|
||||
<rect x="-85" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="60"/>
|
||||
<arc x="28.391" start="90" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="17.9602" y="-26.4503"/>
|
||||
<arc x="28.391" start="0" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="-26.4503"/>
|
||||
<arc x="19.2766" start="270" angle="90" width="9.11444" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="-21.9602"/>
|
||||
<arc x="14.7193" start="0" angle="90" width="18.2289" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="8.98011" y="-12.9801"/>
|
||||
<line end2="none" x1="45.7084" y2="-20.1642" antialias="false" x2="48.4428" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-22.8582"/>
|
||||
<arc x="43.8856" start="180" angle="90" width="9.11444" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="0" y="-19.2662"/>
|
||||
<line end2="none" x1="37.5054" y2="-30.9403" antialias="false" x2="32.9482" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-26.4503"/>
|
||||
<text x="38" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="Enocean" color="#000000" y="-8"/>
|
||||
<terminal x="-260" orientation="s" y="90"/>
|
||||
<terminal x="-140" orientation="s" y="90"/>
|
||||
<terminal x="51" orientation="n" y="-110"/>
|
||||
<terminal x="78" orientation="n" y="-110"/>
|
||||
<terminal x="-215" orientation="n" y="-100"/>
|
||||
<terminal x="-195" orientation="n" y="-100"/>
|
||||
<terminal x="-175" orientation="n" y="-100"/>
|
||||
<terminal x="-55" orientation="n" y="-110"/>
|
||||
<terminal x="-75" orientation="s" y="90"/>
|
||||
<terminal x="60" orientation="s" y="80"/>
|
||||
<terminal x="-160" orientation="s" y="90"/>
|
||||
<terminal x="-180" orientation="s" y="90"/>
|
||||
<terminal x="-220" orientation="s" y="90"/>
|
||||
<terminal x="-240" orientation="s" y="90"/>
|
||||
<terminal x="6" orientation="s" y="80"/>
|
||||
<terminal x="-257" orientation="n" y="-98"/>
|
||||
<terminal x="-55" orientation="s" y="90"/>
|
||||
<terminal x="-75" orientation="n" y="-110"/>
|
||||
<terminal x="-120" orientation="s" y="90"/>
|
||||
<terminal x="-25" orientation="n" y="-110"/>
|
||||
<terminal x="-5" orientation="n" y="-110"/>
|
||||
<terminal x="-155" orientation="n" y="-100"/>
|
||||
<terminal x="-200" orientation="s" y="90"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -0,0 +1,103 @@
|
||||
<definition width="220" orientation="dyyy" version="0.61" height="150" hotspot_x="50" type="element" hotspot_y="5" link_type="terminal">
|
||||
<uuid uuid="{765ce455-bd77-409e-8c80-7b0f50053428}"/>
|
||||
<names>
|
||||
<name lang="fr">Nom du nouvel élément</name>
|
||||
</names>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="30" x2="25" x1="15" antialias="false"/>
|
||||
<text y="103" size="6" x="25" text="BAT. CHARGE : +13.8V---- 2.5A"/>
|
||||
<text y="16" size="4" x="145" text="-V"/>
|
||||
<text y="16" size="4" x="106" text="+V"/>
|
||||
<text y="16" size="4" x="86" text="+V"/>
|
||||
<text y="16" size="4" x="126" text="-V"/>
|
||||
<text y="72" size="4" x="-8" text="+"/>
|
||||
<text y="84" size="4" x="-28" text="+V ADJ"/>
|
||||
<text y="57" size="4" x="-28" text="DC OK"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="20" length1="1.5" y2="25" x2="10" x1="10" antialias="false"/>
|
||||
<text y="127" size="4" x="28" text="Terre"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="25" x2="15" x1="10" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="25" x2="30" x1="25" antialias="false"/>
|
||||
<text y="127" size="4" x="53" text="N"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="20" x2="30" x1="30" antialias="false"/>
|
||||
<text y="127" size="4" x="73" text="L"/>
|
||||
<text y="70" size="6" x="25" text="INPUT: 100-240VAC 2.0A"/>
|
||||
<text y="9" size="6" x="72" text="+"/>
|
||||
<text y="10" size="8" x="43" text="-"/>
|
||||
<text y="16" size="4" x="11" text="AC OK"/>
|
||||
<circle y="65" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="10" x="-25" antialias="false"/>
|
||||
<text y="80" size="4" x="125" text="50/60Hz"/>
|
||||
<text y="16" size="4" x="-30" text="Bat. Low"/>
|
||||
<text y="16" size="4" x="56" text="Bat."/>
|
||||
<text y="55" size="12" x="60" text="DRC-100A"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="0" length1="1.5" y2="10" x2="-20" x1="-20" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="0" length1="1.5" y2="10" x2="0" x1="0" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="0" length1="1.5" y2="10" x2="20" x1="20" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="0" length1="1.5" y2="10" x2="40" x1="40" antialias="false"/>
|
||||
<rect y="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="60" antialias="false"/>
|
||||
<rect y="10" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="80" antialias="false"/>
|
||||
<rect y="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="100" antialias="false"/>
|
||||
<rect y="10" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="100" antialias="false"/>
|
||||
<circle y="40" style="line-style:normal;line-weight:normal;filling:green;color:green" diameter="10" x="-25" antialias="false"/>
|
||||
<rect y="130" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="25" antialias="false"/>
|
||||
<rect y="130" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="45" antialias="false"/>
|
||||
<rect y="130" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="65" antialias="false"/>
|
||||
<rect y="120" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="25" antialias="false"/>
|
||||
<rect y="120" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="45" antialias="false"/>
|
||||
<rect y="120" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="65" antialias="false"/>
|
||||
<text y="90" size="6" x="25" text="DC OUTPUT : +13.8V---- 4.5A"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="130" length1="1.5" y2="10" x2="165" x1="165" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="10" x2="60" x1="70" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="10" x2="-45" x1="-40" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="130" x2="-45" x1="-45" antialias="false"/>
|
||||
<rect y="0" width="80" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="-40" antialias="false"/>
|
||||
<rect y="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="40" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="10" x2="100" x1="95" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="20" length1="1.5" y2="20" x2="90" x1="85" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="10" x2="40" x1="50" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="10" x2="80" x1="70" antialias="false"/>
|
||||
<rect y="10" width="40" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="-40" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="30" x2="-15" x1="-25" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="20" length1="1.5" y2="25" x2="-30" x1="-30" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="25" x2="-25" x1="-30" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="25" x2="-10" x1="-15" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="25" length1="1.5" y2="20" x2="-10" x1="-10" antialias="false"/>
|
||||
<rect y="10" width="40" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="0" antialias="false"/>
|
||||
<rect y="10" width="40" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="40" antialias="false"/>
|
||||
<rect y="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="80" antialias="false"/>
|
||||
<rect y="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="120" antialias="false"/>
|
||||
<rect y="0" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="140" antialias="false"/>
|
||||
<rect y="10" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="120" antialias="false"/>
|
||||
<rect y="10" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" x="140" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="130" length1="1.5" y2="130" x2="25" x1="-45" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="130" length1="1.5" y2="130" x2="85" x1="165" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="10" length1="1.5" y2="10" x2="160" x1="165" antialias="false"/>
|
||||
<arc y="60" angle="178.938" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" x="-30" start="0" antialias="true"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="70" length1="1.5" y2="65" x2="-10" x1="-10" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="70" length1="1.5" y2="66" x2="-12" x1="-10" antialias="false"/>
|
||||
<rect y="90" width="35" style="line-style:normal;line-weight:normal;filling:red;color:red" height="25" x="-30" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:white;color:white" end1="none" length2="1.5" y1="67" length1="1.5" y2="73" x2="-23" x1="-17" antialias="false"/>
|
||||
<rect y="100" width="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" x="-15" antialias="false"/>
|
||||
<text y="92" size="12" color="white" x="-25" text="MW"/>
|
||||
<rect y="107" width="31" style="line-style:normal;line-weight:normal;filling:white;color:white" height="7" x="-28" antialias="false"/>
|
||||
<text y="112" size="4" x="-26" text="MEAN WELL"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="118" length1="1.5" y2="118" x2="35" x1="34" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="116" length1="1.5" y2="116" x2="37" x1="32" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="114" length1="1.5" y2="114" x2="39" x1="30" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="114" length1="1.5" y2="108" x2="35" x1="35" antialias="false"/>
|
||||
<line end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length2="1.5" y1="60" length1="1.5" y2="60" x2="20" x1="150" antialias="false"/>
|
||||
<terminal y="0" orientation="n" x="130"/>
|
||||
<terminal y="0" orientation="n" x="70"/>
|
||||
<terminal y="0" orientation="n" x="150"/>
|
||||
<terminal y="140" orientation="s" x="55"/>
|
||||
<terminal y="0" orientation="n" x="10"/>
|
||||
<terminal y="0" orientation="n" x="110"/>
|
||||
<terminal y="0" orientation="n" x="90"/>
|
||||
<terminal y="0" orientation="n" x="50"/>
|
||||
<terminal y="0" orientation="n" x="30"/>
|
||||
<terminal y="140" orientation="s" x="75"/>
|
||||
<terminal y="140" orientation="s" x="35"/>
|
||||
<terminal y="0" orientation="n" x="-10"/>
|
||||
<terminal y="0" orientation="n" x="-30"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,70 +1,84 @@
|
||||
<definition width="210" height="200" type="element" link_type="simple" hotspot_x="104" hotspot_y="106" orientation="dyyy" version="0.5">
|
||||
<uuid uuid="{f26d7001-0b94-4337-ac08-cee1ca33de25}"/>
|
||||
<definition type="element" width="210" hotspot_y="106" link_type="simple" hotspot_x="104" height="200" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{cad75802-b3a6-445d-a3be-764247d24165}"/>
|
||||
<names>
|
||||
<name lang="cs">12V-Power-Suply</name>
|
||||
<name lang="fr">Alimentation 12V</name>
|
||||
<name lang="nl">12V-Power-Suply</name>
|
||||
<name lang="it">12V-Power-Suply</name>
|
||||
<name lang="el">12V-Power-Suply</name>
|
||||
<name lang="pl">12V-Power-Suply</name>
|
||||
<name lang="be">12V-Power-Suply</name>
|
||||
<name lang="el">12V-Power-Suply</name>
|
||||
<name lang="en">12V-Power-Suply</name>
|
||||
<name lang="fr">12V-Power-Suply</name>
|
||||
<name lang="es">12V-Power-Suply</name>
|
||||
<name lang="nl">12V-Power-Suply</name>
|
||||
<name lang="cs">12V-Power-Suply</name>
|
||||
</names>
|
||||
<informations>Author: The QElectroTech team
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">GCE Electronics</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text x="47" y="10" text="50/60Hz" size="6"/>
|
||||
<text x="-50" y="23" text="OUTPUT: " size="7"/>
|
||||
<text x="-61" y="-72" text="L" size="6"/>
|
||||
<text x="60" y="2" text="1.8A" size="7"/>
|
||||
<text x="61" y="23" text="4.5A" size="7"/>
|
||||
<text x="19" y="23" text="12V" size="7"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" width="20" y="-100" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" width="40" y="-90" height="10" antialias="false"/>
|
||||
<text x="25" y="-72" text="V+" size="6"/>
|
||||
<text x="-81.69" y="-72" text="N" size="6"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-94" width="185" y="-25" height="70" antialias="false"/>
|
||||
<text x="67" y="-71" text="V-" size="6"/>
|
||||
<text x="79" y="-82" text="6" size="6"/>
|
||||
<text x="59" y="-82" text="5" size="6"/>
|
||||
<text x="39" y="-82" text="4" size="6"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-99" width="200" y="-90" height="180" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="71" width="20" y="-100" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-69" width="20" y="-100" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-89" width="20" y="-100" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-69" width="20" y="-90" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="51" width="20" y="-100" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-89" width="20" y="-90" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="51" width="20" y="-90" height="10" antialias="false"/>
|
||||
<text x="-81" y="-82" text="1" size="6"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="51" width="40" y="-90" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="71" width="20" y="-90" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="31" width="20" y="-100" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" width="20" y="-90" height="10" antialias="false"/>
|
||||
<text x="-61" y="-82" text="2" size="6"/>
|
||||
<text x="19" y="-82" text="3" size="6"/>
|
||||
<text color="white" x="-73" y="3" text="X Devices" size="9"/>
|
||||
<text x="-52" y="2" text="INPUT: 100-240VAC" size="7"/>
|
||||
<input x="-57" y="-15" text="MODEL: DR-60-12" tagg="label" rotate="true" size="9"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" width="80" y="-80" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-89" width="20" y="-80" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-69" width="20" y="-80" height="10" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" width="40" y="-80" height="10" antialias="false"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" y1="18" y2="18" x1="41" x2="56" end1="none" antialias="false" length1="1.5" end2="none" length2="1.5"/>
|
||||
<line style="line-style:dotted;line-weight:normal;filling:none;color:black" y1="22" y2="22" x1="41" x2="56" end1="none" antialias="false" length1="1.5" end2="none" length2="1.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="65" diameter="20" y="66" antialias="false"/>
|
||||
<text x="69" y="64" text="Adj" size="6"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" y1="71" y2="81" x1="75" x2="75" end1="none" antialias="false" length1="1.5" end2="none" length2="1.5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" y1="76" y2="76" x1="70" x2="80" end1="none" antialias="false" length1="1.5" end2="none" length2="1.5"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:red;color:none" x="-89" width="30" y="-20" height="25" antialias="false"/>
|
||||
<text color="white" x="-86" y="-8" text="MW" size="9"/>
|
||||
<text x="-87" y="8" text="Mean Well" size="4"/>
|
||||
<terminal x="41" y="-100" orientation="n"/>
|
||||
<terminal x="61" y="-100" orientation="n"/>
|
||||
<terminal x="81" y="-100" orientation="n"/>
|
||||
<terminal x="21" y="-100" orientation="n"/>
|
||||
<terminal x="-79" y="-100" orientation="n"/>
|
||||
<terminal x="-59" y="-100" orientation="n"/>
|
||||
<rect x="-99" width="200" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="180" y="-90"/>
|
||||
<text x="47" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="50/60Hz" color="#000000" y="10"/>
|
||||
<text x="-50" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="OUTPUT: " color="#000000" y="23"/>
|
||||
<text x="-61" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="L" color="#000000" y="-72"/>
|
||||
<text x="60" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="1.8A" color="#000000" y="2"/>
|
||||
<text x="61" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="4.5A" color="#000000" y="23"/>
|
||||
<text x="19" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="12V" color="#000000" y="23"/>
|
||||
<rect x="11" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="11" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="25" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="V+" color="#000000" y="-72"/>
|
||||
<text x="-81.69" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="N" color="#000000" y="-72"/>
|
||||
<rect x="-94" width="185" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="70" y="-25"/>
|
||||
<text x="67" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="V-" color="#000000" y="-71"/>
|
||||
<text x="79" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="-82"/>
|
||||
<text x="59" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="-82"/>
|
||||
<text x="39" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="-82"/>
|
||||
<rect x="71" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-69" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-89" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-69" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="51" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="-89" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="51" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="-81" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="-82"/>
|
||||
<rect x="51" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="71" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<rect x="31" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-100"/>
|
||||
<rect x="11" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-90"/>
|
||||
<text x="-61" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="-82"/>
|
||||
<text x="19" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="-82"/>
|
||||
<text x="-73" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="X Devices" color="#ffffff" y="3"/>
|
||||
<text x="-52" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="INPUT: 100-240VAC" color="#000000" y="2"/>
|
||||
<dynamic_text x="-57" z="33" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{769ea9d7-b236-41fc-992d-8b2d418c42b0}" y="-26">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect x="11" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-89" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="-69" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<rect x="11" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-80"/>
|
||||
<line end2="none" x1="41" y2="18" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="18"/>
|
||||
<line end2="none" x1="41" y2="22" antialias="false" x2="56" style="line-style:dotted;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="22"/>
|
||||
<circle x="65" diameter="20" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="66"/>
|
||||
<text x="69" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Adj" color="#000000" y="64"/>
|
||||
<line end2="none" x1="75" y2="81" antialias="false" x2="75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="71"/>
|
||||
<line end2="none" x1="70" y2="76" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="76"/>
|
||||
<rect x="-89" width="30" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:red;color:none" height="25" y="-20"/>
|
||||
<text x="-86" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="MW" color="#ffffff" y="-8"/>
|
||||
<text x="-87" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Mean Well" color="#000000" y="8"/>
|
||||
<terminal x="41" orientation="n" y="-100"/>
|
||||
<terminal x="61" orientation="n" y="-100"/>
|
||||
<terminal x="81" orientation="n" y="-100"/>
|
||||
<terminal x="-59" orientation="n" y="-100"/>
|
||||
<terminal x="-79" orientation="n" y="-100"/>
|
||||
<terminal x="21" orientation="n" y="-100"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
<definition type="element" width="110" hotspot_y="66" link_type="simple" hotspot_x="50" height="140" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{097256a5-b109-432f-924a-9e6136615d2b}"/>
|
||||
<names>
|
||||
<name lang="fr">Téléinfo usb</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">GCE Electronics</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="35" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="90" text="GCE Electronics" color="#000000" y="-30"/>
|
||||
<circle x="12" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:yellow;color:yellow" y="-58"/>
|
||||
<circle x="32" diameter="6" antialias="false" style="line-style:normal;line-weight:normal;filling:green;color:green" y="-58"/>
|
||||
<text x="28" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="PWR" color="#000000" y="-44"/>
|
||||
<text x="-10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="TIC" color="#000000" y="-44"/>
|
||||
<text x="11" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="DATA" color="#000000" y="-44"/>
|
||||
<text x="-29" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="TIC" color="#000000" y="-44"/>
|
||||
<text x="-35" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="90" text="Télé-information" color="#000000" y="-35"/>
|
||||
<line end2="none" x1="-15" y2="-50" antialias="false" x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="5" y2="-50" antialias="false" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="25" y2="-50" antialias="false" x2="25" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="45" y2="-50" antialias="false" x2="45" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<rect x="5" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-50"/>
|
||||
<rect x="25" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-50"/>
|
||||
<line end2="none" x1="56" y2="-50" antialias="false" x2="56" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="70"/>
|
||||
<line end2="none" x1="-31" y2="-50" antialias="false" x2="-46" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="-46" y2="70" antialias="false" x2="-46" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<rect x="-35" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-60"/>
|
||||
<line end2="none" x1="55" y2="-50" antialias="false" x2="41" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-50"/>
|
||||
<line end2="none" x1="-46" y2="70" antialias="false" x2="55" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="70"/>
|
||||
<rect x="-35" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-50"/>
|
||||
<rect x="-15" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="-50"/>
|
||||
<rect x="15" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="0" y="-50"/>
|
||||
<dynamic_text x="-15" z="24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{d7adee68-3206-47b5-b942-63d3e4f0f24d}" y="49">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect x="-15" width="35" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="50"/>
|
||||
<rect x="48" width="4" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="101" y="-47"/>
|
||||
<rect x="6" width="38" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="4" y="-36"/>
|
||||
<terminal x="-5" orientation="n" y="-60"/>
|
||||
<terminal x="-25" orientation="n" y="-60"/>
|
||||
</description>
|
||||
</definition>
|
||||
122
elements/10_electric/20_manufacturers_articles/gce/x-010v.elmt
Normal file
122
elements/10_electric/20_manufacturers_articles/gce/x-010v.elmt
Normal file
@@ -0,0 +1,122 @@
|
||||
<definition type="element" width="210" hotspot_y="4" link_type="terminal" hotspot_x="82" height="150" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{5b3911b4-7dc7-4e12-bb69-28794c243cae}"/>
|
||||
<names>
|
||||
<name lang="fr">X-010V</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">GCE Electronics</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Extension 0-10V</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="105" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="127"/>
|
||||
<text x="17" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="127"/>
|
||||
<text x="-16" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="127"/>
|
||||
<text x="38" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="127"/>
|
||||
<text x="77" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="127"/>
|
||||
<text x="-41" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" text="-" color="#000000" y="129"/>
|
||||
<text x="58" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="127"/>
|
||||
<text x="-63" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="128"/>
|
||||
<rect x="60" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="60"/>
|
||||
<text x="-61" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="BUS EBX" color="#000000" y="117"/>
|
||||
<text x="30" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Digital intput" color="#000000" y="117"/>
|
||||
<text x="65" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Sel" color="#ffffff" y="66"/>
|
||||
<circle x="45" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="60"/>
|
||||
<text x="24" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="CH4" color="#000000" y="16"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<text x="88" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="+" color="#000000" y="16"/>
|
||||
<text x="-35" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="CH1" color="#000000" y="16"/>
|
||||
<text x="82" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="12V DC Power" color="#000000" y="28"/>
|
||||
<text x="108" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" text="-" color="#000000" y="18"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="CH3" color="#000000" y="16"/>
|
||||
<text x="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="0-10V Output" color="#000000" y="28"/>
|
||||
<circle x="-10" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="60"/>
|
||||
<text x="-15" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="CH2" color="#000000" y="16"/>
|
||||
<text x="55" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<text x="-70" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="X-010V" color="#000000" y="40"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<text x="-64" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="16"/>
|
||||
<line end2="none" x1="-20" y2="10" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="0" y2="10" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="20" y2="10" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="40" y2="10" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<rect x="80" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="-40" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="0" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="80" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<rect x="100" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="100" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="10"/>
|
||||
<circle x="-40" diameter="10" antialias="false" style="line-style:normal;line-weight:normal;filling:blue;color:blue" y="60"/>
|
||||
<rect x="-46" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="75"/>
|
||||
<rect x="-15" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="75"/>
|
||||
<text x="-41" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Pwr" color="#ffffff" y="81"/>
|
||||
<text x="-10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="Link" color="#ffffff" y="81"/>
|
||||
<rect x="-15" width="55" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="5" y="46"/>
|
||||
<rect x="35" width="45" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:gray;color:gray" height="10" y="75"/>
|
||||
<text x="50" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="RESET" color="#000000" y="81"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="100" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="130"/>
|
||||
<rect x="-70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="-50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="-20" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="30" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="70" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="100" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="120"/>
|
||||
<rect x="-78" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:green" height="100" y="20"/>
|
||||
<text x="-15" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="GCE Electronics" color="#000000" y="41"/>
|
||||
<line end2="none" x1="-30" y2="130" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<line end2="none" x1="0" y2="130" antialias="false" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<line end2="none" x1="90" y2="130" antialias="false" x2="100" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<line end2="none" x1="120" y2="130" antialias="false" x2="125" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<line end2="none" x1="125" y2="10" antialias="false" x2="125" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<line end2="none" x1="125" y2="10" antialias="false" x2="110" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="70" y2="10" antialias="false" x2="60" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-40" y2="10" antialias="false" x2="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-70" y2="10" antialias="false" x2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-80" y2="130" antialias="false" x2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="-80" y2="130" antialias="false" x2="-70" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="130"/>
|
||||
<dynamic_text x="-65" z="78" font="Sans Serif,6,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{274caf95-218e-4db9-91a5-b9c5ae243e1c}" y="91">
|
||||
<text>ID ...............</text>
|
||||
</dynamic_text>
|
||||
<rect x="-40" width="80" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<rect x="50" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="10" y="0"/>
|
||||
<line end2="none" x1="95" y2="10" antialias="false" x2="100" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="85" y2="20" antialias="false" x2="90" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="20"/>
|
||||
<line end2="none" x1="50" y2="10" antialias="false" x2="40" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<line end2="none" x1="70" y2="10" antialias="false" x2="80" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<terminal x="110" orientation="n" y="0"/>
|
||||
<terminal x="10" orientation="n" y="0"/>
|
||||
<terminal x="90" orientation="n" y="0"/>
|
||||
<terminal x="60" orientation="n" y="0"/>
|
||||
<terminal x="-10" orientation="n" y="0"/>
|
||||
<terminal x="-60" orientation="n" y="0"/>
|
||||
<terminal x="-30" orientation="n" y="0"/>
|
||||
<terminal x="30" orientation="n" y="0"/>
|
||||
<terminal x="110" orientation="s" y="140"/>
|
||||
<terminal x="-40" orientation="s" y="140"/>
|
||||
<terminal x="-10" orientation="s" y="140"/>
|
||||
<terminal x="-60" orientation="s" y="140"/>
|
||||
<terminal x="60" orientation="s" y="140"/>
|
||||
<terminal x="80" orientation="s" y="140"/>
|
||||
<terminal x="40" orientation="s" y="140"/>
|
||||
<terminal x="20" orientation="s" y="140"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,256 +0,0 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="511" height="1680" width="1670" type="element" hotspot_y="596" orientation="dyyy">
|
||||
<uuid uuid="{b6ebabd2-1a40-4520-94a1-0bed8c77b060}"/>
|
||||
<names>
|
||||
<name lang="fr">taslider7501250</name>
|
||||
<name lang="en">taslider7501250</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>
|
||||
Author: DXF converter
|
||||
License:see http://qelectrotech.org/wiki/doc/elements_license
|
||||
Converter version:V3.0 DB
|
||||

|
||||
</informations>
|
||||
<description>
|
||||
<dynamic_text uuid="{89194c74-4e4c-461e-9556-8f9f275d3a9a}" frame="false" text_from="ElementInfo" text_width="-1" x="-89" font="Sans Serif,2,-1,5,25,0,0,0,0,0" z="1" y="2" Halignment="AlignLeft" Valignment="AlignTop" rotation="90">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<arc start="-265" antialias="false" height="1132" width="1132" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-495.6" y="-64.29" angle="5"/>
|
||||
<arc start="-267" antialias="false" height="1132" width="1132" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-495.6" y="-64.29" angle="1"/>
|
||||
<arc start="84" antialias="false" height="1132" width="1132" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-495.6" y="-64.29" angle="0"/>
|
||||
<line length2="1.5" x2="25.96" antialias="false" x1="26.26" y2="-59.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-59.76" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="176.938" antialias="false" height="1202" width="1202" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-45.03" y="-592.74" angle="1"/>
|
||||
<arc start="-183" antialias="false" height="1200" width="1200" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-44.03" y="-590.74" angle="1"/>
|
||||
<line length2="1.5" x2="-41.67" antialias="false" x1="-41.65" y2="-26.37" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-26.68" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="85" antialias="false" height="1158.36" width="1158.36" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-508.78" y="-77.47" angle="1"/>
|
||||
<polygon y7="9.29" closed="false" x3="142.9" y3="9.35" x4="142.9" x8="142.9" y2="9.37" x5="142.9" style="line-style:normal;line-weight:thin;filling:none;color:blue" x9="142.9" x7="142.9" y6="9.31" x6="142.9" x2="142.9" x1="142.9" y9="9.26" y5="9.32" antialias="false" y4="9.34" y1="9.38" y8="9.27"/>
|
||||
<line length2="1.5" x2="121.37" antialias="false" x1="123.26" y2="-75.22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-61.82" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="-270" antialias="false" height="3" width="3" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-49.12" y="-3.44" angle="68"/>
|
||||
<arc start="-158" antialias="false" height="3" width="3" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-49.12" y="11.86" angle="68"/>
|
||||
<arc start="-202" antialias="false" height="43.53" width="43.53" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-50.62" y="-16.05" angle="44"/>
|
||||
<line length2="1.5" x2="-61.33" antialias="false" x1="-63.64" y2="15.23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.23" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-63.64" antialias="false" x1="-61.33" y2="-3.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.82" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="-270" antialias="false" height="4.32" width="4.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-65.8" y="-3.82" angle="90"/>
|
||||
<arc start="-180" antialias="false" height="4.32" width="4.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-65.8" y="10.92" angle="90"/>
|
||||
<line length2="1.5" x2="-49.1" antialias="false" x1="-53.96" y2="13.71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.71" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-49.1" y2="-2.29" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.29" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-61.25" antialias="false" x1="-61.33" y2="15.36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.23" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-61.33" antialias="false" x1="-61.25" y2="-3.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.95" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="88" antialias="false" height="1125.3" width="1125.3" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-488.24" y="-77.17" angle="4"/>
|
||||
<arc start="86" antialias="false" height="1125.3" width="1125.3" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-488.24" y="-77.17" angle="2"/>
|
||||
<line length2="1.5" x2="52.53" antialias="false" x1="54.26" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-76.8" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-38.7" y2="-4.79" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.97" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-38.68" antialias="false" x1="-43.7" y2="16.38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.21" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="176.16" closed="false" x3="100.23" y3="176.17" x4="100.29" x8="100.54" y2="176.17" x5="100.35" style="line-style:normal;line-weight:thin;filling:none;color:blue" x9="100.61" x7="100.48" y6="176.16" x6="100.42" x2="100.16" x1="100.1" y9="176.15" y5="176.16" antialias="false" y4="176.16" y1="176.17" y8="176.15"/>
|
||||
<polygon y7="176.17" closed="false" x3="60.31" y3="176.16" x4="60.38" x8="60.63" y2="176.15" x5="60.44" style="line-style:normal;line-weight:thin;filling:none;color:blue" x9="60.69" x7="60.57" y6="176.16" x6="60.5" x2="60.25" x1="60.19" y9="176.17" y5="176.16" antialias="false" y4="176.16" y1="176.15" y8="176.17"/>
|
||||
<line length2="1.5" x2="114.9" antialias="false" x1="114.9" y2="171.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="183.71" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="45.9" antialias="false" x1="45.9" y2="183.71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="171.5" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-46.1" antialias="false" x1="-43.03" y2="-4.79" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.9" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.03" antialias="false" x1="-46.1" y2="16.32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.21" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-36.22" x11="20.92" y7="-34.96" x14="21.18" x13="21.15" y13="-37.2" closed="false" x3="17.59" x10="20.69" y3="-33.97" y11="-36.64" x4="18.12" x8="20" y2="-33.91" x5="18.64" x12="21.08" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="20.37" x7="19.58" y6="-34.63" x6="19.13" x2="17.22" x1="17.04" y9="-35.76" y5="-34.35" antialias="false" y4="-34.13" y1="-33.88" y12="-37" y14="-37.3" y8="-35.33"/>
|
||||
<polygon closed="false" x2="17.04" antialias="false" x1="-24.54" y2="-33.88" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-28.78"/>
|
||||
<polygon closed="false" x2="24.39" antialias="false" x1="-24.42" y2="-47.18" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-41.85"/>
|
||||
<polygon y4="-45.53" closed="false" x3="22.79" x4="23.86" x2="21.72" antialias="false" x1="21.18" y2="-38.95" y3="-42.24" y5="-47.18" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-37.3" x5="24.39"/>
|
||||
<line length2="1.5" x2="-24.42" antialias="false" x1="-25.36" y2="-41.85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-51.58" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-52.4" x11="-23.5" y7="-54.53" closed="false" x3="20.19" x10="-19.77" y3="-56.67" y11="-51.86" x4="14.43" x8="-8.52" y2="-56.93" x5="8.67" x12="-25.36" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-14.15" x7="-2.83" y6="-55.14" x6="2.9" x2="24.04" x1="25.96" y9="-53.16" y5="-55.71" antialias="false" y4="-56.21" y1="-57.06" y12="-51.58" y8="-53.87"/>
|
||||
<polygon y10="-49.02" x11="24.68" y7="-51.81" x13="24.39" y13="-47.18" closed="false" x3="25.94" x10="24.93" y3="-55.83" y11="-48.1" x4="25.87" x8="25.36" y2="-56.65" x5="25.78" x12="24.49" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="25.16" x7="25.53" y6="-52.73" x6="25.67" x2="25.95" x1="25.96" y9="-49.95" y5="-53.66" antialias="false" y4="-54.7" y1="-57.06" y12="-47.49" y8="-50.88"/>
|
||||
<polygon y10="-41.63" x11="-26.01" y7="-41.48" x13="-24.42" y13="-41.85" closed="false" x3="-34.24" x10="-27.53" y3="-41.53" y11="-41.73" x4="-33.79" x8="-30.36" y2="-41.55" x5="-32.78" x12="-24.69" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-28.26" x7="-31.63" y6="-41.48" x6="-32.22" x2="-34.65" x1="-35.64" y9="-41.59" y5="-41.48" antialias="false" y4="-41.51" y1="-41.66" y12="-41.83" y8="-41.51"/>
|
||||
<polygon x21="-24.54" y8="-27.55" x18="-26.49" y14="-28.09" x8="-34.57" y11="-27.79" y17="-28.42" y7="-27.48" x5="-35.97" y4="-27.33" y3="-27.29" y2="-27.27" x15="-29.27" x16="-28.36" y13="-27.99" x9="-33.95" x17="-27.44" x6="-35.57" y21="-28.78" antialias="false" x19="-25.52" y16="-28.31" y10="-27.71" x1="-36.89" x20="-24.87" y20="-28.74" y5="-27.38" y9="-27.62" closed="false" x7="-35.11" y15="-28.2" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="-30.15" y12="-27.89" x10="-33.27" y1="-27.26" x2="-36.81" x4="-36.32" x12="-31.8" y6="-27.42" x3="-36.64" x11="-32.56" y19="-28.66" y18="-28.54" x13="-30.99"/>
|
||||
<polygon y8="-51.25" x18="-31.62" y14="-51.27" x8="-28.45" y11="-51.22" y17="-51.4" y7="-51.28" x5="-26.97" y4="-51.44" y3="-51.5" y2="-51.56" x15="-31.06" x16="-31.31" y13="-51.24" x9="-28.91" x17="-31.52" x6="-27.48" antialias="false" x19="-31.68" y16="-51.35" y10="-51.22" x1="-25.36" y5="-51.38" y9="-51.23" closed="false" x7="-27.97" y15="-51.31" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="-30.78" y12="-51.23" x10="-29.34" y1="-51.58" x2="-25.54" x4="-26.44" x12="-30.12" y6="-51.33" x3="-25.91" x11="-29.75" y19="-51.47" y18="-51.45" x13="-30.47"/>
|
||||
<polygon y10="-53.31" x11="-36.23" y7="-52.74" x14="-36.93" x13="-36.8" y13="-53.72" y15="-53.8" closed="false" x3="-32.35" x10="-35.87" y3="-51.76" y11="-53.46" x4="-32.97" x8="-35.05" y2="-51.56" x5="-33.55" x12="-36.54" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-35.47" x7="-34.59" y6="-52.52" x6="-34.09" x2="-31.9" x1="-31.68" y9="-53.13" y5="-52.29" antialias="false" y4="-52.03" y1="-51.47" y12="-53.6" y14="-53.77" y8="-52.94" x15="-36.99"/>
|
||||
<line length2="1.5" x2="-36.99" antialias="false" x1="-27.8757" y2="-53.8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-55.7883" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-60.8" x11="25.96" x17="25.96" y7="-61.86" x14="25.96" y16="-57.32" x13="25.96" y13="-59.22" y15="-57.85" closed="false" x3="25.96" x10="25.96" y3="-62.54" y11="-60.33" x4="25.96" x8="25.96" y2="-62.54" x5="25.96" x12="25.96" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="25.96" x16="25.96" x7="25.96" y6="-62.12" x6="25.96" x2="25.96" x1="25.96" y9="-61.21" y5="-62.33" antialias="false" y4="-62.47" y1="-62.54" y12="-59.8" y17="-57.06" y14="-58.56" y8="-61.56" x15="25.96"/>
|
||||
<polygon y8="-43.76" x18="-36.12" y14="-42.76" x8="-40.85" y11="-43.34" y17="-42" y7="-43.86" x5="-41.46" y4="-44.06" y3="-44.09" y2="-44.09" x15="-37.86" x16="-37.25" y13="-42.97" x9="-40.56" x17="-36.59" x6="-41.3" antialias="false" x19="-35.88" y16="-42.27" y10="-43.5" x1="-41.66" y5="-44.01" y9="-43.64" closed="false" x7="-41.09" y15="-42.52" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="-38.43" y12="-43.17" x10="-40.22" y1="-44.09" x2="-41.65" x4="-41.57" x12="-39.42" y6="-43.94" x3="-41.64" x11="-39.85" y19="-41.71" y18="-41.81" x13="-38.95"/>
|
||||
<polygon y8="-26.8" x18="-42.97" y14="-26.57" x8="-40.66" y11="-26.67" y17="-26.52" y7="-26.86" x5="-39.05" y4="-27.08" y3="-27.17" y2="-27.23" x15="-42.72" x16="-42.86" y13="-26.6" x9="-41.05" x17="-42.94" x6="-39.67" antialias="false" x19="-42.96" y16="-26.53" y10="-26.71" x1="-36.89" x20="-42.96" y20="-26.52" y5="-27" y9="-26.75" closed="false" x7="-40.2" y15="-26.55" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="-42.52" y12="-26.63" x10="-41.41" y1="-27.26" x2="-37.15" x4="-38.39" x12="-42.01" y6="-26.92" x3="-37.67" x11="-41.73" y19="-26.52" y18="-26.52" x13="-42.28"/>
|
||||
<line length2="1.5" x2="-41.66" antialias="false" x1="-36.9321" y2="-44.09" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-53.7721" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y8="-6.33" x18="74.91" y14="-1.71" x8="14.97" y11="-3.95" y17="0.54" y7="-7.14" x5="-4.94" y4="-9.58" y3="-10.4" y2="-10.94" x15="58.66" x16="64.75" y13="-2.45" x9="21.61" x17="70.85" x6="1.69" antialias="false" x19="76.94" y16="-0.21" y10="-4.72" x1="-24.79" y5="-8.77" y9="-5.51" closed="false" x7="8.33" y15="-0.96" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="52.58" y12="-3.2" x10="28.07" y1="-11.21" x2="-22.58" x4="-11.56" x12="40.41" y6="-7.96" x3="-18.18" x11="34.34" y19="1.28" y18="1.03" x13="46.49"/>
|
||||
<polygon closed="false" x2="143" antialias="false" x1="83.79" y2="10" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="2.12"/>
|
||||
<polygon closed="false" x2="83.75" antialias="false" x1="76.94" y2="-48.46" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-48.57"/>
|
||||
<polygon y4="1.42" closed="false" x3="80.36" x4="78.08" x2="82.65" antialias="false" x1="83.79" y2="1.98" y3="1.7" y5="1.28" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="2.12" x5="76.94"/>
|
||||
<polygon closed="false" x3="115.02" x2="99.385" antialias="false" x1="83.75" y2="-47.745" y3="-47.03" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-48.46"/>
|
||||
<line length2="1.5" x2="24.68" antialias="false" x1="24.71" y2="-47.09" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-47.2" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="76.94" antialias="false" x1="24.71" y2="-48.57" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-47.2"/>
|
||||
<polygon y8="-46.96" x18="125" y14="-47.06" x8="119.62" y11="-46.99" y17="-47.16" y7="-46.96" x5="117.38" y4="-46.99" y3="-47.01" y2="-47.02" x15="123.54" x16="124.04" y13="-47.03" x9="120.34" x17="124.53" x6="118.14" antialias="false" x19="125.27" y16="-47.12" y10="-46.98" x1="115.02" x20="125.41" y20="-47.26" y5="-46.97" y9="-46.97" closed="false" x7="118.89" y15="-47.09" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="123.05" y12="-47.01" x10="120.99" y1="-47.03" x2="115.28" x4="116.6" x12="122.08" y6="-46.96" x3="115.81" x11="121.56" y19="-47.25" y18="-47.21" x13="122.57"/>
|
||||
<polygon closed="false" x2="77.15" antialias="false" x1="83.87" y2="-58.32" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-58.21"/>
|
||||
<line length2="1.5" x2="26.26" antialias="false" x1="26.26" y2="-57.08" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-57.06" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="26.26" antialias="false" x1="77.15" y2="-57.08" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-58.32"/>
|
||||
<polygon closed="false" x2="83.87" antialias="true" x1="115.52" y2="-58.21" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-56.78"/>
|
||||
<polygon y10="-56.7" x11="117.13" y7="-56.75" x14="115.7" x13="116.07" y13="-56.74" y15="-56.78" closed="false" x3="120.59" x10="117.65" y3="-56.95" y11="-56.71" x4="120.26" x8="118.62" y2="-57" x5="119.9" x12="116.6" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="118.15" x7="119.08" y6="-56.79" x6="119.5" x2="120.77" x1="120.87" y9="-56.71" y5="-56.84" antialias="false" y4="-56.89" y1="-57.03" y12="-56.72" y14="-56.77" y8="-56.73" x15="115.52"/>
|
||||
<line length2="1.5" x2="125.41" antialias="false" x1="120.87" y2="-47.26" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-57.03" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon x21="-37.89" y8="-17.91" x18="-36.75" y14="-18.45" x8="-30.13" y11="-18.2" x24="-38.29" y17="-18.66" y7="-17.8" x5="-27.55" y4="-17.48" y3="-17.37" y24="-18.91" y2="-17.29" x15="-35.16" x16="-35.73" y13="-18.37" x9="-30.94" x17="-36.26" x6="-28.43" y21="-18.86" antialias="false" x19="-37.19" y16="-18.6" y10="-18.1" x1="-24.76" x20="-37.59" y20="-18.82" y5="-17.59" y9="-18.01" closed="false" x7="-29.29" x22="-38.12" y15="-18.53" style="line-style:normal;line-weight:thin;filling:none;color:red" y23="-18.9" x14="-34.55" y12="-18.28" x23="-38.23" x10="-31.72" y1="-17.25" y22="-18.89" x2="-25.09" x4="-26.66" x12="-33.2" y6="-17.7" x3="-25.73" x11="-32.48" y19="-18.77" y18="-18.72" x13="-33.89"/>
|
||||
<line length2="1.5" x2="24.6" antialias="false" x1="24.28" y2="-46.87" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-46.84" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-63.33" x11="37.43" y7="-63.26" closed="false" x3="38.69" x10="37.44" y3="-62.92" y11="-63.33" x4="38.37" x8="37.55" y2="-62.83" x5="38.1" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="37.45" x7="37.68" y6="-63.2" x6="37.86" x2="38.95" x1="39.07" y9="-63.33" y5="-63.12" antialias="false" y4="-63.03" y1="-62.78" y8="-63.3"/>
|
||||
<polygon closed="false" x2="39.07" antialias="false" x1="58.35" y2="-62.78" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-62.82"/>
|
||||
<polygon y4="-62.95" closed="false" x3="70.87" x4="66.7" x2="73.65" x7="58.35" antialias="false" y7="-62.82" x1="75.04" y2="-62.94" y3="-62.96" y5="-62.91" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-62.94" y6="-62.85" x6="59.74" x5="62.52"/>
|
||||
<polygon y8="-63.35" x18="75.3" y14="-63.19" x8="79.87" y11="-63.29" y17="-63.05" y7="-63.37" x5="81.81" y4="-63.37" y3="-63.36" y2="-63.35" x15="76.35" x16="75.97" y13="-63.23" x9="79.29" x17="75.62" x6="81.12" antialias="false" x19="75.13" y16="-63.1" y10="-63.32" x1="84.06" x20="75.04" y20="-62.94" y5="-63.37" y9="-63.34" closed="false" x7="80.47" y15="-63.15" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="76.77" y12="-63.27" x10="78.73" y1="-63.34" x2="83.81" x4="82.55" x12="77.69" y6="-63.37" x3="83.3" x11="78.2" y19="-62.96" y18="-63" x13="77.22"/>
|
||||
<polygon y10="-63.31" x11="84.06" y7="-62.96" closed="false" x3="110.18" x10="85.3" y3="-62.1" y11="-63.34" x4="106.45" x8="91.53" y2="-61.91" x5="102.72" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="87.8" x7="95.26" y6="-62.78" x6="98.99" x2="112.66" x1="113.9" y9="-63.25" y5="-62.58" antialias="false" y4="-62.35" y1="-61.82" y8="-63.12"/>
|
||||
<polygon x21="113.9" y8="-61.49" x18="115.07" y14="-61.57" x8="120.91" y11="-61.51" y17="-61.69" y7="-61.5" x5="121.86" y4="-61.54" y3="-61.55" y2="-61.57" x15="117.08" x16="116.41" y13="-61.55" x9="120.48" x17="115.72" x6="121.61" y21="-61.82" antialias="false" x19="114.46" y16="-61.64" y10="-61.5" x1="122.32" x20="114.09" y20="-61.8" y5="-61.52" y9="-61.49" closed="false" x7="121.29" y15="-61.61" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="117.72" y12="-61.53" x10="120.01" y1="-61.58" x2="122.28" x4="122.06" x12="118.94" y6="-61.51" x3="122.21" x11="119.49" y19="-61.77" y18="-61.73" x13="118.34"/>
|
||||
<polygon y10="-61.63" x11="122.39" y7="-61.76" closed="false" x3="123.26" x10="122.54" y3="-61.82" y11="-61.6" x4="123.25" x8="122.9" y2="-61.82" x5="123.2" x12="122.32" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="122.73" x7="123.03" y6="-61.79" x6="123.13" x2="123.26" x1="123.26" y9="-61.68" y5="-61.8" antialias="false" y4="-61.81" y1="-61.82" y12="-61.58" y8="-61.72"/>
|
||||
<polygon closed="false" x2="120.87" antialias="false" x1="133.62" y2="-57.03" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-60.71"/>
|
||||
<line length2="1.5" x2="123.224" antialias="true" x1="133.62" y2="-61.7986" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-60.71" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x3="142.483" x2="126.35" antialias="false" x1="-44.4553" y2="0.931611" y3="3.02137" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-19.6512"/>
|
||||
<polygon x21="136.61" y8="-48.6" x18="135.22" y14="-49.57" x8="130.6" y11="-49.13" x24="137.89" y17="-49.77" y7="-48.43" x5="128.39" y4="-47.78" y3="-47.53" y24="-50.55" y2="-47.35" x15="134.52" x16="134.76" y13="-49.47" x9="131.22" x17="135" x6="129.23" y21="-50.2" antialias="false" x19="135.58" y26="-50.71" y16="-49.7" y27="-50.76" y10="-48.94" x27="138.65" x1="125.41" x20="136.06" y20="-50.05" y5="-48.02" y9="-48.76" y28="-50.78" closed="false" y25="-50.64" x7="129.96" x22="137.09" y15="-49.64" style="line-style:normal;line-weight:thin;filling:none;color:red" y23="-50.45" x14="134.28" y12="-49.32" x23="137.52" x10="131.9" y1="-47.26" y22="-50.34" x2="125.76" x25="138.2" x4="127.45" x26="138.45" x12="133.34" y6="-48.24" x29="138.77" y29="-50.8" x3="126.46" x11="132.61" y19="-49.92" y18="-49.83" x13="133.89" x28="138.73"/>
|
||||
<polygon closed="false" x2="138.77" antialias="false" x1="143" y2="-50.8" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="10"/>
|
||||
<line length2="1.5" x2="141.12" antialias="false" x1="141.02" y2="-21.29" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-21.29" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="138.77" antialias="true" x1="133.61" y2="-50.8" style="line-style:normal;line-weight:thin;filling:none;color:blue" y1="-60.71"/>
|
||||
<polygon y8="-19.57" x18="-39.09" y14="-19.32" x8="-43.7" y11="-19.47" y17="-19.1" y7="-19.6" x5="-44.24" y4="-19.65" y3="-19.65" y2="-19.65" x15="-41.14" x16="-40.51" y13="-19.38" x9="-43.44" x17="-39.83" x6="-44.11" antialias="false" x19="-38.55" y16="-19.18" y10="-19.51" x1="-44.34" x20="-38.29" y20="-18.91" y5="-19.64" y9="-19.54" closed="false" x7="-43.92" y15="-19.26" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="-41.67" y12="-19.43" x10="-43.17" y1="-19.65" x2="-44.34" x4="-44.31" x12="-42.51" y6="-19.62" x3="-44.35" x11="-42.85" y19="-18.94" y18="-19.01" x13="-42.13"/>
|
||||
<polygon closed="false" x2="-44.6" antialias="false" x1="-24.7112" y2="-13.64" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-11.206"/>
|
||||
<line length2="1.5" x2="74.9" antialias="false" x1="75.04" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-62.94" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="74.9" antialias="false" x1="78.87" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="58.4" antialias="false" x1="58.35" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-62.82" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="58.4" antialias="false" x1="74.9" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="39.29" antialias="false" x1="39.07" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-62.78" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="39.29" antialias="false" x1="58.4" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y8="-74.93" x18="114.57" y14="-75" x8="119.25" y11="-74.95" y17="-75.09" y7="-74.93" x5="120.05" y4="-74.96" y3="-74.97" y2="-74.98" x15="116.19" x16="115.67" y13="-74.98" x9="118.9" x17="115.13" x6="119.82" antialias="false" x19="114.19" y16="-75.06" y10="-74.94" x1="120.45" x20="114" y20="-75.17" y5="-74.94" y9="-74.93" closed="false" x7="119.56" y15="-75.03" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="116.7" y12="-74.96" x10="118.52" y1="-74.99" x2="120.42" x4="120.23" x12="117.67" y6="-74.94" x3="120.37" x11="118.11" y19="-75.16" y18="-75.13" x13="117.19"/>
|
||||
<line length2="1.5" x2="113.95" antialias="false" x1="114" y2="-75.09" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-75.17" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-75.23" x11="121.37" y7="-75.19" closed="false" x3="120.67" x10="121.38" y3="-75.05" y11="-75.22" x4="120.86" x8="121.32" y2="-75.01" x5="121.02" x12="121.37" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="121.36" x7="121.25" y6="-75.17" x6="121.15" x2="120.53" x1="120.45" y9="-75.22" y5="-75.13" antialias="false" y4="-75.09" y1="-74.99" y12="-75.22" y8="-75.21"/>
|
||||
<polygon y10="-75.17" y7="-75.51" closed="false" x3="114.36" x10="114" y3="-75.8" x4="114.35" x8="114.11" y2="-75.8" x5="114.32" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="114.03" x7="114.19" y6="-75.63" x6="114.26" x2="114.36" x1="114.36" y9="-75.23" y5="-75.72" antialias="false" y4="-75.78" y1="-75.8" y8="-75.36"/>
|
||||
<line length2="1.5" x2="37.59" antialias="false" x1="37.43" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-63.33" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="37.59" antialias="false" x1="39.29" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="8.31" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.31" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="15.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.58" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-47.62" antialias="false" x1="-47.62" y2="15.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.31" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="8.6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.31" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="15.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.28" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="7.13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="7.13" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-47.62" antialias="false" x1="-47.62" y2="7.13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.31" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="7.13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.31" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="-1.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.95" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-47.62" antialias="false" x1="-47.62" y2="7.13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.95" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="-1.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.95" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="7.13" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.77" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="-2.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.74" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-47.62" antialias="false" x1="-47.62" y2="-2.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.95" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="-2.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-1.95" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="-4.55" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.55" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-47.62" antialias="false" x1="-47.62" y2="-2.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.55" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="-2.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.81" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-47.62" y2="15.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.97" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-47.62" antialias="false" x1="-47.62" y2="15.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.97" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="15.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.97" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-61.33" antialias="false" x1="-61.33" y2="-3.82" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.69" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-61.33" antialias="false" x1="-61.33" y2="-3.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.35" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-61.33" antialias="false" x1="-61.33" y2="2.35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="11.75" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-61.33" antialias="false" x1="-61.33" y2="11.75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.23" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-65.7911" antialias="false" x1="-65.8" y2="-1.69333" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="13.07" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="15.46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.46" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="15.22" closed="false" x3="-61.31" y3="12.49" x4="-61.22" x8="-60.67" y2="11.99" x5="-61.09" style="line-style:normal;line-weight:thin;filling:none;color:red" x7="-60.74" y6="14.72" x6="-60.9" x2="-61.32" x1="-61.33" y5="13.98" antialias="false" y4="13.23" y1="11.75" y8="15.46"/>
|
||||
<polygon y10="11.75" y7="10.8" closed="false" x3="-60.91" x10="-61.33" y3="8.79" x4="-61.06" x8="-61.32" y2="8.34" x5="-61.15" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-61.32" x7="-61.28" y6="10.33" x6="-61.23" x2="-60.76" x1="-60.67" y9="11.59" y5="9.86" antialias="false" y4="9.4" y1="8.04" y8="11.28"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="8.04" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.04" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-53.95" antialias="false" x1="-53.96" y2="-5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.46" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="6.12" closed="false" x3="-61.31" y3="3.14" x4="-61.25" x8="-60.73" y2="2.61" x5="-61.15" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-60.67" x7="-60.86" y6="5.39" x6="-61.02" x2="-61.32" x1="-61.33" y9="6.85" y5="4.66" antialias="false" y4="3.91" y1="2.35" y8="6.61"/>
|
||||
<line length2="1.5" x2="-60.67" antialias="false" x1="-60.67" y2="6.85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="8.04" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="6.85" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.85" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="2.04" closed="false" x3="-60.9" y3="-1.28" x4="-61.08" x8="-61.33" y2="-1.86" x5="-61.22" style="line-style:normal;line-weight:thin;filling:none;color:red" x7="-61.32" y6="1.43" x6="-61.31" x2="-60.74" x1="-60.67" y5="0.51" antialias="false" y4="-0.39" y1="-2.14" y8="2.35"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="-2.14" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.14" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="-2.96" closed="false" x3="-61.31" y3="-3.53" x4="-61.22" x8="-60.67" y2="-3.64" x5="-61.09" style="line-style:normal;line-weight:thin;filling:none;color:red" x7="-60.74" y6="-3.06" x6="-60.9" x2="-61.32" x1="-61.33" y5="-3.22" antialias="false" y4="-3.38" y1="-3.69" y8="-2.91"/>
|
||||
<line length2="1.5" x2="-60.67" antialias="false" x1="-60.67" y2="-2.91" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.14" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-60.67" antialias="false" x1="-60.67" y2="15.46" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.89" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="15.38" closed="false" x3="-60.91" y3="15.73" x4="-61.06" x8="-61.25" y2="15.82" x5="-61.15" style="line-style:normal;line-weight:thin;filling:none;color:red" x7="-61.24" y6="15.42" x6="-61.22" x2="-60.76" x1="-60.67" y5="15.5" antialias="false" y4="15.6" y1="15.89" y8="15.36"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="-2.91" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.91" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-3.69" y7="-3.89" closed="false" x3="-60.91" x10="-61.33" y3="-4.31" x4="-61.06" x8="-61.32" y2="-4.41" x5="-61.15" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-61.32" x7="-61.28" y6="-3.99" x6="-61.23" x2="-60.76" x1="-60.67" y9="-3.72" y5="-4.09" antialias="false" y4="-4.18" y1="-4.47" y8="-3.79"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="-4.47" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.47" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-53.96" antialias="false" x1="-60.67" y2="15.89" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.89" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="104.51" antialias="false" x1="104.54" y2="112.22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="109.22" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="104.51" antialias="false" x1="103.55" y2="112.22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="112.21" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="104.54" antialias="false" x1="103.84" y2="109.22" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="109.21" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-76.1" x11="73.69" x17="74.88" y7="-76.09" x14="74.37" y16="-76.17" x13="74.13" y13="-76.13" y15="-76.16" closed="false" x3="71.75" x10="73.46" y3="-76.1" y11="-76.11" x4="71.99" x8="72.97" y2="-76.1" x5="72.23" x12="73.92" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="73.22" x16="74.8" x7="72.73" y6="-76.09" x6="72.48" x2="71.6" x1="71.53" y9="-76.09" y5="-76.09" antialias="false" y4="-76.09" y1="-76.1" y12="-76.12" y17="-76.18" y14="-76.14" y8="-76.09" x15="74.63"/>
|
||||
<polygon y4="-76.29" closed="false" x3="67.92" x4="64.31" x2="70.32" x7="57.08" antialias="false" y7="-76.33" x1="71.53" y2="-76.14" y3="-76.22" y5="-76.33" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-76.1" y6="-76.33" x6="58.29" x5="60.7"/>
|
||||
<polygon y8="-76.43" x18="75" y14="-76.31" x8="79.78" y11="-76.38" y17="-76.22" y7="-76.44" x5="81.67" y4="-76.44" y3="-76.44" y2="-76.43" x15="76" x16="75.61" y13="-76.33" x9="79.18" x17="75.23" x6="81.03" antialias="false" x19="74.88" y16="-76.25" y10="-76.4" x1="83.57" y5="-76.44" y9="-76.42" closed="false" x7="80.4" y15="-76.28" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="76.43" y12="-76.36" x10="78.6" y1="-76.43" x2="83.36" x4="82.31" x12="77.47" y6="-76.44" x3="82.94" x11="78.03" y19="-76.18" y18="-76.19" x13="76.92"/>
|
||||
<line length2="1.5" x2="83.57" antialias="false" x1="78.87" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y26="-76.7" y39="-76.63" y12="-76.87" x11="91.94" antialias="false" y28="-76.68" x33="98.34" y18="-76.8" closed="false" y13="-76.86" y16="-76.82" x10="91.73" y37="-76.63" x21="94.92" y20="-76.77" y25="-76.71" x17="93.6" x5="91.05" y27="-76.69" y32="-76.65" x19="94.25" x28="97.16" y17="-76.81" x2="90.97" y41="-76.63" x6="91.13" y3="-76.92" x30="97.69" x36="98.77" x14="92.7" y29="-76.67" y6="-76.91" x37="98.86" y34="-76.64" x23="95.59" x26="96.56" x29="97.43" x12="92.18" x34="98.51" x20="94.58" y38="-76.63" y23="-76.74" y14="-76.85" x22="95.26" x16="93.28" x35="98.65" y5="-76.92" x27="96.86" y30="-76.67" y2="-76.92" x4="91" y7="-76.91" y31="-76.66" y4="-76.92" y1="-76.92" y24="-76.72" y36="-76.63" x41="98.97" x8="91.38" y10="-76.89" x40="98.97" y33="-76.65" x25="96.25" x13="92.43" y15="-76.83" x3="90.97" x31="97.92" x39="98.96" y35="-76.64" x32="98.14" y40="-76.63" x38="98.93" style="line-style:normal;line-weight:thin;filling:none;color:red" y9="-76.9" y22="-76.75" x7="91.24" x15="92.98" y19="-76.78" y8="-76.9" x9="91.55" x24="95.92" x18="93.92" y21="-76.76" x1="90.97" y11="-76.88"/>
|
||||
<polygon y10="-76.34" x11="56.39" y7="-76.36" x14="57" x13="56.83" y13="-76.33" y15="-76.33" closed="false" x3="55.33" x10="56.19" y3="-76.4" y11="-76.33" x4="55.4" x8="55.85" y2="-76.41" x5="55.48" x12="56.6" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="56.01" x7="55.71" y6="-76.37" x6="55.59" x2="55.3" x1="55.29" y9="-76.34" y5="-76.38" antialias="false" y4="-76.39" y1="-76.41" y12="-76.33" y14="-76.33" y8="-76.35" x15="57.08"/>
|
||||
<polygon y10="-76.8" y7="-76.79" closed="false" x3="54.97" x10="54.26" y3="-76.54" x4="54.71" x8="54.25" y2="-76.45" x5="54.51" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="54.26" x7="54.28" y6="-76.76" x6="54.37" x2="55.18" x1="55.29" y9="-76.8" y5="-76.71" antialias="false" y4="-76.63" y1="-76.41" y8="-76.81"/>
|
||||
<polygon y10="-76.4" x11="83.57" y7="-76.13" closed="false" x3="110.16" x10="84.84" y3="-75.36" y11="-76.43" x4="106.37" x8="91.18" y2="-75.18" x5="102.58" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="87.38" x7="94.98" y6="-75.97" x6="98.78" x2="112.69" x1="113.95" y9="-76.36" y5="-75.79" antialias="false" y4="-75.59" y1="-75.09" y8="-76.25"/>
|
||||
<line length2="1.5" x2="113.95" antialias="false" x1="107.85" y2="-75.09" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="107.85" antialias="false" x1="83.57" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="80.4" antialias="false" x1="80.4" y2="165.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.83" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y8="45.04" x18="114.98" y14="42.25" x8="110.87" y11="43.43" y17="41.27" y7="45.7" x5="110.08" y4="47.47" y3="48.19" y2="48.74" x15="113.67" x16="114.14" y13="42.62" x9="111.26" x17="114.64" x6="110.27" antialias="false" x19="115.16" y16="41.57" y10="43.87" x1="109.63" y5="46.84" y9="44.41" closed="false" x7="110.53" y15="41.9" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="113.22" y12="43.01" x10="111.65" y1="49.01" x2="109.66" x4="109.89" x12="112.39" y6="46.3" x3="109.73" x11="112.01" y19="41" y18="41.09" x13="112.8"/>
|
||||
<polygon closed="false" x2="98.4" antialias="true" x1="109.63" y2="165.84" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="49.01"/>
|
||||
<polygon closed="false" x2="62.4" antialias="true" x1="51.16" y2="165.84" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="49.01"/>
|
||||
<polygon x21="51.08" y8="41.32" x18="50.54" y14="43.99" x8="46.23" y11="42.5" y17="45.72" y7="41" x5="44.4" y4="40.29" y3="40.14" y2="40.08" x15="49.61" x16="49.96" y13="43.46" x9="46.8" x17="50.27" x6="45.03" y21="48.33" antialias="false" x19="50.76" y16="45.12" y10="42.07" x1="42.43" x20="50.95" y20="47.66" y5="40.49" y9="41.67" closed="false" x7="45.64" x22="51.14" y15="44.54" style="line-style:normal;line-weight:thin;filling:none;color:red" y23="49.01" x14="49.23" y12="42.97" x23="51.16" x10="47.35" y1="40.05" y22="48.79" x2="42.65" x4="43.75" x12="48.36" y6="40.72" x3="43.09" x11="47.87" y19="47" y18="46.35" x13="48.81"/>
|
||||
<polygon closed="false" x2="-43.5535" antialias="false" x1="42.43" y2="29.5236" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="40.05"/>
|
||||
<line length2="1.5" x2="80.4" antialias="false" x1="80.4" y2="2.71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="17.83" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="115.21" antialias="false" x1="80.4" y2="16.61" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="17.83"/>
|
||||
<polygon closed="false" x2="-24.57" antialias="false" x1="15.01" y2="-5.14" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-0.28"/>
|
||||
<polygon y10="-0.24" x11="15.01" y7="0.16" closed="false" x3="21.76" x10="15.34" y3="1.02" y11="-0.28" x4="20.81" x8="16.96" y2="1.19" x5="19.86" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="15.99" x7="17.93" y6="0.35" x6="18.9" x2="22.39" x1="22.7" y9="-0.16" y5="0.55" antialias="false" y4="0.78" y1="1.28" y8="-0.01"/>
|
||||
<polygon closed="false" x2="22.7" antialias="false" x1="80.4" y2="1.28" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="17.83"/>
|
||||
<line length2="1.5" x2="80.4" antialias="false" x1="80.4" y2="2.71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="1.71" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon x21="128.57" y8="16.41" x18="127.89" y14="16.25" x8="120.92" y11="16.33" y17="16.18" y7="16.44" x5="118.22" y4="16.54" y3="16.57" y2="16.6" x15="126.2" x16="126.83" y13="16.27" x9="121.76" x17="127.41" x6="119.17" y21="16.14" antialias="false" x19="128.27" y16="16.2" y10="16.35" x1="115.21" x20="128.47" y20="16.15" y5="16.5" y9="16.38" closed="false" x7="120.07" y15="16.23" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="125.54" y12="16.3" x10="122.57" y1="16.61" x2="115.55" x4="117.23" x12="124.11" y6="16.47" x3="116.22" x11="123.36" y19="16.15" y18="16.17" x13="124.84"/>
|
||||
<polygon y7="40.07" closed="false" x3="115.79" y3="40.71" x4="116.45" x8="118.36" y2="40.91" x5="117.13" style="line-style:normal;line-weight:thin;filling:none;color:red" x7="118.18" y6="40.13" x6="117.77" x2="115.37" x1="115.16" y5="40.27" antialias="false" y4="40.47" y1="41" y8="40.05"/>
|
||||
<polygon closed="false" x2="118.36" antialias="false" x1="141.888" y2="40.05" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="37.1506"/>
|
||||
<polygon closed="false" x2="-38.36" antialias="false" x1="-24.57" y2="-6.84" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-5.14"/>
|
||||
<polygon y26="5.24" y39="11.54" x47="-36.64" y12="-1.16" x11="-35.96" antialias="false" y28="6.23" x33="-34.31" y18="1.24" closed="false" x49="-36.97" x48="-36.81" y13="-0.81" x42="-35.78" y16="0.34" x10="-36.14" y37="10.77" x46="-36.48" y49="14.7" y52="15.33" x21="-34.16" y20="2.52" y25="4.77" x17="-34.91" x5="-36.99" y27="5.75" x45="-36.3" y32="8.32" x19="-34.52" x43="-35.96" x28="-33.88" y17="0.75" x2="-37.36" y41="12.27" x6="-36.83" y3="-3.76" x30="-33.95" x36="-34.77" x14="-35.43" y29="6.66" y6="-3.03" x37="-34.93" y34="9.49" x23="-34" x26="-33.88" x29="-33.91" y42="12.62" x12="-35.79" y50="14.95" x34="-34.47" x20="-34.31" y46="13.88" y38="11.16" y23="3.98" y14="-0.44" x22="-34.07" x16="-35.08" x35="-34.63" x44="-36.13" y5="-3.29" y48="14.44" x27="-33.87" x50="-37.12" y30="7.13" y2="-3.89" x4="-37.14" y45="13.58" y7="-2.76" y31="7.69" y4="-3.53" y1="-3.96" y24="4.35" y36="10.37" x41="-35.61" x8="-36.5" y10="-1.83" x40="-35.43" y33="8.94" x53="-37.41" y44="13.27" x25="-33.91" x13="-35.61" y15="-0.06" x52="-37.36" x3="-37.28" x31="-34.03" x39="-35.26" y35="9.96" y51="15.19" x32="-34.16" y40="11.91" x38="-35.09" y53="15.4" style="line-style:normal;line-weight:thin;filling:none;color:red" y9="-2.15" y22="3.61" x7="-36.67" x51="-37.27" x15="-35.26" y19="1.83" y43="12.95" y8="-2.46" x9="-36.32" x24="-33.95" x18="-34.72" y21="3.12" x1="-37.41" y11="-1.5" y47="14.17"/>
|
||||
<line length2="1.5" x2="142.89" antialias="false" x1="142.89" y2="10.38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.64" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon x21="142.25" y8="15.93" x18="141.29" y14="15.77" x8="134.83" y11="15.84" x24="142.79" y17="15.71" y7="15.96" x5="131.91" y4="16.06" y3="16.1" y24="15.65" y2="16.13" x15="139.9" x16="140.41" y13="15.79" x9="135.7" x17="140.87" x6="132.93" y21="15.67" antialias="false" x19="141.66" y26="15.64" y16="15.73" y27="15.64" y10="15.87" x27="142.89" x1="128.57" x20="141.98" y20="15.68" y5="16.03" y9="15.89" closed="false" y25="15.64" x7="133.9" x22="142.48" y15="15.75" style="line-style:normal;line-weight:thin;filling:none;color:red" y23="15.65" x14="139.34" y12="15.81" x23="142.66" x10="136.53" y1="16.14" y22="15.66" x2="128.96" x25="142.87" x4="130.84" x26="142.88" x12="138.04" y6="15.99" x3="129.73" x11="137.31" y19="15.69" y18="15.7" x13="138.72"/>
|
||||
<polygon y4="19.48" closed="false" x3="141.9" x4="141.9" x2="141.89" antialias="false" x1="141.89" y2="33.8" y3="26.64" y5="15.68" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="37.16" x5="141.9"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="15.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.21" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="8.6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.28" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="-1.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="6.77" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.7" antialias="false" x1="-43.7" y2="-4.79" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.81" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="16.34" x11="-38.51" y7="16.13" x14="-38.68" x13="-38.66" y13="16.38" closed="false" x3="-37.53" x10="-38.39" y3="15.59" y11="16.37" x4="-37.65" x8="-38.14" y2="15.46" x5="-37.77" x12="-38.61" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-38.27" x7="-38.02" y6="16.02" x6="-37.89" x2="-37.45" x1="-37.41" y9="16.29" y5="15.89" antialias="false" y4="15.75" y1="15.4" y12="16.39" y14="16.38" y8="16.22"/>
|
||||
<polygon y10="-4.07" x11="-37.41" y7="-4.72" closed="false" x3="-38.6" x10="-37.48" y3="-4.97" y11="-3.96" x4="-38.5" x8="-37.83" y2="-4.97" x5="-38.37" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-37.62" x7="-38.04" y6="-4.84" x6="-38.22" x2="-38.67" x1="-38.7" y9="-4.28" y5="-4.91" antialias="false" y4="-4.95" y1="-4.96" y8="-4.52"/>
|
||||
<line length2="1.5" x2="-43.6" antialias="false" x1="-43.6" y2="-4.88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-7.48" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-43.6" antialias="false" x1="-43.6" y2="29.48" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.3" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y4="16.29" closed="false" x3="-42.99" x4="-42.95" x2="-43.02" antialias="false" x1="-43.03" y2="16.31" y3="16.31" y5="16.25" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="16.31" y6="16.24" x6="-42.91" x5="-42.92"/>
|
||||
<polygon y4="-4.9" closed="false" x3="-42.96" x4="-43" x2="-42.93" antialias="false" x1="-42.92" y2="-4.83" y3="-4.87" y5="-4.9" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-4.82" y6="-4.89" x6="-43.03" x5="-43.03"/>
|
||||
<line length2="1.5" x2="-44.6" antialias="false" x1="-44.6" y2="-7.6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-12.64" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y10="-7.53" x11="-44.22" y7="-7.42" x14="-44.58" y16="-7.6" x13="-44.5" y13="-7.59" y15="-7.6" closed="false" x3="-39.13" x10="-44" y3="-6.93" y11="-7.55" x4="-41.69" x8="-43.44" y2="-6.87" x5="-42.2" x12="-44.38" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="-43.74" x16="-44.6" x7="-43.08" y6="-7.36" x6="-42.67" x2="-38.62" x1="-38.36" y9="-7.5" y5="-7.31" antialias="false" y4="-7.24" y1="-6.84" y12="-7.58" y14="-7.6" y8="-7.46" x15="-44.59"/>
|
||||
<line length2="1.5" x2="-42.97" antialias="false" x1="-43.01" y2="-13.44" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-12.44" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="80.4" antialias="false" x1="80.4" y2="175.27" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="165.95" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="98.4" antialias="false" x1="98.4" y2="165.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="174.69" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y8="176.07" x18="98.4" y14="175.4" x8="99.41" y11="175.87" y17="174.74" y7="176.13" x5="100.53" y4="176.13" y3="176.08" y2="176.03" x15="98.43" x16="98.4" y13="175.62" x9="99.2" x17="98.4" x6="100.09" antialias="false" y16="174.9" y10="175.94" x1="102.1" y5="176.16" y9="176" closed="false" x7="99.7" y15="175.14" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="98.52" y12="175.77" x10="99.06" y1="176.01" x2="101.92" x4="101.02" x12="98.79" y6="176.16" x3="101.54" x11="98.93" y18="174.69" x13="98.64"/>
|
||||
<polygon y8="175.9" x18="80.85" y14="175.35" x8="93.38" y11="175.6" y17="175.25" y7="176" x5="96.87" y4="176.18" y3="176.2" y2="176.18" x15="84.46" x16="83.11" y13="175.42" x9="92.16" x17="81.76" x6="95.73" antialias="false" x19="80.4" y16="175.26" y10="175.7" x1="100.1" y5="176.14" y9="175.8" closed="false" x7="94.57" y15="175.29" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="85.79" y12="175.5" x10="90.93" y1="176.17" x2="99.75" x4="97.97" x12="88.39" y6="176.08" x3="99.05" x11="89.67" y19="175.27" y18="175.26" x13="87.1"/>
|
||||
<polygon y10="176.14" x11="60.59" y7="175.88" x14="59.23" y16="176.01" x13="59.72" y13="176.13" y15="176.03" closed="false" x3="62.38" x10="60.97" y3="175" y11="176.16" x4="62.32" x8="61.61" y2="174.8" x5="62.22" x12="60.18" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="61.32" x16="58.69" x7="61.86" y6="175.72" x6="62.06" x2="62.39" x1="62.4" y9="176.09" y5="175.52" antialias="false" y4="175.28" y1="174.69" y12="176.15" y14="176.08" y8="176" x15="58.87"/>
|
||||
<line length2="1.5" x2="62.4" antialias="false" x1="62.4" y2="165.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="174.69" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y8="175.5" x18="61.05" y14="176.07" x8="72.4" y11="175.81" y17="176.2" y7="175.42" x5="76.4" y4="175.26" y3="175.25" y2="175.26" x15="63.97" x16="62.86" y13="176" x9="71.07" x17="61.76" x6="75.07" antialias="false" x19="60.69" y16="176.18" y10="175.71" x1="80.4" y5="175.29" y9="175.6" closed="false" x7="73.73" y15="176.14" style="line-style:normal;line-weight:thin;filling:none;color:red" x14="65.11" y12="175.9" x10="69.8" y1="175.27" x2="79.95" x4="77.74" x12="67.41" y6="175.34" x3="79.07" x11="68.58" y19="176.17" y18="176.18" x13="66.25"/>
|
||||
<polygon y10="172.62" x11="99.77" y7="172.13" x14="100.5" x13="100.3" y13="172.78" y15="172.79" closed="false" x3="98.4" x10="99.5" y3="170.91" y11="172.69" x4="98.45" x8="99" y2="170.64" x5="98.53" x12="100.02" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="99.24" x7="98.8" y6="171.89" x6="98.64" x2="98.4" x1="98.4" y9="172.5" y5="171.6" antialias="false" y4="171.27" y1="170.51" y12="172.74" y14="172.79" y8="172.34" x15="100.6"/>
|
||||
<polygon y10="171.61" x11="62.33" y7="172.33" x14="62.39" x13="62.39" y13="170.81" y15="170.51" closed="false" x3="60.59" x10="62.26" y3="172.77" y11="171.35" x4="60.95" x8="61.99" y2="172.78" x5="61.27" x12="62.37" style="line-style:normal;line-weight:thin;filling:none;color:red" x9="62.15" x7="61.8" y6="172.5" x6="61.56" x2="60.32" x1="60.19" y9="171.88" y5="172.62" antialias="false" y4="172.71" y1="172.79" y12="171.09" y14="170.61" y8="172.13" x15="62.4"/>
|
||||
<line length2="1.5" x2="102.1" antialias="false" x1="100.6" y2="172.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="172.79" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="60.19" antialias="false" x1="58.69" y2="172.79" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="172.84" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="103.07" antialias="false" x1="102.1" y2="172.88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="172.84" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="214" antialias="false" height="-5.11" width="-8.27" style="line-style:normal;line-weight:thin;filling:none;color:black" x="80.4" y="128.48" angle="2"/>
|
||||
<line length2="1.5" x2="104.17" antialias="false" x1="114.9" y2="171.4" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="171.5" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="45.9" antialias="false" x1="62.3061" y2="171.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="171.109" length1="1.5" end2="none" end1="none"/>
|
||||
<arc start="143" antialias="false" height="5.11" width="8.27" style="line-style:normal;line-weight:thin;filling:none;color:black" x="80.4" y="128.48" angle="2"/>
|
||||
<line length2="1.5" x2="57.72" antialias="false" x1="58.69" y2="172.88" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="172.84" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="114.9" antialias="false" x1="45.9" y2="183.71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="183.71" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="98.48" antialias="false" x1="104.17" y2="171.35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="171.4" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-46.1" antialias="false" x1="-46.1" y2="15.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.21" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-46.1" antialias="false" x1="-46.1" y2="-4.79" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.55" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="-38.1" closed="false" x3="-36.67" y3="-30.88" x4="-36.55" x8="-36.02" y2="-29.07" x5="-36.43" style="line-style:normal;line-weight:thin;filling:none;color:blue" x9="-35.88" x7="-36.16" y6="-36.3" x6="-36.3" x2="-36.78" x1="-36.89" y9="-41.71" y5="-34.49" antialias="false" y4="-32.68" y1="-27.26" y8="-39.91"/>
|
||||
<line length2="1.5" x2="-35.88" antialias="false" x1="-31.68" y2="-41.71" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-51.47" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="76.94" antialias="false" x1="76.94" y2="1.28" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.76" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="128.57" antialias="false" x1="128.584" y2="7.62" style="line-style:normal;line-weight:thin;filling:none;color:blue" y1="1.55351"/>
|
||||
<line length2="1.5" x2="83.79" antialias="false" x1="83.79" y2="-3.92" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="2.12" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="76.8884" antialias="false" x1="77.2775" y2="1.18757" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-58.54"/>
|
||||
<polygon closed="false" x2="83.8822" antialias="false" x1="83.77" y2="-58.3073" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-3.92"/>
|
||||
<polygon closed="false" x2="127.67" antialias="false" x1="125.41" y2="1.47" style="line-style:normal;line-weight:thin;filling:none;color:blue" y1="-47.26"/>
|
||||
<line length2="1.5" x2="115.02" antialias="false" x1="115.52" y2="-47.03" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-56.78" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="-17.41" closed="false" x3="-38.47" y3="-14.4" x4="-38.44" x8="-38.32" y2="-13.65" x5="-38.41" style="line-style:normal;line-weight:thin;filling:none;color:blue" x9="-38.29" x7="-38.35" y6="-16.65" x6="-38.38" x2="-38.5" x1="-38.53" y9="-18.91" y5="-15.9" antialias="false" y4="-15.15" y1="-12.89" y8="-18.16"/>
|
||||
<line length2="1.5" x2="-24.37" antialias="false" x1="-24.38" y2="-28.8" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.5" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon y7="-24.92" closed="false" x3="-37.24" y3="-20.83" x4="-37.19" x8="-36.97" y2="-19.81" x5="-37.13" style="line-style:normal;line-weight:thin;filling:none;color:blue" x9="-36.91" x7="-37.03" y6="-23.9" x6="-37.08" x2="-37.28" x1="-37.33" y9="-26.96" y5="-22.88" antialias="false" y4="-21.85" y1="-18.79" y8="-25.94"/>
|
||||
<line length2="1.5" x2="-35.63" antialias="false" x1="-35.65" y2="-27.42" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-27.11" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="84.06" antialias="false" x1="84.06" y2="-63.34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="113.9" antialias="false" x1="113.9" y2="-75" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-61.82" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="120.45" antialias="false" x1="122.32" y2="-74.99" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-61.58" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-49.01" antialias="false" x1="-49.01" y2="13.93" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-2.51" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-63.64" antialias="false" x1="-63.687" y2="15.23" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-3.83889" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="75.55" antialias="false" x1="74.88" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-76.18"/>
|
||||
<polygon closed="false" x2="71.53" antialias="false" x1="72.02" y2="-76.1" style="line-style:normal;line-weight:thin;filling:none;color:red" y1="-64.52"/>
|
||||
<line length2="1.5" x2="55.58" antialias="false" x1="57.08" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-76.33" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="83.57" antialias="false" x1="83.57" y2="-64.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-76.43" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="55.29" antialias="false" x1="53.79" y2="-76.41" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-64.52" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="115.16" antialias="false" x1="115.14" y2="41" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-46.8631" length1="1.5" end2="none" end1="none"/>
|
||||
<polygon closed="false" x2="98" antialias="false" x1="62" y2="166" style="line-style:normal;line-weight:thin;filling:none;color:blue" y1="166"/>
|
||||
<line length2="1.5" x2="-25.44" antialias="false" x1="-24.5178" y2="31.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-41.5871" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="128.57" antialias="false" x1="128.57" y2="8.62" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.14" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="128" antialias="false" x1="127.71" y2="38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="16.17" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-38.36" antialias="false" x1="-38.36" y2="-11.87" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-6.84" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-37.41" antialias="false" x1="-37.41" y2="-3.96" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-6.72" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="-37.41" antialias="false" x1="-37.41" y2="30.24" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="15.4" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="102.1" antialias="false" x1="102.1" y2="176.01" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="172.84" length1="1.5" end2="none" end1="none"/>
|
||||
<line length2="1.5" x2="58.69" antialias="false" x1="58.69" y2="172.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="176.01" length1="1.5" end2="none" end1="none"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,52 +1,50 @@
|
||||
<definition height="60" width="40" link_type="simple" hotspot_x="13" version="0.80" orientation="dyyy" type="element" hotspot_y="29">
|
||||
<uuid uuid="{08b2892d-7da4-486f-9de9-d30b4ffad67f}"/>
|
||||
<definition type="element" width="40" hotspot_y="29" link_type="simple" hotspot_x="13" height="60" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{3b69d5e3-0088-4b26-8704-bb3bd6108ba0}"/>
|
||||
<names>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="fr">XB4BVM3_VERT</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">VERT</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">SCHNEIDER</elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVM3</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVM3</elementInformation>
|
||||
<elementInformation name="description" show="1">VERT</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" y="-10" antialias="true"/>
|
||||
<text color="#000000" x="2" y="-12" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="X1" rotation="0"/>
|
||||
<text color="#000000" x="2" y="16" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="X2" rotation="0"/>
|
||||
<line y1="-7.03" x1="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="-7.03" end1="none" antialias="false"/>
|
||||
<line y1="-7.03" x1="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="7.03" end1="none" antialias="false"/>
|
||||
<line y1="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<line y1="10" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<dynamic_text uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Halignment="AlignLeft" frame="false" x="15" Valignment="AlignTop" text_from="ElementInfo" y="-10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="6" rotation="0" text_width="-1">
|
||||
<circle x="-10" diameter="20" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10"/>
|
||||
<text x="2" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="X1" color="#000000" y="-12"/>
|
||||
<text x="2" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="X2" color="#000000" y="16"/>
|
||||
<line end2="none" x1="7.03" y2="7.03" antialias="false" x2="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-7.03"/>
|
||||
<line end2="none" x1="-7.03" y2="7.03" antialias="false" x2="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-7.03"/>
|
||||
<line end2="none" x1="0" y2="-10" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-20"/>
|
||||
<dynamic_text x="15" z="6" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" y="-10">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{f97856b1-e6fa-46f0-9fcb-3cc77074f586}" Halignment="AlignLeft" frame="false" x="6" Valignment="AlignTop" text_from="ElementInfo" y="6" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" z="7" rotation="0" text_width="-1">
|
||||
<line end2="none" x1="0" y2="20" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<dynamic_text x="6" z="7" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{f97856b1-e6fa-46f0-9fcb-3cc77074f586}" y="6">
|
||||
<text>VERT</text>
|
||||
<info_name>description</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="10" y="27" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="230V" rotation="0"/>
|
||||
<terminal x="0" y="21" orientation="s"/>
|
||||
<terminal x="0" y="-21" orientation="n"/>
|
||||
<text x="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="230V" color="#000000" y="20"/>
|
||||
<terminal x="0" orientation="s" y="21"/>
|
||||
<terminal x="0" orientation="n" y="-21"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,49 +1,52 @@
|
||||
<definition height="60" width="30" link_type="simple" hotspot_x="15" version="0.80" orientation="dyyy" type="element" hotspot_y="29">
|
||||
<uuid uuid="{cf4abb22-4daf-4323-8c17-56ec30d79598}"/>
|
||||
<definition type="element" width="40" hotspot_y="29" link_type="simple" hotspot_x="15" height="60" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{a1b16f75-7f20-4cb5-b653-e92fc37a04cf}"/>
|
||||
<names>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="fr">XB4BVB1_BLANC</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">BLANC</elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">SCHNEIDER</elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB1</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB1</elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">BLANC</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" y="-10" antialias="true"/>
|
||||
<line y1="-7.03" x1="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="-7.03" end1="none" antialias="false"/>
|
||||
<line y1="-7.03" x1="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="7.03" end1="none" antialias="false"/>
|
||||
<line y1="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<line y1="10" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<dynamic_text uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Halignment="AlignLeft" frame="false" x="15" Valignment="AlignTop" text_from="ElementInfo" y="-10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="6" rotation="0" text_width="-1">
|
||||
<circle x="-10" diameter="20" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10"/>
|
||||
<line end2="none" x1="7.03" y2="7.03" antialias="false" x2="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-7.03"/>
|
||||
<line end2="none" x1="-7.03" y2="7.03" antialias="false" x2="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-7.03"/>
|
||||
<line end2="none" x1="0" y2="-10" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-20"/>
|
||||
<line end2="none" x1="0" y2="20" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<dynamic_text x="15" z="6" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" y="-10">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{cfc5630a-8a6f-48e0-8e1a-6539959ec25e}" Halignment="AlignLeft" frame="false" x="6" Valignment="AlignTop" text_from="ElementInfo" y="6" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" z="7" rotation="0" text_width="-1">
|
||||
<dynamic_text x="6" z="7" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{cfc5630a-8a6f-48e0-8e1a-6539959ec25e}" y="6">
|
||||
<text>BLANC</text>
|
||||
<info_name>description</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-21" orientation="n"/>
|
||||
<terminal x="0" y="21" orientation="s"/>
|
||||
<text x="10" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="24V" color="#000000" y="20"/>
|
||||
<text x="1" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="X1" color="#000000" y="-12"/>
|
||||
<text x="1" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="X2" color="#000000" y="15"/>
|
||||
<terminal x="0" orientation="s" y="21"/>
|
||||
<terminal x="0" orientation="n" y="-21"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,49 +1,52 @@
|
||||
<definition height="60" width="30" link_type="simple" hotspot_x="15" version="0.80" orientation="dyyy" type="element" hotspot_y="29">
|
||||
<uuid uuid="{7dfc5aea-b4f6-451d-8cbb-4d1f6170720b}"/>
|
||||
<definition type="element" width="40" hotspot_y="29" link_type="simple" hotspot_x="15" height="60" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{49e3c33a-9829-40d2-a7a2-8c36a40eb699}"/>
|
||||
<names>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="fr">XB4BVB3_VERT</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">VERT</elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">SCHNEIDER</elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB3</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB3</elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">VERT</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" y="-10" antialias="true"/>
|
||||
<line y1="-7.03" x1="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="-7.03" end1="none" antialias="false"/>
|
||||
<line y1="-7.03" x1="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="7.03" end1="none" antialias="false"/>
|
||||
<line y1="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<line y1="10" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<dynamic_text uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Halignment="AlignLeft" frame="false" x="15" Valignment="AlignTop" text_from="ElementInfo" y="-10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="6" rotation="0" text_width="-1">
|
||||
<circle x="-10" diameter="20" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10"/>
|
||||
<text x="10.5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="24V" color="#000000" y="20.55"/>
|
||||
<line end2="none" x1="7.03" y2="7.03" antialias="false" x2="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-7.03"/>
|
||||
<line end2="none" x1="-7.03" y2="7.03" antialias="false" x2="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-7.03"/>
|
||||
<line end2="none" x1="0" y2="-10" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-20"/>
|
||||
<dynamic_text x="15" z="6" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" y="-10">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{f97856b1-e6fa-46f0-9fcb-3cc77074f586}" Halignment="AlignLeft" frame="false" x="6" Valignment="AlignTop" text_from="ElementInfo" y="6" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" z="7" rotation="0" text_width="-1">
|
||||
<line end2="none" x1="0" y2="20" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="10"/>
|
||||
<dynamic_text x="6" z="7" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{f97856b1-e6fa-46f0-9fcb-3cc77074f586}" y="6">
|
||||
<text>VERT</text>
|
||||
<info_name>description</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="21" orientation="s"/>
|
||||
<terminal x="0" y="-21" orientation="n"/>
|
||||
<text x="1" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="X1" color="#000000" y="-12"/>
|
||||
<text x="1" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="X2" color="#000000" y="23"/>
|
||||
<terminal x="0" orientation="s" y="21"/>
|
||||
<terminal x="0" orientation="n" y="-21"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,49 +1,50 @@
|
||||
<definition height="60" width="30" link_type="simple" hotspot_x="15" version="0.80" orientation="dyyy" type="element" hotspot_y="29">
|
||||
<uuid uuid="{c7294592-024f-437f-8eaf-e4c414cfb176}"/>
|
||||
<definition version="0.80" hotspot_y="29" link_type="simple" hotspot_x="15" height="60" orientation="dyyy" width="40" type="element">
|
||||
<uuid uuid="{c8268620-cb12-455d-b902-de514c4ab74a}"/>
|
||||
<names>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="fr">XB4BVB4_ROUGE</name>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="fr">XB4BVB4_ROUGE</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">ROUGE</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">SCHNEIDER</elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB4</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">SCHNEIDER</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">ROUGE</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="designation">XB4BVB4</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" y="-10" antialias="true"/>
|
||||
<line y1="-7.03" x1="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="-7.03" end1="none" antialias="false"/>
|
||||
<line y1="-7.03" x1="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="7.03" end1="none" antialias="false"/>
|
||||
<line y1="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<line y1="10" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<dynamic_text uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Halignment="AlignLeft" frame="false" x="15" Valignment="AlignTop" text_from="ElementInfo" y="-10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="6" rotation="0" text_width="-1">
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" antialias="true" diameter="20"/>
|
||||
<text x="10" color="#000000" y="20" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="24V"/>
|
||||
<line x1="7.03" y1="-7.03" end1="none" length1="1.5" x2="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" antialias="false"/>
|
||||
<line x1="-7.03" y1="-7.03" end1="none" length1="1.5" x2="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" antialias="false"/>
|
||||
<line x1="0" y1="-20" end1="none" length1="1.5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" antialias="false"/>
|
||||
<line x1="0" y1="10" end1="none" length1="1.5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" antialias="false"/>
|
||||
<dynamic_text x="15" text_from="ElementInfo" z="6" text_width="-1" y="-10" Halignment="AlignLeft" uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Valignment="AlignTop" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{0387db27-5b26-45f7-9fa6-eb784cf2bd11}" Halignment="AlignLeft" frame="false" x="6" Valignment="AlignTop" text_from="ElementInfo" y="6" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" z="7" rotation="0" text_width="-1">
|
||||
<dynamic_text x="6" text_from="ElementInfo" z="7" text_width="-1" y="6" Halignment="AlignLeft" uuid="{0387db27-5b26-45f7-9fa6-eb784cf2bd11}" Valignment="AlignTop" rotation="0" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" frame="false">
|
||||
<text>ROUGE</text>
|
||||
<info_name>description</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="21" orientation="s"/>
|
||||
<terminal x="0" y="-21" orientation="n"/>
|
||||
<terminal x="0" orientation="n" y="-21"/>
|
||||
<terminal x="0" orientation="s" y="21"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,49 +1,50 @@
|
||||
<definition height="60" width="30" link_type="simple" hotspot_x="15" version="0.80" orientation="dyyy" type="element" hotspot_y="29">
|
||||
<uuid uuid="{d6d8ee59-febb-488b-bbdd-0ed42add31f0}"/>
|
||||
<definition version="0.80" hotspot_y="29" link_type="simple" hotspot_x="15" height="60" orientation="dyyy" width="40" type="element">
|
||||
<uuid uuid="{772378c8-5431-4771-aa5c-68801bc2d428}"/>
|
||||
<names>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="fr">XB4BVB5_ORANGE</name>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">ORANGE</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">SCHNEIDER</elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB5</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">SCHNEIDER</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">ORANGE</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="designation">XB4BVB5</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" y="-10" antialias="true"/>
|
||||
<line y1="-7.03" x1="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="-7.03" end1="none" antialias="false"/>
|
||||
<line y1="-7.03" x1="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="7.03" end1="none" antialias="false"/>
|
||||
<line y1="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<line y1="10" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<dynamic_text uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Halignment="AlignLeft" frame="false" x="15" Valignment="AlignTop" text_from="ElementInfo" y="-10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="6" rotation="0" text_width="-1">
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" antialias="true" diameter="20"/>
|
||||
<text x="10" color="#000000" y="20" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="24V"/>
|
||||
<line x1="7.03" y1="-7.03" end1="none" length1="1.5" x2="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" antialias="false"/>
|
||||
<line x1="-7.03" y1="-7.03" end1="none" length1="1.5" x2="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" antialias="false"/>
|
||||
<line x1="0" y1="-20" end1="none" length1="1.5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" antialias="false"/>
|
||||
<line x1="0" y1="10" end1="none" length1="1.5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" antialias="false"/>
|
||||
<dynamic_text x="15" text_from="ElementInfo" z="6" text_width="-1" y="-10" Halignment="AlignLeft" uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Valignment="AlignTop" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{df4063da-299b-43c6-87a3-87652ed379aa}" Halignment="AlignLeft" frame="false" x="5" Valignment="AlignTop" text_from="ElementInfo" y="5" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" z="7" rotation="0" text_width="-1">
|
||||
<dynamic_text x="5" text_from="ElementInfo" z="7" text_width="-1" y="5" Halignment="AlignLeft" uuid="{df4063da-299b-43c6-87a3-87652ed379aa}" Valignment="AlignTop" rotation="0" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" frame="false">
|
||||
<text>ORANGE</text>
|
||||
<info_name>description</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="-21" orientation="n"/>
|
||||
<terminal x="0" y="21" orientation="s"/>
|
||||
<terminal x="0" orientation="n" y="-21"/>
|
||||
<terminal x="0" orientation="s" y="21"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,49 +1,50 @@
|
||||
<definition height="60" width="30" link_type="simple" hotspot_x="15" version="0.80" orientation="dyyy" type="element" hotspot_y="29">
|
||||
<uuid uuid="{90649f61-25dc-4a02-9ae0-0a83d3fe1b06}"/>
|
||||
<definition version="0.80" hotspot_y="29" link_type="simple" hotspot_x="15" height="60" orientation="dyyy" width="40" type="element">
|
||||
<uuid uuid="{4c594b71-6c34-4754-9b1e-a24c10db3ef2}"/>
|
||||
<names>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="fr">XB4BVB6_BLEU</name>
|
||||
<name lang="pt">Lâmpada</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="it">Luce</name>
|
||||
<name lang="cs">Světlo</name>
|
||||
<name lang="ru">Лампа</name>
|
||||
<name lang="el">Λυχνία</name>
|
||||
<name lang="nl">Lamp</name>
|
||||
<name lang="de">Meldeleuchte</name>
|
||||
<name lang="en">Light</name>
|
||||
<name lang="pl">Lampa</name>
|
||||
<name lang="es">Lámpara</name>
|
||||
<name lang="ar">مصباح</name>
|
||||
<name lang="fr">XB4BVB6_BLEU</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">BLEU</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">SCHNEIDER</elementInformation>
|
||||
<elementInformation name="designation" show="1">XB4BVB6</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">SCHNEIDER</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">BLEU</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="designation">XB4BVB6</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team

|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" y="-10" antialias="true"/>
|
||||
<line y1="-7.03" x1="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="-7.03" end1="none" antialias="false"/>
|
||||
<line y1="-7.03" x1="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" length1="1.5" x2="7.03" end1="none" antialias="false"/>
|
||||
<line y1="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<line y1="10" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" length1="1.5" x2="0" end1="none" antialias="false"/>
|
||||
<dynamic_text uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Halignment="AlignLeft" frame="false" x="15" Valignment="AlignTop" text_from="ElementInfo" y="-10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="6" rotation="0" text_width="-1">
|
||||
<circle x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-10" antialias="true" diameter="20"/>
|
||||
<text x="10" color="#000000" y="20" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="24V"/>
|
||||
<line x1="7.03" y1="-7.03" end1="none" length1="1.5" x2="-7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" antialias="false"/>
|
||||
<line x1="-7.03" y1="-7.03" end1="none" length1="1.5" x2="7.03" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="7.03" length2="1.5" antialias="false"/>
|
||||
<line x1="0" y1="-20" end1="none" length1="1.5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="-10" length2="1.5" antialias="false"/>
|
||||
<line x1="0" y1="10" end1="none" length1="1.5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" y2="20" length2="1.5" antialias="false"/>
|
||||
<dynamic_text x="15" text_from="ElementInfo" z="6" text_width="-1" y="-10" Halignment="AlignLeft" uuid="{28bf9c47-da03-4675-b20f-2a17fecf9392}" Valignment="AlignTop" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{991a6341-0181-432d-bfe4-c3640b0adad5}" Halignment="AlignLeft" frame="false" x="6" Valignment="AlignTop" text_from="ElementInfo" y="6" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" z="7" rotation="0" text_width="-1">
|
||||
<dynamic_text x="6" text_from="ElementInfo" z="7" text_width="-1" y="6" Halignment="AlignLeft" uuid="{991a6341-0181-432d-bfe4-c3640b0adad5}" Valignment="AlignTop" rotation="0" font="MS Shell Dlg 2,4,-1,5,50,0,0,0,0,0,Normal" frame="false">
|
||||
<text>BLEU</text>
|
||||
<info_name>description</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" y="21" orientation="s"/>
|
||||
<terminal x="0" y="-21" orientation="n"/>
|
||||
<terminal x="0" orientation="s" y="21"/>
|
||||
<terminal x="0" orientation="n" y="-21"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
<definition link_type="simple" orientation="dyyy" width="40" hotspot_y="5" height="30" version="0.80" type="element" hotspot_x="14">
|
||||
<uuid uuid="{05a71d00-6012-4f87-a24a-1fde50b25f93}"/>
|
||||
<names>
|
||||
<name lang="pl">QAC22</name>
|
||||
<name lang="fr">QAC22 Sonde temperature Extérieure</name>
|
||||
<name lang="it">QAC22</name>
|
||||
<name lang="en">QAC22</name>
|
||||
<name lang="nl">QAC22</name>
|
||||
<name lang="es">QAC22</name>
|
||||
<name lang="el">QAC22</name>
|
||||
<name lang="cs">QAC22</name>
|
||||
<name lang="de">QAC22</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Sonde temperature Extérieure</elementInformation>
|
||||
<elementInformation name="designation" show="1">QAC22</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Siemens</elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text uuid="{0449173f-918a-47c4-9ab7-6689e6ae72b1}" frame="false" z="1" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" rotation="0" x="-7" y="-15.5">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="10" x1="-10" end2="none" length1="1.5" x2="-6" antialias="false" y1="10" length2="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line y2="10" x1="20" end2="none" length1="1.5" x2="16" antialias="false" y1="10" length2="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" width="20" height="10" x="-5" rx="0" ry="0" y="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon y2="20" y3="0" x1="-5" closed="false" x2="0" antialias="false" y1="20" x3="10" x4="15" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="0"/>
|
||||
<terminal orientation="w" x="-10" y="10"/>
|
||||
<terminal orientation="e" x="20" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,39 @@
|
||||
<definition link_type="simple" orientation="dyyy" width="40" hotspot_y="5" height="30" version="0.80" type="element" hotspot_x="14">
|
||||
<uuid uuid="{36f24492-adf6-4f57-b4fd-8f43ea0e80d3}"/>
|
||||
<names>
|
||||
<name lang="pl">QAD22</name>
|
||||
<name lang="fr">QAD22 Sonde à applique LG-Ni1000</name>
|
||||
<name lang="it">QAD22</name>
|
||||
<name lang="en">QAD22</name>
|
||||
<name lang="nl">QAD22</name>
|
||||
<name lang="es">QAD22</name>
|
||||
<name lang="el">QAD22</name>
|
||||
<name lang="cs">QAD22</name>
|
||||
<name lang="de">QAD22</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Sonde à applique LG-Ni1000</elementInformation>
|
||||
<elementInformation name="designation" show="1">QAD22</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Siemens</elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text uuid="{0449173f-918a-47c4-9ab7-6689e6ae72b1}" frame="false" z="1" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" rotation="0" x="-7" y="-15.5">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="10" x1="-10" end2="none" length1="1.5" x2="-6" antialias="false" y1="10" length2="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line y2="10" x1="20" end2="none" length1="1.5" x2="16" antialias="false" y1="10" length2="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" width="20" height="10" x="-5" rx="0" ry="0" y="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon y2="20" y3="0" x1="-5" closed="false" x2="0" antialias="false" y1="20" x3="10" x4="15" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="0"/>
|
||||
<terminal orientation="e" x="20" y="10"/>
|
||||
<terminal orientation="w" x="-10" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,39 @@
|
||||
<definition link_type="simple" orientation="dyyy" width="40" hotspot_y="5" height="30" version="0.80" type="element" hotspot_x="14">
|
||||
<uuid uuid="{e90cb320-9275-4340-9163-47ba4267b848}"/>
|
||||
<names>
|
||||
<name lang="pl">QAE2120.010</name>
|
||||
<name lang="fr">QAE2120.010 Sonde à plongeur</name>
|
||||
<name lang="it">QAE2120.010</name>
|
||||
<name lang="en">QAE2120.010</name>
|
||||
<name lang="nl">QAE2120.010</name>
|
||||
<name lang="es">QAE2120.010</name>
|
||||
<name lang="el">QAE2120.010</name>
|
||||
<name lang="cs">QAE2120.010</name>
|
||||
<name lang="de">QAE2120.010</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Sonde à plongeur LG-Ni1000</elementInformation>
|
||||
<elementInformation name="designation" show="1">QAE2120.010</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Siemens</elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text uuid="{0449173f-918a-47c4-9ab7-6689e6ae72b1}" frame="false" z="1" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop" rotation="0" x="-7" y="-15.5">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="10" x1="-10" end2="none" length1="1.5" x2="-6" antialias="false" y1="10" length2="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line y2="10" x1="20" end2="none" length1="1.5" x2="16" antialias="false" y1="10" length2="1.5" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect antialias="false" width="20" height="10" x="-5" rx="0" ry="0" y="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon y2="20" y3="0" x1="-5" closed="false" x2="0" antialias="false" y1="20" x3="10" x4="15" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="0"/>
|
||||
<terminal orientation="w" x="-10" y="10"/>
|
||||
<terminal orientation="e" x="20" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,37 +1,39 @@
|
||||
<definition hotspot_x="55" type="element" orientation="dyyy" height="90" hotspot_y="74" version="0.80" width="150" link_type="simple">
|
||||
<uuid uuid="{fe476995-8c9c-4d6b-b671-c308a5da695b}"/>
|
||||
<definition type="element" width="150" hotspot_y="69" link_type="simple" hotspot_x="55" height="80" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{3b90cdf6-8d46-4b10-930e-ccb5964c922e}"/>
|
||||
<names>
|
||||
<name lang="fr">Servomoteur Siemens 230V 3 POINTS</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">Siemens</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="description">Servo moteur 230V 3 Points</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="designation">SAS31</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Siemens</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">SAS31</elementInformation>
|
||||
<elementInformation name="description" show="1">Servo moteur 230V 3 Points</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>s.deffaux</informations>
|
||||
<description>
|
||||
<circle y="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="40" antialias="false" x="-30"/>
|
||||
<rect y="-65" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" x="-50" width="140" ry="0"/>
|
||||
<rect y="-55" height="50" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" x="-35" width="50" ry="0"/>
|
||||
<text y="-56" color="#000000" text="Y1" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-32" rotation="0"/>
|
||||
<text y="-56" color="#000000" text="Y2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="4" rotation="0"/>
|
||||
<text y="6" color="#000000" text="N" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-8" rotation="0"/>
|
||||
<text y="-26" color="#000000" text="M" font="Sans Serif,14,-1,5,50,0,0,0,0,0" x="-17" rotation="0"/>
|
||||
<line y2="-20" x2="0" x1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-55" x2="-20" x1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-60" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-55" x2="0" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-60" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-5" x2="-10" x1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-15" x2="0" x1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-15" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<terminal orientation="n" y="-65" x="0"/>
|
||||
<terminal orientation="n" y="-65" x="-20"/>
|
||||
<terminal orientation="s" y="5" x="-10"/>
|
||||
<circle x="-30" diameter="40" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-50"/>
|
||||
<rect x="-50" width="140" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="70" y="-65"/>
|
||||
<rect x="-35" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="50" y="-55"/>
|
||||
<text x="-32" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="Y1" color="#000000" y="-56"/>
|
||||
<text x="4" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="Y2" color="#000000" y="-56"/>
|
||||
<text x="-8" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" text="N" color="#000000" y="4"/>
|
||||
<text x="-17" font="Sans Serif,14,-1,5,50,0,0,0,0,0" rotation="0" text="M" color="#000000" y="-26"/>
|
||||
<line end2="none" x1="-20" y2="-20" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-20"/>
|
||||
<line end2="none" x1="-20" y2="-55" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="0" y2="-55" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-60"/>
|
||||
<line end2="none" x1="-10" y2="-5" antialias="false" x2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="-20" y2="-15" antialias="false" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-15"/>
|
||||
<dynamic_text x="35" z="13" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{71dd108f-a054-4991-94f6-8e023b46201d}" y="-35">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="-10" orientation="s" y="5"/>
|
||||
<terminal x="-20" orientation="n" y="-65"/>
|
||||
<terminal x="0" orientation="n" y="-65"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,50 +1,55 @@
|
||||
<definition hotspot_x="55" type="element" orientation="dyyy" height="90" hotspot_y="74" version="0.80" width="150" link_type="simple">
|
||||
<uuid uuid="{a5245235-ba5d-48f6-be5e-15034075fb1a}"/>
|
||||
<definition hotspot_x="55" type="element" hotspot_y="74" width="150" version="0.80" link_type="master" height="90" orientation="dyyy">
|
||||
<uuid uuid="{d39ff91e-0e2b-4526-8541-c467bbf2e829}"/>
|
||||
<names>
|
||||
<name lang="fr">Servomoteur Siemens 24V 0-10V</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">commutator</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">Siemens</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="description">Servo moteur</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="designation">SAS61</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Servo-moteur 24V 0/10V</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Siemens</elementInformation>
|
||||
<elementInformation name="designation" show="1">SAS61</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>s.deffaux</informations>
|
||||
<description>
|
||||
<circle y="-50" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="40" antialias="false" x="-30"/>
|
||||
<polygon x4="27" y2="5" x2="33" x5="27" y4="5" x1="27" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="5" x3="30" antialias="false" y3="11" y5="5"/>
|
||||
<rect y="-65" height="70" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" x="-50" width="140" ry="0"/>
|
||||
<rect y="-55" height="50" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" x="-35" width="80" ry="0"/>
|
||||
<text y="-57" color="#000000" text="G" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-19" rotation="0"/>
|
||||
<text y="-56" color="#000000" text="Y" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="35" rotation="0"/>
|
||||
<text y="4" color="#000000" text="G0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-24" rotation="0"/>
|
||||
<text y="-26" color="#000000" text="M" font="Sans Serif,14,-1,5,50,0,0,0,0,0" x="-17" rotation="0"/>
|
||||
<line y2="-20" x2="0" x1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-55" x2="-10" x1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-60" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-55" x2="30" x1="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-60" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-5" x2="-10" x1="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="0" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-15" x2="0" x1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-15" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="5" x2="30" x1="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-5" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<text y="5" color="#000000" text="U" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="35" rotation="0"/>
|
||||
<polygon x4="27" y2="-70" x2="33" x5="27" y4="-70" x1="27" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-70" x3="30" antialias="false" y3="-64" y5="-70"/>
|
||||
<rect y="-43" height="25" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" x="25" width="10" ry="0"/>
|
||||
<line y2="-44" x2="30" x1="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-49" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-12" x2="30" x1="30" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-17" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<line y2="-30" x2="25" x1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-30" antialias="false" end2="none" end1="none" length1="1.5" length2="1.5"/>
|
||||
<polygon x4="35" y2="-18" x2="25" x5="35" y4="-43" x1="35" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-43" x3="25" antialias="false" y3="-43" y5="-43"/>
|
||||
<text y="-10" color="#000000" text="0%" font="Sans Serif,3,-1,5,50,0,0,0,0,0" x="35" rotation="0"/>
|
||||
<text y="-45" color="#000000" text="100%" font="Sans Serif,3,-1,5,50,0,0,0,0,0" x="35" rotation="0"/>
|
||||
<text y="-55" color="#000000" text="0-10V" font="Sans Serif,4,-1,5,50,0,0,0,0,0" x="10" rotation="0"/>
|
||||
<terminal orientation="s" y="5" x="30"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="-50" diameter="40" x="-30" antialias="false"/>
|
||||
<polygon y1="5" style="line-style:normal;line-weight:normal;filling:black;color:black" y5="5" y3="11" x1="27" x3="30" x4="27" x2="33" x5="27" y2="5" y4="5" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" width="140" height="70" rx="0" y="-65" ry="0" x="-50" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" width="80" height="50" rx="0" y="-55" ry="0" x="-35" antialias="false"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="G" y="-57" color="#000000" rotation="0" x="-19"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="Y" y="-56" color="#000000" rotation="0" x="35"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="G0" y="4" color="#000000" rotation="0" x="-24"/>
|
||||
<text font="Sans Serif,14,-1,5,50,0,0,0,0,0" text="M" y="-26" color="#000000" rotation="0" x="-17"/>
|
||||
<line end2="none" y1="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" x2="0" length1="1.5" end1="none" y2="-20" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="-60" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" x2="-10" length1="1.5" end1="none" y2="-55" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="-60" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" x2="30" length1="1.5" end1="none" y2="-55" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-10" x2="-10" length1="1.5" end1="none" y2="-5" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" x2="0" length1="1.5" end1="none" y2="-15" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" x2="30" length1="1.5" end1="none" y2="5" length2="1.5" antialias="false"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="U" y="5" color="#000000" rotation="0" x="35"/>
|
||||
<polygon y1="-70" style="line-style:normal;line-weight:normal;filling:black;color:black" y5="-70" y3="-64" x1="27" x3="30" x4="27" x2="33" x5="27" y2="-70" y4="-70" antialias="false"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" width="10" height="25" rx="0" y="-43" ry="0" x="25" antialias="false"/>
|
||||
<line end2="none" y1="-49" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" x2="30" length1="1.5" end1="none" y2="-44" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="-17" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" x2="30" length1="1.5" end1="none" y2="-12" length2="1.5" antialias="false"/>
|
||||
<line end2="none" y1="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" x2="25" length1="1.5" end1="none" y2="-30" length2="1.5" antialias="false"/>
|
||||
<polygon y1="-43" style="line-style:normal;line-weight:normal;filling:black;color:black" y5="-43" y3="-43" x1="35" x3="25" x4="35" x2="25" x5="35" y2="-18" y4="-43" antialias="false"/>
|
||||
<text font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="0%" y="-10" color="#000000" rotation="0" x="35"/>
|
||||
<text font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="100%" y="-45" color="#000000" rotation="0" x="35"/>
|
||||
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="0-10V" y="-57.9265" color="#000000" rotation="0" x="12.7174"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" text_from="ElementInfo" frame="false" text_width="-1" y="-36" z="25" uuid="{b140ac8a-4981-42ed-a21e-cbe27a3c6e0f}" Valignment="AlignTop" Halignment="AlignLeft" rotation="0" x="56">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal orientation="n" y="-65" x="-10"/>
|
||||
<terminal orientation="n" y="-65" x="30"/>
|
||||
<terminal orientation="s" y="5" x="30"/>
|
||||
<terminal orientation="s" y="5" x="-10"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,177 +1,179 @@
|
||||
<definition type="element" height="360" hotspot_x="45" orientation="dyyy" version="0.80" width="90" hotspot_y="175" link_type="simple">
|
||||
<uuid uuid="{b0bdef0d-b69c-4cd3-8870-879d63d899ce}"/>
|
||||
<definition type="element" width="90" hotspot_y="175" link_type="simple" hotspot_x="45" height="360" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{6e31146e-7650-46d1-bc6c-86cc232cca70}"/>
|
||||
<names>
|
||||
<name lang="fr">16DI</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="description">Carte d'entrées digitale</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">16 DI</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Sofrel</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Sofrel</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1">16DI</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">16 DI</elementInformation>
|
||||
<elementInformation name="description" show="1">Carte d'entrées digitales</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>S.DEFFAUX</informations>
|
||||
<description>
|
||||
<rect rx="5" height="350" ry="5" antialias="false" width="80" y="-170" x="-40" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="60" ry="0" antialias="false" width="40" y="100" x="-20" style="line-style:normal;line-weight:normal;filling:green;color:black"/>
|
||||
<rect rx="0" height="250" ry="0" antialias="false" width="40" y="-160" x="-20" style="line-style:normal;line-weight:normal;filling:green;color:black"/>
|
||||
<circle antialias="true" y="-54" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-4" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-47.5" length2="1.5" x2="-5" x1="-10.5" y1="-52.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-154" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-34" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-84" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-54" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-124" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-64" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="66" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-94" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-124" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-114" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="26" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="6" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="-24" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="56" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="36" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="146" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-144" x="26" diameter="8" style="line-style:normal;line-weight:normal;filling:red;color:black"/>
|
||||
<circle antialias="true" y="16" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-104" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-14" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-4" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="6" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-74" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-24" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-94" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-84" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-34" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="26" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-77.5" length2="1.5" x2="-5" x1="-10.5" y1="-82.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-17.5" length2="1.5" x2="-5" x1="-10.5" y1="-22.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-7.5" length2="1.5" x2="-5" x1="-10.5" y1="-12.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-67.5" length2="1.5" x2="-5" x1="-10.5" y1="-72.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-97.5" length2="1.5" x2="-5" x1="-10.5" y1="-102.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="12.5" length2="1.5" x2="-5" x1="-10.5" y1="7.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="152.5" length2="1.5" x2="-5" x1="-10.5" y1="147.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="55" length2="1.5" x2="-20" x1="20" y1="55" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-27.5" length2="1.5" x2="-5" x1="-10.5" y1="-32.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-87.5" length2="1.5" x2="-5" x1="-10.5" y1="-92.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="32.5" length2="1.5" x2="-5" x1="-10.5" y1="27.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="2.5" length2="1.5" x2="-5" x1="-10.5" y1="-2.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="22.5" length2="1.5" x2="-5" x1="-10.5" y1="17.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="126" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="116" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-154" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="56" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="106" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="46" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="112.5" length2="1.5" x2="-5" x1="-10.5" y1="107.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="122.5" length2="1.5" x2="-5" x1="-10.5" y1="117.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-64" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="132.5" length2="1.5" x2="-5" x1="-10.5" y1="127.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-144" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-114" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="36" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="136" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-134" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="142.5" length2="1.5" x2="-5" x1="-10.5" y1="137.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="42.5" length2="1.5" x2="-5" x1="-10.5" y1="37.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="155" x="5" text="T+" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="115" x="0" text="GND" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-127.5" length2="1.5" x2="-5" x1="-10.5" y1="-132.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-137.5" length2="1.5" x2="-5" x1="-10.5" y1="-142.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="135" x="0" text="VRéf" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-57.5" length2="1.5" x2="-5" x1="-10.5" y1="-62.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-117.5" length2="1.5" x2="-5" x1="-10.5" y1="-122.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="145" x="5" text="T-" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="125" x="5" text="V+" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="52.5" length2="1.5" x2="-5" x1="-10.5" y1="47.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-107.5" length2="1.5" x2="-5" x1="-10.5" y1="-112.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-147.5" length2="1.5" x2="-5" x1="-10.5" y1="-152.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="62.5" length2="1.5" x2="-5" x1="-10.5" y1="57.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="76" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="66" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" y="-44" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="-37.5" length2="1.5" x2="-5" x1="-10.5" y1="-42.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="72.5" length2="1.5" x2="-5" x1="-10.5" y1="67.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="true" end1="none" y2="82.5" length2="1.5" x2="-5" x1="-10.5" y1="77.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="25" length2="1.5" x2="-20" x1="20" y1="25" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="83" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="-65" length2="1.5" x2="-20" x1="20" y1="-65" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="-5" length2="1.5" x2="-20" x1="20" y1="-5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="-35" length2="1.5" x2="-20" x1="20" y1="-35" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="false" y="76" x="-12" diameter="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="-17" x="5" text="7" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="43" x="5" text="3" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="63" x="5" text="2" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="33" x="5" text="4" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-129" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-105" x="5" text="13" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-115" x="5" text="14" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-97" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-137" x="5" text="15" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-77" x="5" text="11" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-87" x="5" text="12" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="13" x="5" text="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="73" x="5" text="1" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-27" x="5" text="8" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-66.45" x="6" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-7" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-45" x="5" text="9" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-37" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="3" x="5" text="6" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="23" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-57" x="5" text="10" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="53" x="5" text="C" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-145" x="5" text="16" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="-125" length2="1.5" x2="20" x1="-20" y1="-125" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="-95" length2="1.5" x2="-20" x1="20" y1="-95" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="175" x="-15" text="16 DI" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<terminal orientation="w" y="-20" x="-10"/>
|
||||
<terminal orientation="w" y="-110" x="-10"/>
|
||||
<terminal orientation="w" y="20" x="-10"/>
|
||||
<terminal orientation="w" y="-50" x="-10"/>
|
||||
<terminal orientation="w" y="50" x="-10"/>
|
||||
<terminal orientation="w" y="60" x="-10"/>
|
||||
<terminal orientation="w" y="-130" x="-10"/>
|
||||
<terminal orientation="w" y="-10" x="-10"/>
|
||||
<terminal orientation="w" y="-150" x="-10"/>
|
||||
<terminal orientation="w" y="-130" x="-10"/>
|
||||
<terminal orientation="e" y="130" x="-4"/>
|
||||
<terminal orientation="e" y="120" x="-4"/>
|
||||
<terminal orientation="w" y="-100" x="-10"/>
|
||||
<terminal orientation="w" y="140" x="-12"/>
|
||||
<terminal orientation="w" y="-150" x="-10"/>
|
||||
<terminal orientation="w" y="130" x="-11"/>
|
||||
<terminal orientation="e" y="150" x="-4"/>
|
||||
<terminal orientation="w" y="80" x="-10"/>
|
||||
<terminal orientation="w" y="-60" x="-10"/>
|
||||
<terminal orientation="w" y="-70" x="-10"/>
|
||||
<terminal orientation="e" y="140" x="-4"/>
|
||||
<terminal orientation="w" y="-30" x="-10"/>
|
||||
<terminal orientation="w" y="-90" x="-10"/>
|
||||
<terminal orientation="w" y="110" x="-12"/>
|
||||
<terminal orientation="w" y="-60" x="-10"/>
|
||||
<terminal orientation="w" y="-120" x="-10"/>
|
||||
<terminal orientation="w" y="30" x="-10"/>
|
||||
<terminal orientation="w" y="40" x="-10"/>
|
||||
<terminal orientation="e" y="110" x="-4"/>
|
||||
<terminal orientation="w" y="-120" x="-10"/>
|
||||
<terminal orientation="w" y="0" x="-10"/>
|
||||
<terminal orientation="w" y="10" x="-10"/>
|
||||
<terminal orientation="w" y="-110" x="-10"/>
|
||||
<terminal orientation="w" y="150" x="-12"/>
|
||||
<terminal orientation="w" y="120" x="-12"/>
|
||||
<terminal orientation="w" y="70" x="-10"/>
|
||||
<terminal orientation="w" y="-80" x="-10"/>
|
||||
<terminal orientation="w" y="-40" x="-10"/>
|
||||
<terminal orientation="w" y="-140" x="-10"/>
|
||||
<terminal orientation="w" y="-140" x="-10"/>
|
||||
<rect x="-40" width="80" antialias="false" rx="5" ry="5" style="line-style:normal;line-weight:normal;filling:black;color:black" height="350" y="-170"/>
|
||||
<rect x="-20" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:black" height="60" y="100"/>
|
||||
<rect x="-20" width="40" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:black" height="250" y="-160"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-54"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-4"/>
|
||||
<line end2="none" x1="-10.5" y2="-47.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-52.5"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-154"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-34"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-84"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-54"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-124"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-64"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="66"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-94"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-124"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-114"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="26"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="6"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-24"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="56"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="36"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="146"/>
|
||||
<circle x="26" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:red;color:black" y="-144"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="16"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-104"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-14"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-4"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="6"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-74"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-24"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-94"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-84"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-34"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="26"/>
|
||||
<line end2="none" x1="-10.5" y2="-77.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-82.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-17.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-22.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-7.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-12.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-67.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-72.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-97.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-102.5"/>
|
||||
<line end2="none" x1="-10.5" y2="12.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="7.5"/>
|
||||
<line end2="none" x1="-10.5" y2="152.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="147.5"/>
|
||||
<line end2="none" x1="20" y2="55" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="55"/>
|
||||
<line end2="none" x1="-10.5" y2="-27.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-32.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-87.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-92.5"/>
|
||||
<line end2="none" x1="-10.5" y2="32.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="27.5"/>
|
||||
<line end2="none" x1="-10.5" y2="2.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-2.5"/>
|
||||
<line end2="none" x1="-10.5" y2="22.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="17.5"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="126"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="116"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-154"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="56"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="106"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="46"/>
|
||||
<line end2="none" x1="-10.5" y2="112.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="107.5"/>
|
||||
<line end2="none" x1="-10.5" y2="122.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="117.5"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-64"/>
|
||||
<line end2="none" x1="-10.5" y2="132.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="127.5"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-144"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-114"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="36"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="136"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-134"/>
|
||||
<line end2="none" x1="-10.5" y2="142.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="137.5"/>
|
||||
<line end2="none" x1="-10.5" y2="42.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="37.5"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="T+" color="#000000" y="155"/>
|
||||
<text x="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="GND" color="#000000" y="115"/>
|
||||
<line end2="none" x1="-10.5" y2="-127.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-132.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-137.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-142.5"/>
|
||||
<text x="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="VRéf" color="#000000" y="135"/>
|
||||
<line end2="none" x1="-10.5" y2="-57.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-62.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-117.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-122.5"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="T-" color="#000000" y="145"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="V+" color="#000000" y="125"/>
|
||||
<line end2="none" x1="-10.5" y2="52.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="47.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-107.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-112.5"/>
|
||||
<line end2="none" x1="-10.5" y2="-147.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-152.5"/>
|
||||
<line end2="none" x1="-10.5" y2="62.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="57.5"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="76"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="66"/>
|
||||
<circle x="-12" diameter="8" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-44"/>
|
||||
<line end2="none" x1="-10.5" y2="-37.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-42.5"/>
|
||||
<line end2="none" x1="-10.5" y2="72.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="67.5"/>
|
||||
<line end2="none" x1="-10.5" y2="82.5" antialias="true" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="77.5"/>
|
||||
<line end2="none" x1="20" y2="25" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="25"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="83"/>
|
||||
<line end2="none" x1="20" y2="-65" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-65"/>
|
||||
<line end2="none" x1="20" y2="-5" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-5"/>
|
||||
<line end2="none" x1="20" y2="-35" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-35"/>
|
||||
<circle x="-12" diameter="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="76"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="7" color="#000000" y="-17"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="43"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="63"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="33"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="-129"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="13" color="#000000" y="-105"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="14" color="#000000" y="-115"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="-97"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="15" color="#000000" y="-137"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="11" color="#000000" y="-77"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="12" color="#000000" y="-87"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="13"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="73"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="8" color="#000000" y="-27"/>
|
||||
<text x="6" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="-66.45"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="-7"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="9" color="#000000" y="-45"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="-37"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="3"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="23"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="10" color="#000000" y="-57"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="53"/>
|
||||
<text x="5" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="16" color="#000000" y="-145"/>
|
||||
<line end2="none" x1="-20" y2="-125" antialias="false" x2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-125"/>
|
||||
<line end2="none" x1="20" y2="-95" antialias="false" x2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="-95"/>
|
||||
<text x="-15" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="16 DI" color="#ffffff" y="175"/>
|
||||
<dynamic_text x="-15" z="116" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{5b334450-44d0-4139-8d14-26903708cc2d}" y="-195">
|
||||
<text>16DI</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="-10" orientation="w" y="-50"/>
|
||||
<terminal x="-10" orientation="w" y="20"/>
|
||||
<terminal x="-10" orientation="w" y="60"/>
|
||||
<terminal x="-10" orientation="w" y="-110"/>
|
||||
<terminal x="-10" orientation="w" y="50"/>
|
||||
<terminal x="-10" orientation="w" y="-20"/>
|
||||
<terminal x="-10" orientation="w" y="-130"/>
|
||||
<terminal x="-10" orientation="w" y="-10"/>
|
||||
<terminal x="-10" orientation="w" y="-150"/>
|
||||
<terminal x="-10" orientation="w" y="-130"/>
|
||||
<terminal x="-4" orientation="e" y="130"/>
|
||||
<terminal x="-4" orientation="e" y="120"/>
|
||||
<terminal x="-10" orientation="w" y="-100"/>
|
||||
<terminal x="-10" orientation="w" y="-90"/>
|
||||
<terminal x="-12" orientation="w" y="150"/>
|
||||
<terminal x="-10" orientation="w" y="70"/>
|
||||
<terminal x="-4" orientation="e" y="150"/>
|
||||
<terminal x="-10" orientation="w" y="10"/>
|
||||
<terminal x="-12" orientation="w" y="120"/>
|
||||
<terminal x="-10" orientation="w" y="-60"/>
|
||||
<terminal x="-10" orientation="w" y="-140"/>
|
||||
<terminal x="-10" orientation="w" y="40"/>
|
||||
<terminal x="-10" orientation="w" y="0"/>
|
||||
<terminal x="-10" orientation="w" y="-30"/>
|
||||
<terminal x="-10" orientation="w" y="-70"/>
|
||||
<terminal x="-10" orientation="w" y="-120"/>
|
||||
<terminal x="-10" orientation="w" y="-80"/>
|
||||
<terminal x="-10" orientation="w" y="-140"/>
|
||||
<terminal x="-10" orientation="w" y="30"/>
|
||||
<terminal x="-10" orientation="w" y="-60"/>
|
||||
<terminal x="-10" orientation="w" y="-40"/>
|
||||
<terminal x="-4" orientation="e" y="110"/>
|
||||
<terminal x="-12" orientation="w" y="110"/>
|
||||
<terminal x="-10" orientation="w" y="80"/>
|
||||
<terminal x="-10" orientation="w" y="-120"/>
|
||||
<terminal x="-10" orientation="w" y="-110"/>
|
||||
<terminal x="-12" orientation="w" y="140"/>
|
||||
<terminal x="-10" orientation="w" y="-150"/>
|
||||
<terminal x="-11" orientation="w" y="130"/>
|
||||
<terminal x="-4" orientation="e" y="140"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,178 +1,182 @@
|
||||
<definition type="element" height="170" hotspot_x="4" orientation="dyyy" version="0.80" width="80" hotspot_y="5" link_type="simple">
|
||||
<uuid uuid="{19790336-4775-4bf0-9c22-76d4bea98524}"/>
|
||||
<definition type="element" width="80" hotspot_y="35" link_type="simple" hotspot_x="4" height="200" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{007cd236-b3b7-4114-9869-58f1dc955e8d}"/>
|
||||
<names>
|
||||
<name lang="fr">4 AI</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="description">Carte d'entrées analogiques</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">4-Ai</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="label">4-AI</elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Sofrel</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Sofrel</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1">4-AI</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">4-Ai</elementInformation>
|
||||
<elementInformation name="description" show="1">Carte d'entrées analogiques</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>s.deffaux</informations>
|
||||
<description>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3.01939" y="7" x="38.2803" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3.01939" y="7" x="34.2544" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="7" x="22" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3.01939" y="7" x="42.3061" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="8" ry="0" antialias="false" width="3" y="14" x="26" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="8" ry="0" antialias="false" width="3.01939" y="14" x="34.2544" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="8" ry="0" antialias="false" width="3.01" y="14" x="22" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3.01939" y="7" x="42.3061" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="47" x="41" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="87" x="41" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="127.5" x="41.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="135" x="41.5" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="54.5" x="41" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="94.5" x="41" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="87" x="37" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="47" x="37" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="127.5" x="37.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="47" x="33" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="87" x="33" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="127.5" x="33.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="94.5" x="33" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="54.5" x="33" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="135" x="33.5" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="94.5" x="25" style="line-style:normal;line-weight:none;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="135" x="25.5" style="line-style:normal;line-weight:none;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="54.5" x="25" style="line-style:normal;line-weight:none;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="47" x="37" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="87" x="37" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="8" ry="0" antialias="false" width="3.01939" y="14" x="38.2803" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="44" x="29.5" text="C" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="84" x="29.5" text="C" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="127.5" x="37.5" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="44" x="21.5" text="A" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="84" x="21.5" text="A" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="44" x="41.5" text="F" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="4" x="31" text="C" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="84" x="41.5" text="F" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="110" x="60" text="2A
" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="70" x="60" text="3A
" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="47" x="29" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="87" x="29" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="84" x="33.5" text="D" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="44" x="33.5" text="D" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="44" x="25.5" text="B" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="84" x="25.5" text="B" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="4" x="23" text="A" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="116" x="31" text="G" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="75" x="35" text="G" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="124" x="30" text="C" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="84" x="37.5" text="E" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="44" x="37.5" text="E" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="84" x="12" text="H" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="44" x="12" text="H" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="4" x="43" text="F" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="105" x="33.5" text="4" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="33.5" text="4" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="87" x="25" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="47" x="25" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="105" x="21.5" text="1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="21.5" text="1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="105" x="29.5" text="3" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="124" x="22" text="A" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="29.5" text="3" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="25.5" text="2" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="105" x="25.5" text="2" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="41.5" text="6" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="105" x="41.5" text="6" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="37.5" text="5" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="105" x="37.5" text="5" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="80" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="40" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="90" x="60" text="2B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="50" x="60" text="3B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="65" x="5" text="B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="105" x="4.5" text="B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="80" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="40" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="124" x="42" text="F" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="45" x="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="85" x="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="30" x="60" text="4A" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="92" x="4.5" text="A" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="52" x="5" text="A" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="55" x="10" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="95" x="10" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3.01184" y="7" x="30.1518" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="112" x="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="72" x="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="72" x="9.5" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="112" x="9.5" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="21" ry="0" antialias="false" width="27" y="85" x="19" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="21" ry="0" antialias="false" width="27" y="45" x="19" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="4" x="35" text="D" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="47" x="21" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="87" x="21" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="4" x="27" text="B" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="87" x="29" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="47" x="29" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="94.5" x="21" style="line-style:normal;line-weight:none;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="54.5" x="21" style="line-style:normal;line-weight:none;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="36" x="32" text="G" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="4" x="39" text="E" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="4" x="12" text="H" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="25" x="35.2609" text="4" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="7" x="26" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="150.5" x="59.5" text="1A
" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="25" x="22" text="1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="127.5" x="29.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="25" x="31.1558" text="3" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="25" x="26.136" text="2" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="124" x="34" text="D" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="25" x="43.3126" text="6" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="25" x="39.2867" text="5" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="0" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="124" x="26" text="B" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="156.5" x="31.5" text="G" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="10" x="59.416" text="4B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="25" x="5" text="B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="124" x="38" text="E" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="0" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="124" x="11.17" text="H" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="5" x="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="10" x="5" text="A" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="34" text="4" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="15" x="10" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="32" x="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="127.5" x="25.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10.0646" y="32" x="8.5896" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="27" y="5" x="20" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="22" text="1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="8" ry="0" antialias="false" width="3.01184" y="14" x="30.1518" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="30" text="3" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="26" text="2" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="42" text="6" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="38" text="5" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="120" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="130.5" x="59.5" text="1B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="145.5" x="5" text="B" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="120" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="125.5" x="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="132.5" x="5" text="A" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="135.5" x="9.5" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="152" x="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="152" x="9.5" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="21" ry="0" antialias="false" width="27" y="125.5" x="19.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="15" ry="0" antialias="false" width="3" y="127.5" x="21.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="127.5" x="29.5" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<rect rx="0" height="7.5" ry="0" antialias="false" width="3" y="135" x="21.5" style="line-style:normal;line-weight:none;filling:black;color:black"/>
|
||||
<terminal orientation="e" y="50" x="69.5"/>
|
||||
<terminal orientation="e" y="10" x="70"/>
|
||||
<terminal orientation="e" y="30" x="70"/>
|
||||
<terminal orientation="e" y="130" x="69.5"/>
|
||||
<terminal orientation="e" y="150" x="69.5"/>
|
||||
<terminal orientation="e" y="70" x="69.5"/>
|
||||
<terminal orientation="e" y="110" x="69.5"/>
|
||||
<terminal orientation="e" y="90" x="69.5"/>
|
||||
<rect x="38.2803" width="3.01939" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="7"/>
|
||||
<text x="5.45433" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="CARTE AO" color="#000000" y="-16.0774"/>
|
||||
<rect x="34.2544" width="3.01939" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="7"/>
|
||||
<text x="22.3236" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="S550" color="#000000" y="-4.32019"/>
|
||||
<rect x="22" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="7"/>
|
||||
<rect x="42.3061" width="3.01939" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="7"/>
|
||||
<rect x="26" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="8" y="14"/>
|
||||
<rect x="34.2544" width="3.01939" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="8" y="14"/>
|
||||
<rect x="22" width="3.01" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="8" y="14"/>
|
||||
<rect x="42.3061" width="3.01939" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="7"/>
|
||||
<rect x="41" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="47"/>
|
||||
<rect x="41" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="87"/>
|
||||
<rect x="41.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="127.5"/>
|
||||
<rect x="41.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="135"/>
|
||||
<rect x="41" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="54.5"/>
|
||||
<rect x="41" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="94.5"/>
|
||||
<rect x="37" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="87"/>
|
||||
<rect x="37" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="47"/>
|
||||
<rect x="37.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="127.5"/>
|
||||
<rect x="33" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="47"/>
|
||||
<rect x="33" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="87"/>
|
||||
<rect x="33.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="127.5"/>
|
||||
<rect x="33" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="94.5"/>
|
||||
<rect x="33" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="54.5"/>
|
||||
<rect x="33.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="135"/>
|
||||
<rect x="25" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:none;filling:black;color:black" height="7.5" y="94.5"/>
|
||||
<rect x="25.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:none;filling:black;color:black" height="7.5" y="135"/>
|
||||
<rect x="25" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:none;filling:black;color:black" height="7.5" y="54.5"/>
|
||||
<rect x="37" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="47"/>
|
||||
<rect x="37" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="87"/>
|
||||
<rect x="38.2803" width="3.01939" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="8" y="14"/>
|
||||
<text x="29.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="44"/>
|
||||
<text x="29.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="84"/>
|
||||
<rect x="37.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="127.5"/>
|
||||
<text x="21.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="44"/>
|
||||
<text x="21.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="84"/>
|
||||
<text x="41.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="F" color="#000000" y="44"/>
|
||||
<text x="31" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="4"/>
|
||||
<text x="41.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="F" color="#000000" y="84"/>
|
||||
<text x="60" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="2A
" color="#000000" y="110"/>
|
||||
<text x="60" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="3A
" color="#000000" y="70"/>
|
||||
<rect x="29" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="47"/>
|
||||
<rect x="29" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="87"/>
|
||||
<text x="33.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="D" color="#000000" y="84"/>
|
||||
<text x="33.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="D" color="#000000" y="44"/>
|
||||
<text x="25.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="44"/>
|
||||
<text x="25.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="84"/>
|
||||
<text x="23" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="4"/>
|
||||
<text x="31" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="G" color="#000000" y="116"/>
|
||||
<text x="35" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="G" color="#000000" y="75"/>
|
||||
<text x="30" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="C" color="#000000" y="124"/>
|
||||
<text x="37.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="E" color="#000000" y="84"/>
|
||||
<text x="37.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="E" color="#000000" y="44"/>
|
||||
<text x="12" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="H" color="#000000" y="84"/>
|
||||
<text x="12" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="H" color="#000000" y="44"/>
|
||||
<text x="43" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="F" color="#000000" y="4"/>
|
||||
<text x="33.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="105"/>
|
||||
<text x="33.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="65"/>
|
||||
<rect x="25" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="87"/>
|
||||
<rect x="25" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="47"/>
|
||||
<text x="21.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="105"/>
|
||||
<text x="21.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="65"/>
|
||||
<text x="29.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="105"/>
|
||||
<text x="22" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="124"/>
|
||||
<text x="29.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="65"/>
|
||||
<text x="25.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="65"/>
|
||||
<text x="25.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="105"/>
|
||||
<text x="41.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="65"/>
|
||||
<text x="41.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="105"/>
|
||||
<text x="37.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="65"/>
|
||||
<text x="37.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="105"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="80"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="40"/>
|
||||
<text x="60" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="2B" color="#000000" y="90"/>
|
||||
<text x="60" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="3B" color="#000000" y="50"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="65"/>
|
||||
<text x="4.5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="105"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="80"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="40"/>
|
||||
<text x="42" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="F" color="#000000" y="124"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="45"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="85"/>
|
||||
<text x="60" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="4A" color="#000000" y="30"/>
|
||||
<text x="4.5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="92"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="52"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="55"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="95"/>
|
||||
<rect x="30.1518" width="3.01184" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="7"/>
|
||||
<rect x="9.5" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="112"/>
|
||||
<rect x="10" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="72"/>
|
||||
<rect x="9.5" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="72"/>
|
||||
<rect x="9.5" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="112"/>
|
||||
<rect x="19" width="27" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="21" y="85"/>
|
||||
<rect x="19" width="27" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="21" y="45"/>
|
||||
<text x="35" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="D" color="#000000" y="4"/>
|
||||
<rect x="21" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="47"/>
|
||||
<rect x="21" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="87"/>
|
||||
<text x="27" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="4"/>
|
||||
<rect x="29" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="87"/>
|
||||
<rect x="29" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="47"/>
|
||||
<rect x="21" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:none;filling:black;color:black" height="7.5" y="94.5"/>
|
||||
<rect x="21" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:none;filling:black;color:black" height="7.5" y="54.5"/>
|
||||
<text x="32" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="G" color="#000000" y="36"/>
|
||||
<text x="39" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="E" color="#000000" y="4"/>
|
||||
<text x="12" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="H" color="#000000" y="4"/>
|
||||
<text x="35.2609" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="25"/>
|
||||
<rect x="26" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="7"/>
|
||||
<text x="59.5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="1A
" color="#000000" y="150.5"/>
|
||||
<text x="22" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="25"/>
|
||||
<rect x="29.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="127.5"/>
|
||||
<text x="31.1558" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="25"/>
|
||||
<text x="26.136" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="25"/>
|
||||
<text x="34" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="D" color="#000000" y="124"/>
|
||||
<text x="43.3126" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="25"/>
|
||||
<text x="39.2867" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="25"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="0"/>
|
||||
<text x="26" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="124"/>
|
||||
<text x="31.5" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="G" color="#000000" y="156.5"/>
|
||||
<text x="59.416" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="4B" color="#000000" y="10"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="25"/>
|
||||
<text x="38" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="E" color="#000000" y="124"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="0"/>
|
||||
<text x="11.17" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="H" color="#000000" y="124"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="5"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="10"/>
|
||||
<text x="34" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="4" color="#000000" y="145.5"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="15"/>
|
||||
<rect x="9.5" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="32"/>
|
||||
<rect x="25.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="127.5"/>
|
||||
<rect x="8.5896" width="10.0646" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="32"/>
|
||||
<rect x="20" width="27" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="20" y="5"/>
|
||||
<text x="22" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="1" color="#000000" y="145.5"/>
|
||||
<rect x="30.1518" width="3.01184" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="8" y="14"/>
|
||||
<text x="30" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="3" color="#000000" y="145.5"/>
|
||||
<text x="26" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="2" color="#000000" y="145.5"/>
|
||||
<text x="42" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="6" color="#000000" y="145.5"/>
|
||||
<text x="38" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" text="5" color="#000000" y="145.5"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="120"/>
|
||||
<text x="59.5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="1B" color="#000000" y="130.5"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="145.5"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="120"/>
|
||||
<rect x="9.5" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="125.5"/>
|
||||
<text x="5" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="132.5"/>
|
||||
<rect x="9.5" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="135.5"/>
|
||||
<rect x="9.5" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="152"/>
|
||||
<rect x="9.5" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="152"/>
|
||||
<rect x="19.5" width="27" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="21" y="125.5"/>
|
||||
<rect x="21.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" height="15" y="127.5"/>
|
||||
<rect x="29.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:black;color:black" height="7.5" y="127.5"/>
|
||||
<rect x="21.5" width="3" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:none;filling:black;color:black" height="7.5" y="135"/>
|
||||
<dynamic_text x="20" z="149" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{8657c0ee-49f9-445f-9272-149d9ea58486}" y="170">
|
||||
<text>4-AI</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="69.5" orientation="e" y="70"/>
|
||||
<terminal x="70" orientation="e" y="30"/>
|
||||
<terminal x="69.5" orientation="e" y="110"/>
|
||||
<terminal x="69.5" orientation="e" y="90"/>
|
||||
<terminal x="69.5" orientation="e" y="50"/>
|
||||
<terminal x="70" orientation="e" y="10"/>
|
||||
<terminal x="69.5" orientation="e" y="150"/>
|
||||
<terminal x="69.5" orientation="e" y="130"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,69 +1,71 @@
|
||||
<definition type="element" height="230" hotspot_x="4" orientation="dyyy" version="0.80" width="80" hotspot_y="33" link_type="simple">
|
||||
<uuid uuid="{42ea2aaa-d3f2-4fd6-9d45-4bd354ae1481}"/>
|
||||
<definition type="element" width="80" hotspot_y="33" link_type="simple" hotspot_x="4" height="230" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{77b726cc-9825-47ef-9422-11ac92156ff7}"/>
|
||||
<names>
|
||||
<name lang="fr">Sofrel 4 AO</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="description">Cartes de sorties analoqigue</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">4-AO</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Sofrel</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Sofrel</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1">4-AO</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">4-AO</elementInformation>
|
||||
<elementInformation name="description" show="1">Cartes de sorties analoqigue</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>S.Deffaux</informations>
|
||||
<description>
|
||||
<rect rx="0" height="190" ry="0" antialias="false" width="70" y="0" x="0" style="line-style:normal;line-weight:normal;filling:green;color:black"/>
|
||||
<text color="#000000" rotation="0" y="140" x="55" text="2A
" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="100" x="55" text="3A
" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="110" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="70" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="120" x="55" text="2B" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="80" x="55" text="3B" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="95" x="5" text="B" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="135" x="5" text="B" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="110" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="70" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="75" x="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="115" x="9.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="60" x="55" text="4A" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="122" x="5" text="A" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="82" x="5" text="A" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="85" x="9.5" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="125" x="9.5" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="180" x="55" text="1A
" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="30" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="40" x="55" text="4B" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="55" x="5.5" text="B" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="30" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="35" x="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="42" x="5.5" text="A" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="4" y="35" x="10" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="1" height="40" ry="0" antialias="false" width="20" y="150" x="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="160" x="55" text="1B" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="175" x="5.5" text="B" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="0" height="40" ry="0" antialias="false" width="50" y="150" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="20" ry="0" antialias="false" width="5" y="155" x="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="162" x="5.5" text="A" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="5" y="165" x="10" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="30" ry="0" antialias="false" width="70" y="0" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="7" x="11" text="Réglage sortie" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="19" x="10" text="A=0 (4)-20mA" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="29" x="10" text="B=0-10V" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="-15" x="5" text="CARTE AO" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="-4" x="22" text="S550" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<terminal orientation="e" y="120" x="70"/>
|
||||
<terminal orientation="e" y="160" x="70"/>
|
||||
<terminal orientation="e" y="100" x="70"/>
|
||||
<terminal orientation="e" y="140" x="70"/>
|
||||
<terminal orientation="e" y="40" x="70"/>
|
||||
<terminal orientation="e" y="80" x="70"/>
|
||||
<terminal orientation="e" y="180" x="70"/>
|
||||
<terminal orientation="e" y="60" x="70"/>
|
||||
<rect x="0" width="70" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:green;color:black" height="190" y="0"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="2A
" color="#000000" y="140"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="3A
" color="#000000" y="100"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="110"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="70"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="2B" color="#000000" y="120"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="3B" color="#000000" y="80"/>
|
||||
<text x="5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="B" color="#000000" y="95"/>
|
||||
<text x="5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="B" color="#000000" y="135"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="110"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="70"/>
|
||||
<rect x="9.5" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="75"/>
|
||||
<rect x="9.5" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="115"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="4A" color="#000000" y="60"/>
|
||||
<text x="5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="A" color="#000000" y="122"/>
|
||||
<text x="5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="A" color="#000000" y="82"/>
|
||||
<rect x="9.5" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="85"/>
|
||||
<rect x="9.5" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="125"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="1A
" color="#000000" y="180"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="30"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="4B" color="#000000" y="40"/>
|
||||
<text x="5.5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="B" color="#000000" y="55"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="30"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="35"/>
|
||||
<text x="5.5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="A" color="#000000" y="42"/>
|
||||
<rect x="10" width="4" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="35"/>
|
||||
<rect x="50" width="20" antialias="false" rx="1" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="150"/>
|
||||
<text x="55" font="MS Shell Dlg 2,6,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="1B" color="#000000" y="160"/>
|
||||
<text x="5.5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="B" color="#000000" y="175"/>
|
||||
<rect x="0" width="50" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="40" y="150"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="20" y="155"/>
|
||||
<text x="5.5" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="A" color="#000000" y="162"/>
|
||||
<rect x="10" width="5" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="10" y="165"/>
|
||||
<rect x="0" width="70" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="30" y="0"/>
|
||||
<text x="11" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="Réglage sortie" color="#000000" y="7"/>
|
||||
<text x="10" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="A=0 (4)-20mA" color="#000000" y="19"/>
|
||||
<text x="10" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="B=0-10V" color="#000000" y="29"/>
|
||||
<text x="5" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="CARTE AO" color="#000000" y="-15"/>
|
||||
<text x="22" font="MS Shell Dlg 2,9,-1,5,75,0,0,0,0,0,Gras" rotation="0" text="S550" color="#000000" y="-4"/>
|
||||
<dynamic_text x="20" z="40" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{15f055ce-6793-445f-87e7-2c71c48009e0}" y="195">
|
||||
<text>4-AO</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="70" orientation="e" y="40"/>
|
||||
<terminal x="70" orientation="e" y="60"/>
|
||||
<terminal x="70" orientation="e" y="120"/>
|
||||
<terminal x="70" orientation="e" y="100"/>
|
||||
<terminal x="70" orientation="e" y="80"/>
|
||||
<terminal x="70" orientation="e" y="160"/>
|
||||
<terminal x="70" orientation="e" y="180"/>
|
||||
<terminal x="70" orientation="e" y="140"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,80 +1,82 @@
|
||||
<definition type="element" height="160" hotspot_x="5" orientation="dyyy" version="0.80" width="410" hotspot_y="4" link_type="simple">
|
||||
<uuid uuid="{2be33d3f-676b-4bf4-9873-2d1566a1ab61}"/>
|
||||
<definition type="element" width="410" hotspot_y="4" link_type="simple" hotspot_x="5" height="160" orientation="dyyy" version="0.80">
|
||||
<uuid uuid="{cda7b53f-89a5-49bb-91f6-587b7f7f9016}"/>
|
||||
<names>
|
||||
<name lang="en">Board 4DO</name>
|
||||
<name lang="it">Scheda 4DO</name>
|
||||
<name lang="fr">Carte 4 DO</name>
|
||||
<name lang="it">Scheda 4DO</name>
|
||||
<name lang="en">Board 4DO</name>
|
||||
<name lang="es">Tarjeta 4DO</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description">Carte de sortie digitale</elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">4-DO</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Sofrel</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Sofrel</elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1">4-DO</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">4-DO</elementInformation>
|
||||
<elementInformation name="description" show="1">Carte de sorties digitales</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text text_from="ElementInfo" uuid="{a1ebbbc9-7cf5-454a-b0fa-22d962a1561a}" rotation="0" Valignment="AlignTop" frame="false" y="30" x="440" text_width="-1" z="1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<dynamic_text x="440" z="1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{a1ebbbc9-7cf5-454a-b0fa-22d962a1561a}" y="30">
|
||||
<text>4-DO</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="102.95" x="110" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="102.95" x="290" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="103" x="46" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="102.95" x="230" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="20" y="102.95" x="170" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="102.95" x="110" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="102.95" x="290" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="102.95" x="170" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="102.95" x="230" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="140" x="255" text="4B" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="5" ry="0" antialias="false" width="10" y="103" x="46" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<text color="#000000" rotation="0" y="140" x="320" text="DB" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="172" text="A" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="290" text="DA" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.7" x="48" text="A" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="112" text="A" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="292" text="A" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="232" text="A" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="184" text="B" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="244" text="B" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="304" text="B" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.7" x="60" text="B" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="99.65" x="124" text="B" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="195" text="3B" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text text_from="UserText" uuid="{03c9655f-539b-46ab-8f40-b86905aa1ec8}" rotation="0" Valignment="AlignTop" frame="false" y="0" x="380" text_width="-1" z="27" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" Halignment="AlignLeft">
|
||||
<rect x="110" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="102.95"/>
|
||||
<rect x="290" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="102.95"/>
|
||||
<rect x="46" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="103"/>
|
||||
<rect x="230" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="102.95"/>
|
||||
<rect x="170" width="20" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" y="102.95"/>
|
||||
<rect x="110" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="102.95"/>
|
||||
<rect x="290" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="102.95"/>
|
||||
<rect x="170" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="102.95"/>
|
||||
<rect x="230" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="102.95"/>
|
||||
<text x="255" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="4B" color="#000000" y="140"/>
|
||||
<rect x="46" width="10" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" height="5" y="103"/>
|
||||
<text x="320" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="DB" color="#000000" y="140"/>
|
||||
<text x="172" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="99.65"/>
|
||||
<text x="290" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="DA" color="#000000" y="140"/>
|
||||
<text x="48" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="99.7"/>
|
||||
<text x="112" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="99.65"/>
|
||||
<text x="292" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="99.65"/>
|
||||
<text x="232" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="A" color="#000000" y="99.65"/>
|
||||
<text x="184" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="99.65"/>
|
||||
<text x="244" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="99.65"/>
|
||||
<text x="304" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="99.65"/>
|
||||
<text x="60" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="99.7"/>
|
||||
<text x="124" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="B" color="#000000" y="99.65"/>
|
||||
<text x="195" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="3B" color="#000000" y="140"/>
|
||||
<text x="135" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="2B" color="#000000" y="140"/>
|
||||
<dynamic_text x="380" z="27" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="UserText" uuid="{03c9655f-539b-46ab-8f40-b86905aa1ec8}" y="0">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" rotation="0" y="140" x="135" text="2B" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="225" text="4A" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="75" text="1B" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="165" text="3A" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="105" text="2A" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="150" ry="0" antialias="false" width="400" y="0" x="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="15" x="290" text="EMPLACEMENT" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="140" x="45" text="1A" font="Sans Serif,10,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="70" x="120" text="CARTE 4DO" font="Sans Serif,25,-1,5,50,0,0,0,0,0"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="0" length2="1.5" x2="380" x1="380" y1="20" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="20" length2="1.5" x2="280" x1="280" y1="0" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="120" length2="1.5" x2="400" x1="0" y1="120" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="20" length2="1.5" x2="400" x1="-1" y1="20" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<terminal orientation="s" y="150" x="250"/>
|
||||
<terminal orientation="s" y="150" x="190"/>
|
||||
<terminal orientation="s" y="150" x="220"/>
|
||||
<terminal orientation="s" y="150" x="280"/>
|
||||
<terminal orientation="s" y="150" x="70"/>
|
||||
<terminal orientation="s" y="150" x="160"/>
|
||||
<terminal orientation="s" y="150" x="310"/>
|
||||
<terminal orientation="s" y="150" x="130"/>
|
||||
<terminal orientation="s" y="150" x="100"/>
|
||||
<terminal orientation="s" y="150" x="40"/>
|
||||
<text x="225" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="4A" color="#000000" y="140"/>
|
||||
<text x="75" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="1B" color="#000000" y="140"/>
|
||||
<text x="165" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="3A" color="#000000" y="140"/>
|
||||
<text x="105" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="2A" color="#000000" y="140"/>
|
||||
<rect x="0" width="400" antialias="false" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" height="150" y="0"/>
|
||||
<text x="290" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="EMPLACEMENT" color="#000000" y="15"/>
|
||||
<text x="45" font="Sans Serif,10,-1,5,50,0,0,0,0,0" rotation="0" text="1A" color="#000000" y="140"/>
|
||||
<text x="120" font="Sans Serif,25,-1,5,50,0,0,0,0,0" rotation="0" text="CARTE 4DO" color="#000000" y="70"/>
|
||||
<line end2="none" x1="380" y2="0" antialias="false" x2="380" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="20"/>
|
||||
<line end2="none" x1="280" y2="20" antialias="false" x2="280" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="0"/>
|
||||
<line end2="none" x1="0" y2="120" antialias="false" x2="400" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="120"/>
|
||||
<line end2="none" x1="-1" y2="20" antialias="false" x2="400" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" length1="1.5" length2="1.5" y1="20"/>
|
||||
<dynamic_text x="170" z="40" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" Valignment="AlignTop" rotation="0" frame="false" Halignment="AlignLeft" text_width="-1" text_from="ElementInfo" uuid="{94872132-5fbd-4c04-9ae1-fa52f3a72853}" y="-30">
|
||||
<text>4-DO</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="250" orientation="s" y="150"/>
|
||||
<terminal x="220" orientation="s" y="150"/>
|
||||
<terminal x="100" orientation="s" y="150"/>
|
||||
<terminal x="40" orientation="s" y="150"/>
|
||||
<terminal x="70" orientation="s" y="150"/>
|
||||
<terminal x="310" orientation="s" y="150"/>
|
||||
<terminal x="190" orientation="s" y="150"/>
|
||||
<terminal x="280" orientation="s" y="150"/>
|
||||
<terminal x="160" orientation="s" y="150"/>
|
||||
<terminal x="130" orientation="s" y="150"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="en">Yucel</name>
|
||||
<name lang="cs">Yucel</name>
|
||||
<name lang="fr">Yucel</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,42 @@
|
||||
<definition type="element" height="80" hotspot_x="5" orientation="dyyy" version="0.80" width="80" hotspot_y="25" link_type="simple">
|
||||
<uuid uuid="{22536956-b1b4-40af-a6ab-75023c3ae487}"/>
|
||||
<names>
|
||||
<name lang="fr">Yucel_4Ah</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="description">Batterie 4Ah</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine-manufacturer-reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Yucel</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>S.DEFFAUX</informations>
|
||||
<description>
|
||||
<polygon y3="-20" x4="50" antialias="false" x3="70" y2="-20" y4="0" x2="20" x1="0" y1="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<rect rx="0" height="50" ry="0" antialias="false" width="50" y="0" x="0" style="line-style:normal;line-weight:normal;filling:gray;color:black"/>
|
||||
<rect rx="0" height="2" ry="0" antialias="false" width="6" y="-5" x="10" style="line-style:normal;line-weight:normal;filling:red;color:red"/>
|
||||
<rect rx="0" height="10" ry="0" antialias="false" width="50" y="0" x="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<polygon y3="-20" x4="50" antialias="false" x3="70" y2="-10" y4="0" x2="70" x1="50" y1="10" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<polygon y3="-10" x4="50" antialias="true" x3="70" y2="30" y4="10" x2="70" x1="50" y1="50" style="line-style:normal;line-weight:normal;filling:gray;color:black"/>
|
||||
<text color="#000000" rotation="0" y="20" x="5" text="Y" font="MS Shell Dlg 2,7,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<text color="#000000" rotation="0" y="20" x="10" text="UCEL" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="26" x="4" text="Y4-12 12V,4.0AH C20" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="46" x="4" text="www.yuasaeurope.com" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" height="2" ry="0" antialias="false" width="6" y="-5" x="45" style="line-style:normal;line-weight:normal;filling:blue;color:blue"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="22" length2="1.5" x2="44" x1="4" y1="22" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="28" length2="1.5" x2="4" x1="44" y1="28" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text color="#000000" rotation="0" y="34" x="4" text="Valve regulated" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="38" x="4" text="Lead acid type" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" rotation="0" y="40" x="42" text="Pb" font="MS Shell Dlg 2,4,-1,5,75,0,0,0,0,0,Gras"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="48" length2="1.5" x2="44" x1="4" y1="48" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" end1="none" y2="42" length2="1.5" x2="4" x1="44" y1="42" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<terminal orientation="n" y="-5" x="10"/>
|
||||
<terminal orientation="n" y="-5" x="50"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,36 @@
|
||||
<definition version="0.80" hotspot_y="25" hotspot_x="5" orientation="dyyy" height="80" type="element" width="130" link_type="simple">
|
||||
<uuid uuid="{b80c45b5-a880-49f7-83d9-d7d796498528}"/>
|
||||
<names>
|
||||
<name lang="fr">Yucel_7Ah</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Yucel</elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>S.DEFFAUX</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" antialias="false" height="50" y="0" style="line-style:normal;line-weight:normal;filling:gray;color:black" width="100" rx="0"/>
|
||||
<line y2="43" length1="1.5" y1="43" end1="none" antialias="false" x2="75" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" end2="none" x1="20"/>
|
||||
<polygon y2="-20" x4="100" y1="0" antialias="false" x3="120" x2="20" style="line-style:normal;line-weight:normal;filling:black;color:black" y3="-20" x1="0" y4="0"/>
|
||||
<rect ry="0" x="22" antialias="false" height="2" y="-17" style="line-style:normal;line-weight:normal;filling:red;color:red" width="6" rx="0"/>
|
||||
<rect ry="0" x="0" antialias="false" height="10" y="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="100" rx="0"/>
|
||||
<polygon y2="-10" x4="100" y1="10" antialias="false" x3="120" x2="120" style="line-style:normal;line-weight:normal;filling:black;color:black" y3="-20" x1="100" y4="0"/>
|
||||
<polygon y2="30" x4="100" y1="50" antialias="true" x3="120" x2="120" style="line-style:normal;line-weight:normal;filling:gray;color:black" y3="-10" x1="100" y4="10"/>
|
||||
<text color="#000000" x="5" y="20" font="MS Shell Dlg 2,7,-1,5,75,0,0,0,0,0,Gras" text="Y" rotation="0"/>
|
||||
<text color="#000000" x="10" y="20" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="UCEL" rotation="0"/>
|
||||
<text color="#000000" x="5" y="30" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="Y7-12 12V,7.0AH C20" rotation="0"/>
|
||||
<text color="#000000" x="20" y="47" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="www.yuasaeurope.com" rotation="0"/>
|
||||
<rect ry="0" x="13" antialias="false" height="2" y="-4" style="line-style:normal;line-weight:normal;filling:blue;color:blue" width="6" rx="0"/>
|
||||
<line y2="48" length1="1.5" y1="48" end1="none" antialias="false" x2="75" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" end2="none" x1="20"/>
|
||||
<terminal x="18" orientation="e" y="-2"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,139 +1,143 @@
|
||||
<definition hotspot_y="14" link_type="simple" hotspot_x="15" orientation="dyyy" width="490" type="element" version="0.80" height="620">
|
||||
<uuid uuid="{d937df9c-244d-4abf-96b3-93f4ef4da122}"/>
|
||||
<definition link_type="slave" version="0.80" orientation="dyyy" type="element" width="490" height="620" hotspot_x="15" hotspot_y="14">
|
||||
<uuid uuid="{fbaeb233-97c3-44d4-bd34-74071f06fe94}"/>
|
||||
<names>
|
||||
<name lang="fr">Code_Couleur Cablage</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<kindInformations>
|
||||
<kindInformation name="type" show="1">simple</kindInformation>
|
||||
<kindInformation name="state" show="1">NO</kindInformation>
|
||||
<kindInformation name="number" show="1">1</kindInformation>
|
||||
</kindInformations>
|
||||
<informations>S.Deffaux</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:hight;filling:none;color:black" width="460" ry="0" y="0" antialias="false" x="0" rx="0" height="590"/>
|
||||
<text text="BLANC (COMMUN)" rotation="0" color="#000000" y="98" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="300"/>
|
||||
<rect style="line-style:normal;line-weight:hight;filling:none;color:black" width="480" ry="0" y="-9" antialias="true" x="-10" rx="0" height="610"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="30" y2="30" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="2.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="30" y2="220" end2="none" x1="230" length1="2.5" antialias="false" x2="230" end1="none"/>
|
||||
<text text="CODE COULEUR UTILISE POUR LE CABLAGE" rotation="0" color="#000000" y="20" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="65"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="40" y2="40" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="50" y2="50" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<text text="24VAC COMMANDE" rotation="0" color="#000000" y="39" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="70"/>
|
||||
<text text="ROUGE" rotation="0" color="#000000" y="39" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="BLANC (COMMUN)" rotation="0" color="#000000" y="49" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="300"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="261" y2="261" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="60" y2="60" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<text text="24V REGULATION" rotation="0" color="#000000" y="100" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="70"/>
|
||||
<text text="VIOLET " rotation="0" color="#000000" y="118" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="150" y2="150" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="70" y2="70" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="80" y2="80" end2="none" x1="460" length1="1.5" antialias="false" x2="1" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="90" y2="90" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<text text="24VCC" rotation="0" color="#000000" y="68" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="99"/>
|
||||
<text text="ROUGE" rotation="0" color="#000000" y="68" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="BLEU (COMMUN)" rotation="0" color="#000000" y="78" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="289"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="100" y2="100" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="110" y2="110" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="120" y2="120" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="130" y2="130" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="190" y2="190" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="140" y2="140" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<text text="GRIS (SIGNAL 0-10V)" rotation="0" color="#000000" y="108" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="290"/>
|
||||
<text text="MARRON" rotation="0" color="#000000" y="139" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="SONDE" rotation="0" color="#000000" y="139" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="98"/>
|
||||
<text text="REPORTS DEFAUTS,ALARMES" rotation="0" color="#000000" y="158" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="52"/>
|
||||
<text text="ORANGE" rotation="0" color="#000000" y="159" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="160" y2="160" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="170" y2="170" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="180" y2="180" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="250" y2="250" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<text text="PUISSANCE" rotation="0" color="#000000" y="179" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="90"/>
|
||||
<text text="PHASE 1" rotation="0" color="#000000" y="189" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="PHASE 2" rotation="0" color="#000000" y="198" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="PHASE 3" rotation="0" color="#000000" y="208" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="TERRE" rotation="0" color="#000000" y="219" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="SECTION DES CONDUCTEURS" rotation="0" color="#000000" y="240" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="140"/>
|
||||
<text text="MATIERE" rotation="0" color="#000000" y="441" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="240"/>
|
||||
<text text="SORTIES DE CABLES" rotation="0" color="#000000" y="464" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="239"/>
|
||||
<text text="ALIMENTATION" rotation="0" color="#000000" y="490" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="242"/>
|
||||
<text text="SECTIONNEUR" rotation="0" color="#000000" y="511" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="10"/>
|
||||
<text text="DISPOSITION DE L'ARMOIRE" rotation="0" color="#000000" y="421" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="128"/>
|
||||
<text text="NEUTRE" rotation="0" color="#000000" y="178" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="PUISSANCE" rotation="0" color="#000000" y="259" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="90"/>
|
||||
<text text="10A" rotation="0" color="#000000" y="259" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="16A" rotation="0" color="#000000" y="270" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="DIMENSION ARMOIRE" rotation="0" color="#000000" y="441" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="10"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="200" y2="200" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="210" y2="210" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="220" y2="220" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<text text="SIGNALISATION" rotation="0" color="#000000" y="399" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="78"/>
|
||||
<text text="REGULATION" rotation="0" color="#000000" y="379" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="84"/>
|
||||
<text text="COMMANDE" rotation="0" color="#000000" y="359" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="84"/>
|
||||
<text text="20A" rotation="0" color="#000000" y="279" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="32A" rotation="0" color="#000000" y="289" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="236"/>
|
||||
<text text="40A" rotation="0" color="#000000" y="299" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="235"/>
|
||||
<text text="63A" rotation="0" color="#000000" y="309" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="235"/>
|
||||
<text text="100A" rotation="0" color="#000000" y="319" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="235"/>
|
||||
<text text="125A" rotation="0" color="#000000" y="329" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="235"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="271" y2="271" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="281" y2="281" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="491" y2="491" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="481" y2="481" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="291" y2="291" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="301" y2="301" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="311" y2="311" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="321" y2="321" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="331" y2="331" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="341" y2="341" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="351" y2="351" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="361" y2="361" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="371" y2="371" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="431" y2="431" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="444" y2="444" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="455" y2="455" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="469" y2="469" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="381" y2="381" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="391" y2="391" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="401" y2="401" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="501" y2="501" end2="none" x1="0" length1="1.5" antialias="false" x2="460" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="512" y2="512" end2="none" x1="460" length1="1.5" antialias="false" x2="0" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="511" y2="431" end2="none" x1="230" length1="1.5" antialias="false" x2="230" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="401" y2="251" end2="none" x1="231" length1="1.5" antialias="false" x2="231" end1="none"/>
|
||||
<text text="BLEU" rotation="0" color="#000000" y="178" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="NOIR" rotation="0" color="#000000" y="188" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="MARRON" rotation="0" color="#000000" y="198" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="ROUGE" rotation="0" color="#000000" y="208" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="VERT/JAUNE" rotation="0" color="#000000" y="218" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="2,5mm²" rotation="0" color="#000000" y="270" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="4mm2" rotation="0" color="#000000" y="280" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="6mm²" rotation="0" color="#000000" y="290" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="10mm²" rotation="0" color="#000000" y="300" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="19mm²" rotation="0" color="#000000" y="310" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="25mm²" rotation="0" color="#000000" y="320" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="35mm²" rotation="0" color="#000000" y="330" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="1,5mm²" rotation="0" color="#000000" y="359" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="0,5mm² ET 1mm²" rotation="0" color="#000000" y="379" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="0,5mm²" rotation="0" color="#000000" y="399" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<text text="1.5mm²" rotation="0" color="#000000" y="259" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="320"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="431" y2="511" end2="none" x1="115" length1="1.5" antialias="false" x2="115" end1="none"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="511" y2="431" end2="none" x1="345" length1="1.5" antialias="false" x2="345" end1="none"/>
|
||||
<text text="CHARNIERES" rotation="0" color="#000000" y="465" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="10"/>
|
||||
<text text="BORNIER" rotation="0" color="#000000" y="490" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="10"/>
|
||||
<dynamic_text text_width="-1" rotation="0" y="425" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{7c918f15-7b58-413e-b02e-0c67ab857f87}" Valignment="AlignTop" text_from="UserText" frame="false" x="345" z="115" Halignment="AlignLeft">
|
||||
<rect ry="0" x="0" y="0" style="line-style:normal;line-weight:hight;filling:none;color:black" rx="0" width="460" height="590" antialias="false"/>
|
||||
<text text="BLANC (COMMUN)" x="300" y="98" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect ry="0" x="-10" y="-9" style="line-style:normal;line-weight:hight;filling:none;color:black" rx="0" width="480" height="610" antialias="true"/>
|
||||
<line x2="460" y2="30" length1="1.5" end2="none" y1="30" length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="230" y2="220" length1="2.5" end2="none" y1="30" length2="2.5" style="line-style:normal;line-weight:hight;filling:none;color:black" end1="none" antialias="false" x1="230"/>
|
||||
<text text="CODE COULEUR UTILISE POUR LE CABLAGE" x="65" y="20" rotation="0" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="460" y2="40" length1="1.5" end2="none" y1="40" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="50" length1="1.5" end2="none" y1="50" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<text text="24VAC COMMANDE" x="70" y="39" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="ROUGE" x="320" y="39" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="BLANC (COMMUN)" x="300" y="49" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="0" y2="261" length1="1.5" end2="none" y1="261" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="60" length1="1.5" end2="none" y1="60" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<text text="24V REGULATION" x="70" y="100" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="VIOLET " x="320" y="118" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="460" y2="150" length1="1.5" end2="none" y1="150" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="460" y2="70" length1="1.5" end2="none" y1="70" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="1" y2="80" length1="1.5" end2="none" y1="80" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="90" length1="1.5" end2="none" y1="90" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<text text="24VCC" x="99" y="68" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="ROUGE" x="320" y="68" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="BLEU (COMMUN)" x="289" y="78" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="460" y2="100" length1="1.5" end2="none" y1="100" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="460" y2="110" length1="1.5" end2="none" y1="110" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="460" y2="120" length1="1.5" end2="none" y1="120" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="130" length1="1.5" end2="none" y1="130" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="190" length1="1.5" end2="none" y1="190" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="140" length1="1.5" end2="none" y1="140" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<text text="GRIS (SIGNAL 0-10V)" x="290" y="108" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="MARRON" x="320" y="139" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="SONDE" x="98" y="139" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="REPORTS DEFAUTS,ALARMES" x="52" y="158" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="ORANGE" x="320" y="159" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="460" y2="160" length1="1.5" end2="none" y1="160" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="460" y2="170" length1="1.5" end2="none" y1="170" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="180" length1="1.5" end2="none" y1="180" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="250" length1="1.5" end2="none" y1="250" length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<text text="PUISSANCE" x="90" y="179" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="PHASE 1" x="236" y="189" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="PHASE 2" x="236" y="198" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="PHASE 3" x="236" y="208" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="TERRE" x="236" y="219" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="SECTION DES CONDUCTEURS" x="140" y="240" rotation="0" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="MATIERE" x="240" y="441" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="SORTIES DE CABLES" x="239" y="464" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="ALIMENTATION" x="242" y="490" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="SECTIONNEUR" x="10" y="511" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="DISPOSITION DE L'ARMOIRE" x="128" y="421" rotation="0" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="NEUTRE" x="236" y="178" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="PUISSANCE" x="90" y="259" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="10A" x="236" y="259" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="16A" x="236" y="270" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="DIMENSION ARMOIRE" x="10" y="441" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="460" y2="200" length1="1.5" end2="none" y1="200" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="210" length1="1.5" end2="none" y1="210" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="220" length1="1.5" end2="none" y1="220" length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<text text="SIGNALISATION" x="78" y="399" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="REGULATION" x="84" y="379" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="COMMANDE" x="84" y="359" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="20A" x="236" y="279" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="32A" x="236" y="289" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="40A" x="235" y="299" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="63A" x="235" y="309" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="100A" x="235" y="319" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="125A" x="235" y="329" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="460" y2="271" length1="1.5" end2="none" y1="271" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="281" length1="1.5" end2="none" y1="281" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="491" length1="1.5" end2="none" y1="491" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="460" y2="481" length1="1.5" end2="none" y1="481" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="460" y2="291" length1="1.5" end2="none" y1="291" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="301" length1="1.5" end2="none" y1="301" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="311" length1="1.5" end2="none" y1="311" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="321" length1="1.5" end2="none" y1="321" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="331" length1="1.5" end2="none" y1="331" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="341" length1="1.5" end2="none" y1="341" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="351" length1="1.5" end2="none" y1="351" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="361" length1="1.5" end2="none" y1="361" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="371" length1="1.5" end2="none" y1="371" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="431" length1="1.5" end2="none" y1="431" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="444" length1="1.5" end2="none" y1="444" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="455" length1="1.5" end2="none" y1="455" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="469" length1="1.5" end2="none" y1="469" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="381" length1="1.5" end2="none" y1="381" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="0" y2="391" length1="1.5" end2="none" y1="391" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="0" y2="401" length1="1.5" end2="none" y1="401" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="460" y2="501" length1="1.5" end2="none" y1="501" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="0"/>
|
||||
<line x2="0" y2="512" length1="1.5" end2="none" y1="512" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="460"/>
|
||||
<line x2="230" y2="431" length1="1.5" end2="none" y1="511" length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" end1="none" antialias="false" x1="230"/>
|
||||
<line x2="231" y2="251" length1="1.5" end2="none" y1="401" length2="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" end1="none" antialias="false" x1="231"/>
|
||||
<text text="BLEU" x="320" y="178" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="NOIR" x="320" y="188" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="MARRON" x="320" y="198" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="ROUGE" x="320" y="208" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="VERT/JAUNE" x="320" y="218" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="2,5mm²" x="320" y="270" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="4mm2" x="320" y="280" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="6mm²" x="320" y="290" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="10mm²" x="320" y="300" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="19mm²" x="320" y="310" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="25mm²" x="320" y="320" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="35mm²" x="320" y="330" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="1,5mm²" x="320" y="359" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="0,5mm² ET 1mm²" x="320" y="379" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="0,5mm²" x="320" y="399" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="1.5mm²" x="320" y="259" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line x2="115" y2="511" length1="1.5" end2="none" y1="431" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="115"/>
|
||||
<line x2="345" y2="431" length1="1.5" end2="none" y1="511" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" antialias="false" x1="345"/>
|
||||
<text text="CHARNIERES" x="10" y="465" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="BORNIER" x="10" y="490" rotation="0" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="345" text_width="-1" z="115" uuid="{7c918f15-7b58-413e-b02e-0c67ab857f87}" text_from="UserText" y="425" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" rotation="0" y="425" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{ca8b7bc6-221f-4f31-8c86-263cbeadbc7a}" Valignment="AlignTop" text_from="UserText" frame="false" x="115" z="116" Halignment="AlignLeft">
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="115" text_width="-1" z="116" uuid="{ca8b7bc6-221f-4f31-8c86-263cbeadbc7a}" text_from="UserText" y="425" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" rotation="0" y="450" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{2fabac2f-cf67-4c95-89e2-88f49dfd7c92}" Valignment="AlignTop" text_from="UserText" frame="false" x="115" z="118" Halignment="AlignLeft">
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="115" text_width="-1" z="118" uuid="{2fabac2f-cf67-4c95-89e2-88f49dfd7c92}" text_from="UserText" y="450" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" rotation="0" y="473" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{011bf02d-820b-4bba-a68f-ab68fff13dff}" Valignment="AlignTop" text_from="UserText" frame="false" x="116" z="119" Halignment="AlignLeft">
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="116" text_width="-1" z="119" uuid="{011bf02d-820b-4bba-a68f-ab68fff13dff}" text_from="UserText" y="473" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" rotation="0" y="494" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{5e1f6f0e-3606-4624-a316-a44c355eb5da}" Valignment="AlignTop" text_from="UserText" frame="false" x="116" z="120" Halignment="AlignLeft">
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="116" text_width="-1" z="120" uuid="{5e1f6f0e-3606-4624-a316-a44c355eb5da}" text_from="UserText" y="494" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" rotation="0" y="449" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{9cf2c3df-1b61-4f83-b83a-0815cb56bdff}" Valignment="AlignTop" text_from="UserText" frame="false" x="344" z="121" Halignment="AlignLeft">
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="344" text_width="-1" z="121" uuid="{9cf2c3df-1b61-4f83-b83a-0815cb56bdff}" text_from="UserText" y="449" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" rotation="0" y="473" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal" uuid="{827010ba-2b46-4c93-8b65-c6278bfeb4aa}" Valignment="AlignTop" text_from="UserText" frame="false" x="344" z="122" Halignment="AlignLeft">
|
||||
<dynamic_text Halignment="AlignLeft" frame="false" x="344" text_width="-1" z="122" uuid="{827010ba-2b46-4c93-8b65-c6278bfeb4aa}" text_from="UserText" y="473" rotation="0" Valignment="AlignTop" font="MS Shell Dlg 2,8,-1,5,50,0,0,0,0,0,Normal">
|
||||
<text>_</text>
|
||||
</dynamic_text>
|
||||
</description>
|
||||
|
||||
@@ -1,100 +0,0 @@
|
||||
<definition width="170" orientation="dyyy" hotspot_y="4" link_type="simple" type="element" height="210" version="0.70" hotspot_x="3">
|
||||
<uuid uuid="{8d107cfd-1cb4-4baa-8844-df08452e24c7}"/>
|
||||
<names>
|
||||
<name lang="fr">Transformateur sonnerie Legrand</name>
|
||||
<name lang="en">Legrand Bell transformer</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="designation">413093</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Alexandre Dis</informations>
|
||||
<description>
|
||||
<polygon y2="146" style="line-style:normal;line-weight:normal;filling:none;color:red" y3="146" y1="121" closed="false" x2="4" x3="9" x1="4" antialias="false"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="136" text="12V" x="70" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="136" text="4" x="84" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="132" text="2" x="84" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="136" text="3" x="60" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="140" text="5" x="84" color="#000000"/>
|
||||
<line y2="139" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="139" end2="circle" end1="none" length2="1" length1="1.5" x2="83" x1="78" antialias="false"/>
|
||||
<circle diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="175" x="25" antialias="false"/>
|
||||
<circle diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="16" x="125" antialias="false"/>
|
||||
<circle diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="175" x="75" antialias="false"/>
|
||||
<line y2="131" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="131" end2="none" end1="circle" length2="1.5" length1="1" x2="68" x1="63" antialias="false"/>
|
||||
<line y2="131" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="131" end2="circle" end1="none" length2="1" length1="1.5" x2="83" x1="78" antialias="false"/>
|
||||
<line y2="135" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="135" end2="none" end1="circle" length2="1.5" length1="1" x2="68" x1="63" antialias="false"/>
|
||||
<circle diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="175" x="125" antialias="false"/>
|
||||
<line y2="180" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="180" end2="none" end1="none" length2="1.5" length1="1.5" x2="32" x1="28" antialias="false"/>
|
||||
<line y2="21" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="21" end2="none" end1="none" length2="1.5" length1="1.5" x2="132" x1="128" antialias="false"/>
|
||||
<line y2="180" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="180" end2="none" end1="none" length2="1.5" length1="1.5" x2="82" x1="78" antialias="false"/>
|
||||
<line y2="180" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="180" end2="none" end1="none" length2="1.5" length1="1.5" x2="132" x1="128" antialias="false"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="132" text="230V" x="70" color="#000000"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="30" x1="30" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="80" x1="80" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="130" x1="130" antialias="false"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="132" text="1" x="60" color="#000000"/>
|
||||
<line y2="19" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="23" end2="none" end1="none" length2="1.5" length1="1.5" x2="130" x1="130" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="28" x1="32" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="128" x1="132" antialias="false"/>
|
||||
<line y2="19" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" end2="none" end1="none" length2="1.5" length1="1.5" x2="128" x1="132" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="78" x1="82" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="32" x1="28" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="132" x1="128" antialias="false"/>
|
||||
<line y2="178" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="182" end2="none" end1="none" length2="1.5" length1="1.5" x2="82" x1="78" antialias="false"/>
|
||||
<line y2="19" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="23" end2="none" end1="none" length2="1.5" length1="1.5" x2="132" x1="128" antialias="false"/>
|
||||
<line y2="146" style="line-style:normal;line-weight:normal;filling:none;color:red" y1="146" end2="none" end1="none" length2="1.5" length1="1.5" x2="160" x1="25" antialias="false"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="137.9" height="2.2" angle="90" x="25.7" start="90" antialias="true"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="130" text="PRI: 230V 50/60HZ" x="10" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="140" text="24V " x="18" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="135" text="SEC: 12V" x="10" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="135" text="1.5A" x="32" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="140" text="1.0A" x="32" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="137.9" height="2.2" angle="90" x="25.7" start="0" antialias="true"/>
|
||||
<dynamic_text Valignment="AlignTop" uuid="{0673d305-f9e8-48f5-a5d1-34d912b7c199}" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0,Regular" Halignment="AlignLeft" z="41" rotation="0" y="139.5" x="5" text_width="-1" text_from="UserText">
|
||||
<text>Legrand</text>
|
||||
</dynamic_text>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="137.9" height="2.2" angle="90" x="28.3" start="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="137.9" height="2.2" angle="90" x="28.3" start="270" antialias="true"/>
|
||||
<rect ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="160" y="0" height="200" x="0" rx="0" antialias="false"/>
|
||||
<line y2="150" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="150" end2="none" end1="none" length2="1.5" length1="1.5" x2="160" x1="0" antialias="false"/>
|
||||
<line y2="50" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="50" end2="none" end1="none" length2="1.5" length1="1.5" x2="160" x1="0" antialias="false"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="132.9" height="2.2" angle="90" x="25.7" start="90" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="132.9" height="2.2" angle="90" x="25.7" start="0" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="132.9" height="2.2" angle="90" x="28.3" start="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" width="2.6" y="132.9" height="2.2" angle="90" x="28.3" start="270" antialias="true"/>
|
||||
<circle diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y="15" x="25" antialias="false"/>
|
||||
<rect ry="0" style="line-style:normal;line-weight:thin;filling:cyan;color:black" width="160" y="50" height="30" x="0" rx="0" antialias="false"/>
|
||||
<ellipse style="line-style:normal;line-weight:normal;filling:black;color:black" width="20" y="87" height="10" x="119" antialias="false"/>
|
||||
<text font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" y="97.18" text="NF" x="122.5" color="#ffffff"/>
|
||||
<line y2="20" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="20" end2="none" end1="none" length2="1.5" length1="1.5" x2="32" x1="28" antialias="false"/>
|
||||
<line y2="18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="22" end2="none" end1="none" length2="1.5" length1="1.5" x2="30" x1="30" antialias="false"/>
|
||||
<line y2="18" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" end2="none" end1="none" length2="1.5" length1="1.5" x2="28" x1="32" antialias="false"/>
|
||||
<line y2="18" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="22" end2="none" end1="none" length2="1.5" length1="1.5" x2="32" x1="28" antialias="false"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="40" text="1" x="26" color="#000000"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="40" text="2" x="127" color="#000000"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="170" text="3" x="27" color="#000000"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="170" text="4" x="77" color="#000000"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="170" text="5" x="127" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="100" text="IP20" x="142" color="#000000"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="140" text="3" x="60" color="#000000"/>
|
||||
<line y2="139" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="139" end2="none" end1="circle" length2="1.5" length1="1" x2="68" x1="63" antialias="false"/>
|
||||
<text font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="0" y="140" text="24V" x="70" color="#000000"/>
|
||||
<line y2="135" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="135" end2="circle" end1="none" length2="1" length1="1.5" x2="83" x1="78" antialias="false"/>
|
||||
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" y="140" text="413093" x="160" color="#000000"/>
|
||||
<rect ry="0" style="line-style:normal;line-weight:normal;filling:black;color:black" width="3" y="120" height="20" x="150" rx="0" antialias="false"/>
|
||||
<terminal orientation="s" y="200" x="80"/>
|
||||
<terminal orientation="s" y="200" x="30"/>
|
||||
<terminal orientation="s" y="200" x="130"/>
|
||||
<terminal orientation="n" y="0" x="130"/>
|
||||
<terminal orientation="n" y="0" x="30"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,25 +0,0 @@
|
||||
<definition version="0.80" width="860" hotspot_x="450" link_type="simple" type="element" hotspot_y="561" orientation="dyyy" height="1080">
|
||||
<uuid uuid="{92ff5b72-a54e-4aa8-99e8-da954b71bc18}"/>
|
||||
<names>
|
||||
<name lang="fr">Plaque pleine 500X400</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Plaque pleine lina 500X400</elementInformation>
|
||||
<elementInformation name="designation" show="1">0 360 55</elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud Valmary</informations>
|
||||
<description>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" width="791" ry="0" y="-498" rx="0" x="-388" height="1013"/>
|
||||
<text font="Sans Serif,32,-1,5,50,0,0,0,0,0" y="-513" rotation="0" color="#000000" x="-58" text="400mm"/>
|
||||
<text font="Sans Serif,32,-1,5,50,0,0,0,0,0" y="57" rotation="270" color="#000000" x="-399" text="500mm"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,23 +0,0 @@
|
||||
<definition hotspot_y="503" height="1340" type="element" version="0.80" link_type="simple" width="800" orientation="dyyy" hotspot_x="392">
|
||||
<uuid uuid="{7c0dbb85-f811-435e-8265-66cd28af0708}"/>
|
||||
<names>
|
||||
<name lang="fr">Plaque pleine 600X400</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="designation">0 360 56</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="description">Plaque pleine lina 600X400</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud Valmary</informations>
|
||||
<description>
|
||||
<rect rx="0" y="-500" height="1333" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" antialias="false" x="-388" width="791" ry="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,25 +0,0 @@
|
||||
<definition version="0.80" width="1090" hotspot_x="71" link_type="simple" type="element" hotspot_y="67" orientation="dyyy" height="1530">
|
||||
<uuid uuid="{718d7f28-a398-4d03-808e-2910211b5afb}"/>
|
||||
<names>
|
||||
<name lang="fr">Plaque pleine 700X500</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="description" show="1">Plaque pleine lina 700X500</elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">0 360 58</elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud Valmary</informations>
|
||||
<description>
|
||||
<rect antialias="false" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" width="1013" ry="0" y="0" rx="0" x="0" height="1458"/>
|
||||
<text font="Sans Serif,32,-1,5,50,0,0,0,0,0" y="-17" rotation="0" color="#000000" x="435" text="500mm"/>
|
||||
<text font="Sans Serif,32,-1,5,50,0,0,0,0,0" y="810" rotation="270" color="#000000" x="-20" text="700mm"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,23 +0,0 @@
|
||||
<definition version="0.80" width="1240" hotspot_y="5" type="element" orientation="dyyy" height="1690" link_type="simple" hotspot_x="5">
|
||||
<uuid uuid="{54f8afee-c52c-4725-bd7f-29244262f29a}"/>
|
||||
<names>
|
||||
<name lang="fr">Plaque pleine 800X600</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Plaque pleine lina 800X600</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">0 360 59</elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud Valmary</informations>
|
||||
<description>
|
||||
<rect antialias="false" width="1230" y="0" rx="0" ry="0" height="1680" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" x="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,25 +0,0 @@
|
||||
<definition hotspot_y="62" link_type="simple" hotspot_x="63" type="element" width="1080" orientation="dyyy" version="0.80" height="1400">
|
||||
<uuid uuid="{b0f74633-bae6-4f67-8037-278e77a782e5}"/>
|
||||
<names>
|
||||
<name lang="fr">Plaque pleine 600X500</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Plaque pleine lina 600X500</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">0 360 84</elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud Valmary</informations>
|
||||
<description>
|
||||
<rect width="1013" ry="0" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" antialias="false" rx="0" y="0" x="0" height="1333"/>
|
||||
<text color="#000000" y="-12" font="Sans Serif,32,-1,5,50,0,0,0,0,0" x="463" text="500mm" rotation="0"/>
|
||||
<text color="#000000" y="718" font="Sans Serif,32,-1,5,50,0,0,0,0,0" x="-14" text="600mm" rotation="270"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_x="4" hotspot_y="6" type="element" version="0.80" width="20" orientation="dyyy" height="130" link_type="simple">
|
||||
<uuid uuid="{dd83f91a-2bc7-4baf-8ebc-32a93ff29f1f}"/>
|
||||
<names>
|
||||
<name lang="fr">037100 - Viking3 - 1 jonction 1 entrée 1 sortie 2,5mm² pas 5mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">037100</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 2,5mm² - pas 5mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:blue;color:black" y="0" rx="0" x="0" antialias="false" width="11" ry="0" height="117"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:blue;color:black" y="7" rx="0" x="0" antialias="false" width="11" ry="0" height="103"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:blue;color:black" y="52" rx="0" x="0" antialias="false" width="11" ry="0" height="13"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="54" x="3.5" antialias="false" diameter="4"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="59" x="3.5" antialias="false" diameter="4"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:gray;color:black" y="67" x="2.5" antialias="false" diameter="6"/>
|
||||
<polygon y1="71.8" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="7.8" x2="7.3" y2="67.8" antialias="false" x1="3.3" y3="68.3" x4="3.8"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:gray;color:black" y="44" x="2.5" antialias="false" diameter="6"/>
|
||||
<polygon y1="48.8" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="7.8" x2="7.3" y2="44.8" antialias="false" x1="3.3" y3="45.3" x4="3.8"/>
|
||||
<terminal y="0" x="5.5" orientation="n"/>
|
||||
<terminal y="117" x="5.5" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="3" height="130" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{57f34308-4d5b-49da-a750-99c2933465bf}"/>
|
||||
<names>
|
||||
<name lang="fr">037101 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037101</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="117" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="103" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="8.3" x4="4.8" x3="8.8" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="8.3" x4="4.8" x3="8.8" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="6" height="130" version="0.80" link_type="simple" type="element" width="30">
|
||||
<uuid uuid="{5180b306-d196-4da0-b10b-b989a1df0f7e}"/>
|
||||
<names>
|
||||
<name lang="fr">037102 - Viking3 - 1 jonction 1 entrée 1 sortie 6mm² pas 8mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 6mm² - pas 8mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037102</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="117" x="0" antialias="false" rx="0" width="18"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="103" x="-4.16334e-16" antialias="false" rx="0" width="18"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="-4.16334e-16" antialias="false" rx="0" width="18"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="7" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="7" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="6" antialias="false"/>
|
||||
<polygon x1="6.8" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="10.8" x4="7.3" x3="11.3" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="6" antialias="false"/>
|
||||
<polygon x1="6.8" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="10.8" x4="7.3" x3="11.3" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="9"/>
|
||||
<terminal orientation="n" y="0" x="9"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="4" height="130" version="0.80" link_type="simple" type="element" width="30">
|
||||
<uuid uuid="{25b49bd2-1746-4464-b9b5-4ba5f697d074}"/>
|
||||
<names>
|
||||
<name lang="fr">037103 - Viking3 - 1 jonction 1 entrée 1 sortie 10mm² pas 10mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 10mm² - pas 10mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037103</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="117" x="0" antialias="false" rx="0" width="22"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="103" x="0" antialias="false" rx="0" width="22"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="22"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="9" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="9" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="8" antialias="false"/>
|
||||
<polygon x1="8.8" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="12.8" x4="9.3" x3="13.3" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="8" antialias="false"/>
|
||||
<polygon x1="8.8" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="12.8" x4="9.3" x3="13.3" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="11"/>
|
||||
<terminal orientation="n" y="0" x="11"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="6" height="140" version="0.80" link_type="simple" type="element" width="40">
|
||||
<uuid uuid="{022f8899-2059-4999-8e03-c23175a5a527}"/>
|
||||
<names>
|
||||
<name lang="fr">037104 - Viking3 - 1 jonction 1 entrée 1 sortie 16mm² pas 12mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 16mm² - pas 12mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037104</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="128" x="0" antialias="false" rx="0" width="27"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="111" x="0" antialias="false" rx="0" width="27"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="27"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="11.5" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="11.5" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="10.5" antialias="false"/>
|
||||
<polygon x1="11.3" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="15.3" x4="11.8" x3="15.8" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="10.5" antialias="false"/>
|
||||
<polygon x1="11.3" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="15.3" x4="11.8" x3="15.8" y3="50.3"/>
|
||||
<terminal orientation="s" y="128" x="13.5"/>
|
||||
<terminal orientation="n" y="0" x="13.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="140" version="0.80" link_type="simple" type="element" width="40">
|
||||
<uuid uuid="{00a4d6b6-2d4c-435a-8811-a175a9ac26e4}"/>
|
||||
<names>
|
||||
<name lang="fr">037105 - Viking3 - 1 jonction 1 entrée 1 sortie 35mm² pas 15mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 35mm² - pas 15mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037105</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="128" x="0" antialias="false" rx="0" width="34"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="111" x="0" antialias="false" rx="0" width="34"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="34"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="15" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="15" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="14" antialias="false"/>
|
||||
<polygon x1="14.8" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="18.8" x4="15.3" x3="19.3" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="14" antialias="false"/>
|
||||
<polygon x1="14.8" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="18.8" x4="15.3" x3="19.3" y3="50.3"/>
|
||||
<terminal orientation="n" y="0" x="17"/>
|
||||
<terminal orientation="s" y="128" x="17"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition type="element" orientation="dyyy" version="0.80" hotspot_y="6" width="20" hotspot_x="4" link_type="simple" height="130">
|
||||
<uuid uuid="{aa7942f5-ab5d-4af8-a14d-08cca92595e6}"/>
|
||||
<names>
|
||||
<name lang="fr">037120 - Viking3 - 1 jonction 1 entrée 1 sortie 2,5mm² pas 5mm Orange</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">037120</elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 2,5mm² - pas 5mm - orange</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" ry="0" rx="0" x="0" y="0" antialias="false" width="11" height="117"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" ry="0" rx="0" x="0" y="7" antialias="false" width="11" height="103"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" ry="0" rx="0" x="0" y="52" antialias="false" width="11" height="13"/>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="3.5" y="54" antialias="false"/>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="3.5" y="59" antialias="false"/>
|
||||
<circle diameter="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" x="2.5" y="67" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="71.8" x2="7.3" x3="7.8" y3="68.3" x1="3.3" y4="72.3" antialias="false" y2="67.8" x4="3.8"/>
|
||||
<circle diameter="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" x="2.5" y="44" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="48.8" x2="7.3" x3="7.8" y3="45.3" x1="3.3" y4="49.3" antialias="false" y2="44.8" x4="3.8"/>
|
||||
<terminal x="5.5" y="117" orientation="s"/>
|
||||
<terminal x="5.5" y="0" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="3" height="130" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{6a96788f-20e1-43a3-aad7-87e02dd86bfe}"/>
|
||||
<names>
|
||||
<name lang="fr">037121 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Orange</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm - orange</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037121</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="117" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="103" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="8.3" x4="4.8" x3="8.8" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="8.3" x4="4.8" x3="8.8" y3="45.3"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
<terminal orientation="s" y="117" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition type="element" orientation="dyyy" version="0.80" hotspot_y="6" width="20" hotspot_x="4" link_type="simple" height="130">
|
||||
<uuid uuid="{1b6ca471-e999-4945-8956-9634bca1500a}"/>
|
||||
<names>
|
||||
<name lang="fr">037130 - Viking3 - 1 jonction 1 entrée 1 sortie 2,5mm² pas 5mm Rouge</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">037130</elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 2,5mm² - pas 5mm - rouge</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:red;color:black" ry="0" rx="0" x="0" y="0" antialias="false" width="11" height="117"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:red;color:black" ry="0" rx="0" x="0" y="7" antialias="false" width="11" height="103"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:red;color:black" ry="0" rx="0" x="0" y="52" antialias="false" width="11" height="13"/>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="3.5" y="54" antialias="false"/>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="3.5" y="59" antialias="false"/>
|
||||
<circle diameter="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" x="2.5" y="67" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="71.8" x2="7.3" x3="7.8" y3="68.3" x1="3.3" y4="72.3" antialias="false" y2="67.8" x4="3.8"/>
|
||||
<circle diameter="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" x="2.5" y="44" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="48.8" x2="7.3" x3="7.8" y3="45.3" x1="3.3" y4="49.3" antialias="false" y2="44.8" x4="3.8"/>
|
||||
<terminal x="5.5" y="117" orientation="s"/>
|
||||
<terminal x="5.5" y="0" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="3" height="130" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{7ca03daf-0320-48b2-b7c7-8148a8a5b6fe}"/>
|
||||
<names>
|
||||
<name lang="fr">037131 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Rouge</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm - rouge</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037131</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:red;color:black" height="117" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:red;color:black" height="103" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:red;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="8.3" x4="4.8" x3="8.8" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="8.3" x4="4.8" x3="8.8" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition type="element" orientation="dyyy" version="0.80" hotspot_y="6" width="20" hotspot_x="4" link_type="simple" height="130">
|
||||
<uuid uuid="{5a045598-1d02-4701-b238-8160f507cccf}"/>
|
||||
<names>
|
||||
<name lang="fr">037160 - Viking3 - 1 jonction 1 entrée 1 sortie 2,5mm² pas 5mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1">037160</elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 2,5mm² - pas 5mm - gris</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:lightgray;color:black" ry="0" rx="0" x="0" y="0" antialias="false" width="11" height="117"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:lightgray;color:black" ry="0" rx="0" x="0" y="7" antialias="false" width="11" height="103"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:lightgray;color:black" ry="0" rx="0" x="0" y="52" antialias="false" width="11" height="13"/>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="3.5" y="54" antialias="false"/>
|
||||
<circle diameter="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x="3.5" y="59" antialias="false"/>
|
||||
<circle diameter="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" x="2.5" y="67" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="71.8" x2="7.3" x3="7.8" y3="68.3" x1="3.3" y4="72.3" antialias="false" y2="67.8" x4="3.8"/>
|
||||
<circle diameter="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" x="2.5" y="44" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="48.8" x2="7.3" x3="7.8" y3="45.3" x1="3.3" y4="49.3" antialias="false" y2="44.8" x4="3.8"/>
|
||||
<terminal x="5.5" y="0" orientation="n"/>
|
||||
<terminal x="5.5" y="117" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="3" height="130" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{5b533ffa-d619-46eb-aa15-329ed630f426}"/>
|
||||
<names>
|
||||
<name lang="fr">037161 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037161</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="117" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="103" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="8.3" x4="4.8" x3="8.8" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="8.3" x4="4.8" x3="8.8" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="6" height="130" version="0.80" link_type="simple" type="element" width="30">
|
||||
<uuid uuid="{24354918-a593-4121-940e-89c931606d5a}"/>
|
||||
<names>
|
||||
<name lang="fr">037162 - Viking3 - 1 jonction 1 entrée 1 sortie 6mm² pas 8mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 6mm² - pas 8mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037162</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="117" x="0" antialias="false" rx="0" width="18"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="103" x="0" antialias="false" rx="0" width="18"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="18"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="7" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="7" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="6" antialias="false"/>
|
||||
<polygon x1="6.8" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="10.8" x4="7.3" x3="11.3" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="6" antialias="false"/>
|
||||
<polygon x1="6.8" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="10.8" x4="7.3" x3="11.3" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="9"/>
|
||||
<terminal orientation="n" y="0" x="9"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="4" height="130" version="0.80" link_type="simple" type="element" width="30">
|
||||
<uuid uuid="{f0b370d7-b123-4f16-aace-c39e1fefe2cd}"/>
|
||||
<names>
|
||||
<name lang="fr">037163 - Viking3 - 1 jonction 1 entrée 1 sortie 10mm² pas 10mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 10mm² - pas 10mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037163</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="117" x="0" antialias="false" rx="0" width="22"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="103" x="0" antialias="false" rx="0" width="22"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="22"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="9" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="9" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="8" antialias="false"/>
|
||||
<polygon x1="8.8" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="12.8" x4="9.3" x3="13.3" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="8" antialias="false"/>
|
||||
<polygon x1="8.8" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="12.8" x4="9.3" x3="13.3" y3="45.3"/>
|
||||
<terminal orientation="n" y="0" x="11"/>
|
||||
<terminal orientation="s" y="117" x="11"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="6" height="140" version="0.80" link_type="simple" type="element" width="40">
|
||||
<uuid uuid="{f4917a19-6871-47bf-9bde-86079dbca99d}"/>
|
||||
<names>
|
||||
<name lang="fr">037164 - Viking3 - 1 jonction 1 entrée 1 sortie 16mm² pas 12mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 16mm² - pas 12mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037164</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="128" x="0" antialias="false" rx="0" width="27"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="111" x="0" antialias="false" rx="0" width="27"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="27"/>
|
||||
<circle y="58" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="11.5" antialias="false"/>
|
||||
<circle y="63" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="11.5" antialias="false"/>
|
||||
<circle y="71" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="10.5" antialias="false"/>
|
||||
<polygon x1="11.3" y4="76.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="71.8" antialias="false" y1="75.8" x2="15.3" x4="11.8" x3="15.8" y3="72.3"/>
|
||||
<circle y="48" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="10.5" antialias="false"/>
|
||||
<polygon x1="11.3" y4="53.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="48.8" antialias="false" y1="52.8" x2="15.3" x4="11.8" x3="15.8" y3="49.3"/>
|
||||
<terminal orientation="n" y="0" x="13.5"/>
|
||||
<terminal orientation="s" y="128" x="13.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="140" version="0.80" link_type="simple" type="element" width="40">
|
||||
<uuid uuid="{25f10239-589c-4195-ad8e-6cddfe4a3304}"/>
|
||||
<names>
|
||||
<name lang="fr">037165 - Viking3 - 1 jonction 1 entrée 1 sortie 35mm² pas 15mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 35mm² - pas 15mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037165</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="128" x="0" antialias="false" rx="0" width="34"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="111" x="0" antialias="false" rx="0" width="34"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="34"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="15" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="15" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="14" antialias="false"/>
|
||||
<polygon x1="14.8" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="18.8" x4="15.3" x3="19.3" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="14" antialias="false"/>
|
||||
<polygon x1="14.8" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="18.8" x4="15.3" x3="19.3" y3="50.3"/>
|
||||
<terminal orientation="n" y="0" x="17"/>
|
||||
<terminal orientation="s" y="128" x="17"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="7" orientation="dyyy" hotspot_x="5" height="160" version="0.80" link_type="simple" type="element" width="60">
|
||||
<uuid uuid="{02c02148-abff-483b-a933-686a0fd08559}"/>
|
||||
<names>
|
||||
<name lang="fr">037166 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037166</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="145" x="0" antialias="false" rx="0" width="49"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="126.5" x="0" antialias="false" rx="0" width="49"/>
|
||||
<rect ry="0" y="66" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="49"/>
|
||||
<circle y="68" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="22.5" antialias="false"/>
|
||||
<circle y="73" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="22.5" antialias="false"/>
|
||||
<circle y="81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="21.5" antialias="false"/>
|
||||
<polygon x1="22.3" y4="86.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="81.8" antialias="false" y1="85.8" x2="26.3" x4="22.8" x3="26.8" y3="82.3"/>
|
||||
<circle y="58" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="21.5" antialias="false"/>
|
||||
<polygon x1="22.3" y4="63.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="58.8" antialias="false" y1="62.8" x2="26.3" x4="22.8" x3="26.8" y3="59.3"/>
|
||||
<terminal orientation="n" y="0" x="24.5"/>
|
||||
<terminal orientation="s" y="145" x="24.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="3" height="130" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{d2cb8002-871a-4851-8ccd-b2f1f6323e0e}"/>
|
||||
<names>
|
||||
<name lang="fr">037177 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm - vert</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037177</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="117" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="103" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="8.3" x4="4.8" x3="8.8" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="8.3" x4="4.8" x3="8.8" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="6" orientation="dyyy" hotspot_x="6" height="130" version="0.80" link_type="simple" type="element" width="30">
|
||||
<uuid uuid="{0eac1a5a-5191-4477-9b51-ea705a7eef7d}"/>
|
||||
<names>
|
||||
<name lang="fr">037178 - Viking3 - 1 jonction 1 entrée 1 sortie 6mm² pas 8mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 6mm² - pas 8mm - vert</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037178</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="117" x="0" antialias="false" rx="0" width="18"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="103" x="0" antialias="false" rx="0" width="18"/>
|
||||
<rect ry="0" y="52" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="13" x="0" antialias="false" rx="0" width="18"/>
|
||||
<circle y="54" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="7" antialias="false"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="7" antialias="false"/>
|
||||
<circle y="67" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="6" antialias="false"/>
|
||||
<polygon x1="6.8" y4="72.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="67.8" antialias="false" y1="71.8" x2="10.8" x4="7.3" x3="11.3" y3="68.3"/>
|
||||
<circle y="44" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="6" antialias="false"/>
|
||||
<polygon x1="6.8" y4="49.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="44.8" antialias="false" y1="48.8" x2="10.8" x4="7.3" x3="11.3" y3="45.3"/>
|
||||
<terminal orientation="s" y="117" x="9"/>
|
||||
<terminal orientation="n" y="0" x="9"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="6" height="140" version="0.80" link_type="simple" type="element" width="40">
|
||||
<uuid uuid="{78ee3872-5cc9-46f3-952d-27b44172b706}"/>
|
||||
<names>
|
||||
<name lang="fr">037198 - Viking3 - 1 jonction 1 entrée 1 sortie 16mm² pas 12mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 16mm² - pas 12mm - vert</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037198</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="128" x="0" antialias="false" rx="0" width="27"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="111" x="0" antialias="false" rx="0" width="27"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="13" x="0" antialias="false" rx="0" width="27"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="11.5" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="11.5" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="10.5" antialias="false"/>
|
||||
<polygon x1="11.3" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="15.3" x4="11.8" x3="15.8" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="10.5" antialias="false"/>
|
||||
<polygon x1="11.3" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="15.3" x4="11.8" x3="15.8" y3="50.3"/>
|
||||
<terminal orientation="s" y="128" x="13.5"/>
|
||||
<terminal orientation="n" y="0" x="13.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="140" version="0.80" link_type="simple" type="element" width="40">
|
||||
<uuid uuid="{2343a02e-8f22-49eb-afa8-72c97b1bb9ea}"/>
|
||||
<names>
|
||||
<name lang="fr">037199 - Viking3 - 1 jonction 1 entrée 1 sortie 35mm² pas 15mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 35mm² - pas 15mm - vert</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037199</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="128" x="0" antialias="false" rx="0" width="34"/>
|
||||
<rect ry="0" y="8.5" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="111" x="0" antialias="false" rx="0" width="34"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" height="13" x="0" antialias="false" rx="0" width="34"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="15" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="15" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="14" antialias="false"/>
|
||||
<polygon x1="14.8" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="18.8" x4="15.3" x3="19.3" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="14" antialias="false"/>
|
||||
<polygon x1="14.8" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="18.8" x4="15.3" x3="19.3" y3="50.3"/>
|
||||
<terminal orientation="s" y="128" x="17"/>
|
||||
<terminal orientation="n" y="0" x="17"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">1 jonction 1 entrée 1 sortie</name>
|
||||
<name lang="en">1 junction 1 input 1 output</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,37 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="140" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{022124b8-6e92-4395-a884-329866769340}"/>
|
||||
<names>
|
||||
<name lang="fr">037109 - Viking3 - 1 jonction 2 entrées 2 sorties 4mm² pas 6mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 2 entrées 2 sorties section 4mm² - pas 6mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037109</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="128" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="113" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="8.3" x4="4.8" x3="8.8" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="8.3" x4="4.8" x3="8.8" y3="50.3"/>
|
||||
<circle y="92" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="97.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="92.8" antialias="false" y1="96.8" x2="8.3" x4="4.8" x3="8.8" y3="93.3"/>
|
||||
<circle y="29" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="34.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="29.8" antialias="false" y1="33.8" x2="8.3" x4="4.8" x3="8.8" y3="30.3"/>
|
||||
<terminal orientation="s" y="128" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
<terminal orientation="s" y="103" x="6.5"/>
|
||||
<terminal orientation="s" y="24" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,37 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="140" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{503e924a-6e40-45b2-88b2-6829b39ed4b7}"/>
|
||||
<names>
|
||||
<name lang="fr">037169 - Viking3 - 1 jonction 2 entrées 2 sorties 4mm² pas 6mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 1 jonction 2 entrées 2 sorties section 4mm² - pas 6mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037169</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="128" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="113" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="57" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="59" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="64" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="72" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="77.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="72.8" antialias="false" y1="76.8" x2="8.3" x4="4.8" x3="8.8" y3="73.3"/>
|
||||
<circle y="49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="54.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="49.8" antialias="false" y1="53.8" x2="8.3" x4="4.8" x3="8.8" y3="50.3"/>
|
||||
<circle y="92" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="97.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="92.8" antialias="false" y1="96.8" x2="8.3" x4="4.8" x3="8.8" y3="93.3"/>
|
||||
<circle y="29" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="34.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="29.8" antialias="false" y1="33.8" x2="8.3" x4="4.8" x3="8.8" y3="30.3"/>
|
||||
<terminal orientation="s" y="103" x="6.5"/>
|
||||
<terminal orientation="s" y="24" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
<terminal orientation="s" y="128" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">1 jonction 2 entrées 2 sorties</name>
|
||||
<name lang="en">1 junction 2 inputs 2 outputs</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,38 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="4" height="180" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{81f50597-552c-493e-b63b-2ce7486d1402}"/>
|
||||
<names>
|
||||
<name lang="fr">037107 - Viking3 - 2 jonctions 2 étages 2,5mm² pas 5mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 2 jonctions 2 étages section 2,5mm² - pas 5mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037107</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="168" x="0" antialias="false" rx="0" width="11"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="153" x="0" antialias="false" rx="0" width="11"/>
|
||||
<rect ry="0" y="76" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="11"/>
|
||||
<circle y="78" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<circle y="83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<circle y="91" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="96.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="91.8" antialias="false" y1="95.8" x2="7.3" x4="3.8" x3="7.8" y3="92.3"/>
|
||||
<circle y="68" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="73.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="68.8" antialias="false" y1="72.8" x2="7.3" x4="3.8" x3="7.8" y3="69.3"/>
|
||||
<circle y="137" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="142.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="137.8" antialias="false" y1="141.8" x2="7.3" x4="3.8" x3="7.8" y3="138.3"/>
|
||||
<circle y="22" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="27.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="22.8" antialias="false" y1="26.8" x2="7.3" x4="3.8" x3="7.8" y3="23.3"/>
|
||||
<circle y="117" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<terminal orientation="s" y="63" x="5.5"/>
|
||||
<terminal orientation="s" y="168" x="5.5"/>
|
||||
<terminal orientation="s" y="102" x="5.5"/>
|
||||
<terminal orientation="n" y="0" x="5.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,38 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="180" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{84b6faae-e483-4d28-b827-2eca8d085ef5}"/>
|
||||
<names>
|
||||
<name lang="fr">037108 - Viking3 - 2 jonctions 2 étages 4mm² pas 6mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 2 jonctions 2 étages section 4mm² - pas 6mm - bleu</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037108</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="168" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="153" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="76" style="line-style:normal;line-weight:thin;filling:blue;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="78" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="91" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="96.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="91.8" antialias="false" y1="95.8" x2="8.3" x4="4.8" x3="8.8" y3="92.3"/>
|
||||
<circle y="68" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="73.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="68.8" antialias="false" y1="72.8" x2="8.3" x4="4.8" x3="8.8" y3="69.3"/>
|
||||
<circle y="137" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="142.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="137.8" antialias="false" y1="141.8" x2="8.3" x4="4.8" x3="8.8" y3="138.3"/>
|
||||
<circle y="22" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="27.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="22.8" antialias="false" y1="26.8" x2="8.3" x4="4.8" x3="8.8" y3="23.3"/>
|
||||
<circle y="117" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<terminal orientation="s" y="168" x="6.5"/>
|
||||
<terminal orientation="s" y="102" x="6.5"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
<terminal orientation="s" y="63" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,38 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="4" height="180" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{b28f53cd-ce96-49f0-a20e-8b0655188bab}"/>
|
||||
<names>
|
||||
<name lang="fr">037167 - Viking3 - 2 jonctions 2 étages 2,5mm² pas 5mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 2 jonctions 2 étages section 2,5mm² - pas 5mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037167</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="168" x="0" antialias="false" rx="0" width="11"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="153" x="0" antialias="false" rx="0" width="11"/>
|
||||
<rect ry="0" y="76" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="11"/>
|
||||
<circle y="78" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<circle y="83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<circle y="91" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="96.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="91.8" antialias="false" y1="95.8" x2="7.3" x4="3.8" x3="7.8" y3="92.3"/>
|
||||
<circle y="68" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="73.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="68.8" antialias="false" y1="72.8" x2="7.3" x4="3.8" x3="7.8" y3="69.3"/>
|
||||
<circle y="137" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="142.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="137.8" antialias="false" y1="141.8" x2="7.3" x4="3.8" x3="7.8" y3="138.3"/>
|
||||
<circle y="22" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="27.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="22.8" antialias="false" y1="26.8" x2="7.3" x4="3.8" x3="7.8" y3="23.3"/>
|
||||
<circle y="117" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<terminal orientation="n" y="0" x="5.5"/>
|
||||
<terminal orientation="s" y="102" x="5.5"/>
|
||||
<terminal orientation="s" y="168" x="5.5"/>
|
||||
<terminal orientation="s" y="63" x="5.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,38 @@
|
||||
<definition hotspot_y="5" orientation="dyyy" hotspot_x="3" height="180" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{34d1502b-2f9e-4888-ab26-7b870869fb6b}"/>
|
||||
<names>
|
||||
<name lang="fr">037168 - Viking3 - 2 jonctions 2 étages 4mm² pas 6mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 2 jonctions 2 étages section 4mm² - pas 6mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037168</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="168" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="153" x="0" antialias="false" rx="0" width="13"/>
|
||||
<rect ry="0" y="76" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="13"/>
|
||||
<circle y="78" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<circle y="91" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="96.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="91.8" antialias="false" y1="95.8" x2="8.3" x4="4.8" x3="8.8" y3="92.3"/>
|
||||
<circle y="68" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="73.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="68.8" antialias="false" y1="72.8" x2="8.3" x4="4.8" x3="8.8" y3="69.3"/>
|
||||
<circle y="137" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="142.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="137.8" antialias="false" y1="141.8" x2="8.3" x4="4.8" x3="8.8" y3="138.3"/>
|
||||
<circle y="22" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="3.5" antialias="false"/>
|
||||
<polygon x1="4.3" y4="27.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="22.8" antialias="false" y1="26.8" x2="8.3" x4="4.8" x3="8.8" y3="23.3"/>
|
||||
<circle y="117" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="4.5" antialias="false"/>
|
||||
<terminal orientation="n" y="0" x="6.5"/>
|
||||
<terminal orientation="s" y="63" x="6.5"/>
|
||||
<terminal orientation="s" y="168" x="6.5"/>
|
||||
<terminal orientation="s" y="102" x="6.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">2 jonctions 2 étages</name>
|
||||
<name lang="en">2 junctions 2 levels</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,43 @@
|
||||
<definition hotspot_y="4" orientation="dyyy" hotspot_x="4" height="200" version="0.80" link_type="simple" type="element" width="20">
|
||||
<uuid uuid="{0042e3a0-d114-4ff2-8444-3ab8f68c26c5}"/>
|
||||
<names>
|
||||
<name lang="fr">037151 - Viking3 - 3 jonctions 3 étages 2,5mm² pas 5mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1">Bloc de jonction de passage à vis Viking3 avec 3 jonctions 3 étages section 2,5mm² - pas 5mm - gris</elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Legrand</elementInformation>
|
||||
<elementInformation name="designation" show="1">037151</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" y="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="190" x="0" antialias="false" rx="0" width="11"/>
|
||||
<rect ry="0" y="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="173" x="0" antialias="false" rx="0" width="11"/>
|
||||
<rect ry="0" y="90" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" height="13" x="0" antialias="false" rx="0" width="11"/>
|
||||
<circle y="92" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<circle y="97" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="4" x="3.5" antialias="false"/>
|
||||
<circle y="105" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="110.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="105.8" antialias="false" y1="109.8" x2="7.3" x4="3.8" x3="7.8" y3="106.3"/>
|
||||
<circle y="82" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="87.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="82.8" antialias="false" y1="86.8" x2="7.3" x4="3.8" x3="7.8" y3="83.3"/>
|
||||
<circle y="139" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="144.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="139.8" antialias="false" y1="143.8" x2="7.3" x4="3.8" x3="7.8" y3="140.3"/>
|
||||
<circle y="47" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="52.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="47.8" antialias="false" y1="51.8" x2="7.3" x4="3.8" x3="7.8" y3="48.3"/>
|
||||
<circle y="172" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="177.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="172.8" antialias="false" y1="176.8" x2="7.3" x4="3.8" x3="7.8" y3="173.3"/>
|
||||
<circle y="13" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="6" x="2.5" antialias="false"/>
|
||||
<polygon x1="3.3" y4="18.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y2="13.8" antialias="false" y1="17.8" x2="7.3" x4="3.8" x3="7.8" y3="14.3"/>
|
||||
<terminal orientation="s" y="45" x="5.5"/>
|
||||
<terminal orientation="s" y="151" x="5.5"/>
|
||||
<terminal orientation="s" y="116.743" x="5.5"/>
|
||||
<terminal orientation="s" y="190" x="5.5"/>
|
||||
<terminal orientation="s" y="80" x="5.5"/>
|
||||
<terminal orientation="n" y="0" x="5.5"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">3 jonctions 3 étages</name>
|
||||
<name lang="en">3 junctions 3 levels</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">Passage</name>
|
||||
<name lang="en">Passage</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="4" hotspot_y="6" type="element" orientation="dyyy" width="20" height="130">
|
||||
<uuid uuid="{0940624c-a761-4654-992d-8475a7d1b562}"/>
|
||||
<names>
|
||||
<name lang="fr">037170 - Viking3 - 1 jonction 1 entrée 1 sortie 2,5mm² pas 5mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 2,5mm² - pas 5mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037170</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="11" height="117" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="11" height="103" y="7"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="11" height="13" y="52"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="54"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="59"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<polygon y3="68.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="67.8" x4="3.8" y4="72.3" y1="71.8" x3="7.8"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="44"/>
|
||||
<polygon y3="45.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="44.8" x4="3.8" y4="49.3" y1="48.8" x3="7.8"/>
|
||||
<terminal x="5.5" orientation="n" y="0"/>
|
||||
<terminal x="5.5" orientation="s" y="117"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="6" type="element" orientation="dyyy" width="20" height="130">
|
||||
<uuid uuid="{0f9ec706-7f6b-4e4b-9f46-b52fb1016d65}"/>
|
||||
<names>
|
||||
<name lang="fr">037171 - Viking3 - 1 jonction 1 entrée 1 sortie 4mm² pas 6mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 4mm² - pas 6mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037171</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="13" height="117" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="13" height="103" y="7"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="13" height="13" y="52"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="54"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="59"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<polygon y3="68.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="67.8" x4="4.8" y4="72.3" y1="71.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="44"/>
|
||||
<polygon y3="45.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="44.8" x4="4.8" y4="49.3" y1="48.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="s" y="117"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="6" hotspot_y="6" type="element" orientation="dyyy" width="30" height="130">
|
||||
<uuid uuid="{8fc6ba11-d48e-4944-88dc-e421fe8234a7}"/>
|
||||
<names>
|
||||
<name lang="fr">037172 - Viking3 - 1 jonction 1 entrée 1 sortie 6mm² pas 8mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 6mm² - pas 8mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037172</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="18" height="117" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="18" height="103" y="7"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="18" height="13" y="52"/>
|
||||
<circle x="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="54"/>
|
||||
<circle x="7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="59"/>
|
||||
<circle x="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<polygon y3="68.3" x1="6.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="10.8" y2="67.8" x4="7.3" y4="72.3" y1="71.8" x3="11.3"/>
|
||||
<circle x="6" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="44"/>
|
||||
<polygon y3="45.3" x1="6.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="10.8" y2="44.8" x4="7.3" y4="49.3" y1="48.8" x3="11.3"/>
|
||||
<terminal x="9" orientation="n" y="0"/>
|
||||
<terminal x="9" orientation="s" y="117"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="4" hotspot_y="6" type="element" orientation="dyyy" width="30" height="130">
|
||||
<uuid uuid="{5f9a5c7a-769a-414c-bbbc-40fed5f7dd3a}"/>
|
||||
<names>
|
||||
<name lang="fr">037173 - Viking3 - 1 jonction 1 entrée 1 sortie 10mm² pas 10mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 10mm² - pas 10mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037173</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="22" height="117" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="22" height="103" y="7"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="22" height="13" y="52"/>
|
||||
<circle x="9" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="54"/>
|
||||
<circle x="9" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="59"/>
|
||||
<circle x="8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<polygon y3="68.3" x1="8.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="12.8" y2="67.8" x4="9.3" y4="72.3" y1="71.8" x3="13.3"/>
|
||||
<circle x="8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="44"/>
|
||||
<polygon y3="45.3" x1="8.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="12.8" y2="44.8" x4="9.3" y4="49.3" y1="48.8" x3="13.3"/>
|
||||
<terminal x="11" orientation="s" y="117"/>
|
||||
<terminal x="11" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="6" hotspot_y="5" type="element" orientation="dyyy" width="40" height="140">
|
||||
<uuid uuid="{57b7190a-96a9-48fb-9817-98587e701459}"/>
|
||||
<names>
|
||||
<name lang="fr">037174 - Viking3 - 1 jonction 1 entrée 1 sortie 16mm² pas 12mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 16mm² - pas 12mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037174</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="27" height="128" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="27" height="111" y="8.5"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="27" height="13" y="57"/>
|
||||
<circle x="11.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="58"/>
|
||||
<circle x="11.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="63"/>
|
||||
<circle x="10.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="71"/>
|
||||
<polygon y3="72.3" x1="11.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="15.3" y2="71.8" x4="11.8" y4="76.3" y1="75.8" x3="15.8"/>
|
||||
<circle x="10.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="48"/>
|
||||
<polygon y3="49.3" x1="11.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="15.3" y2="48.8" x4="11.8" y4="53.3" y1="52.8" x3="15.8"/>
|
||||
<terminal x="13.5" orientation="n" y="0"/>
|
||||
<terminal x="13.5" orientation="s" y="128"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,31 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="5" type="element" orientation="dyyy" width="40" height="140">
|
||||
<uuid uuid="{bb80d2a1-8e67-434f-a5fa-9a94db73b236}"/>
|
||||
<names>
|
||||
<name lang="fr">037175 - Viking3 - 1 jonction 1 entrée 1 sortie 35mm² pas 15mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 1 entrée 1 sortie section 35mm² - pas 15mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037175</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="34" height="128" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="34" height="111" y="8.5"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="34" height="13" y="57"/>
|
||||
<circle x="15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="59"/>
|
||||
<circle x="15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="64"/>
|
||||
<circle x="14" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="72"/>
|
||||
<polygon y3="73.3" x1="14.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="18.8" y2="72.8" x4="15.3" y4="77.3" y1="76.8" x3="19.3"/>
|
||||
<circle x="14" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="49"/>
|
||||
<polygon y3="50.3" x1="14.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="18.8" y2="49.8" x4="15.3" y4="54.3" y1="53.8" x3="19.3"/>
|
||||
<terminal x="17" orientation="s" y="128"/>
|
||||
<terminal x="17" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,27 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="8" type="element" orientation="dyyy" width="40" height="130">
|
||||
<uuid uuid="{2683f5cf-13d1-467e-82cb-c084e6e61a44}"/>
|
||||
<names>
|
||||
<name lang="fr">037176 - Viking3 - 1 jonction 1 entrée 1 sortie 35mm² pas 15mm Nu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction bloc nu section 35mm² - pas 15mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037176</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" width="34" height="113" y="0"/>
|
||||
<circle x="14" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="77"/>
|
||||
<polygon y3="78.3" x1="14.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="18.8" y2="77.8" x4="15.3" y4="82.3" y1="81.8" x3="19.3"/>
|
||||
<circle x="14" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="28"/>
|
||||
<polygon y3="29.3" x1="14.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="18.8" y2="28.8" x4="15.3" y4="33.3" y1="32.8" x3="19.3"/>
|
||||
<terminal x="17" orientation="s" y="113"/>
|
||||
<terminal x="17" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">1 jonction 1 entrée 1 sortie Pied métal</name>
|
||||
<name lang="en">1 junction 1 input 1 output Metal foot</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,37 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="5" type="element" orientation="dyyy" width="20" height="140">
|
||||
<uuid uuid="{8bdaa2c5-979d-410c-8c7c-1606177928df}"/>
|
||||
<names>
|
||||
<name lang="fr">037179 - Viking3 - 1 jonction 2 entrées 2 sorties 4mm² pas 6mm Vert/jaune</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction pour conducteur de protection à vis Viking3 avec 1 jonction 2 entrées 2 sorties section 4mm² - pas 6mm</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037179</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="13" height="128" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGreenLimeGreen;color:black" antialias="false" width="13" height="113" y="7"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" width="13" height="13" y="57"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="59"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="64"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="72"/>
|
||||
<polygon y3="73.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="72.8" x4="4.8" y4="77.3" y1="76.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="49"/>
|
||||
<polygon y3="50.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="49.8" x4="4.8" y4="54.3" y1="53.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="92"/>
|
||||
<polygon y3="93.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="92.8" x4="4.8" y4="97.3" y1="96.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="29"/>
|
||||
<polygon y3="30.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="29.8" x4="4.8" y4="34.3" y1="33.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
<terminal x="6.5" orientation="s" y="128"/>
|
||||
<terminal x="6.5" orientation="s" y="103"/>
|
||||
<terminal x="6.5" orientation="s" y="24"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">1 jonction 2 entrées 2 sorties Pied métal</name>
|
||||
<name lang="en">1 junction 2 inputs 2 outputs Metal foot</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">Protection</name>
|
||||
<name lang="en">Protection</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{4d452165-2d55-43ba-8e4f-dc2193b7c50b}"/>
|
||||
<names>
|
||||
<name lang="fr">037180 - Viking3 - 1 jonction ouverte 2,5mm² pas 6mm</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction ouvert à équiper</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037180</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{9f06c844-2c22-42d3-bb74-423e655e14b6}"/>
|
||||
<names>
|
||||
<name lang="fr">037181 - Viking3 - 1 jonction Fusible 2,5mm² pas 6mm Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour cartouche fusible 5x20 avec préhenseur</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037181</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<circle x="3.5" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{88574782-d778-4284-858d-f4a834edd2e8}"/>
|
||||
<names>
|
||||
<name lang="fr">037182 - Viking3 - 1 jonction Circuit neutre Préhenseur 2,5mm² pas 6mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour circuit de neutre avec préhenseur bleu</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037182</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:none;color:white" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:white" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:white" antialias="false" diameter="6" y="67"/>
|
||||
<circle x="3.5" style="line-style:dashed;line-weight:thin;filling:none;color:white" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:dashed;line-weight:thin;filling:none;color:white" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{24d6ae67-738d-4475-845d-af4417a63506}"/>
|
||||
<names>
|
||||
<name lang="fr">037183 - Viking3 - 1 jonction Circuit standard Préhenseur 2,5mm² pas 6mm Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour circuit standard avec préhenseur</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037183</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:none;color:white" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:white" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:white" antialias="false" diameter="6" y="67"/>
|
||||
<circle x="3.5" style="line-style:dashed;line-weight:thin;filling:none;color:white" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:dashed;line-weight:thin;filling:none;color:white" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{aa75833e-bd58-447e-aae2-954550569751}"/>
|
||||
<names>
|
||||
<name lang="fr">037184 - Viking3 - 1 jonction Circuit standard Mini-préhenseur 2,5mm² pas 6mm Orange</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour circuit standard avec mini préhenseur</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037184</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<circle x="3.5" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{f05a70a6-10b8-4220-b778-96a49874f30b}"/>
|
||||
<names>
|
||||
<name lang="fr">037185 - Viking3 - 1 jonction Circuit non coupé Préhenseur 2,5mm² pas 6mm Orange</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour circuit non coupé avec préhenseur</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037185</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<circle x="3.5" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="4" type="element" orientation="dyyy" width="20" height="170">
|
||||
<uuid uuid="{1860c520-adc2-4b11-88df-ddba4f35d592}"/>
|
||||
<names>
|
||||
<name lang="fr">037186 - Viking3 - 1 jonction Circuit non coupé Mini-préhenseur 2,5mm² pas 6mm Orange</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour circuit non coupé avec mini préhenseur</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037186</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="160" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="140" y="10"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="100" y="15"/>
|
||||
<circle x="4.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="4" y="108"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="120"/>
|
||||
<polygon y3="121.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="120.8" x4="4.8" y4="125.3" y1="124.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="47"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<circle x="3.5" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
<terminal x="6.5" orientation="s" y="160"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,30 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="6" type="element" orientation="dyyy" width="20" height="160">
|
||||
<uuid uuid="{2ff7f572-39c9-4c05-a8be-94c7c8fd3be0}"/>
|
||||
<names>
|
||||
<name lang="fr">037187 - Viking3 - 1 jonction Fusible Bouchon 2,5mm² pas 6mm</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction sectionnable à vis Viking3 avec 1 jonction pour cartouche 5x20 avec bouchon vissé</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037187</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="147" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="13" height="120" y="10"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="134"/>
|
||||
<polygon y3="135.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="134.8" x4="4.8" y4="139.3" y1="138.8" x3="8.8"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="6" y="53"/>
|
||||
<circle x="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" diameter="10" y="71"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="17"/>
|
||||
<polygon y3="18.3" x1="4.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="8.3" y2="17.8" x4="4.8" y4="22.3" y1="21.8" x3="8.8"/>
|
||||
<terminal x="6.5" orientation="s" y="147"/>
|
||||
<terminal x="6.5" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,26 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="55" type="element" orientation="dyyy" width="20" height="110">
|
||||
<uuid uuid="{93e43afb-d097-42c1-96c5-58f45d3e0b88}"/>
|
||||
<names>
|
||||
<name lang="fr">037515 - Viking3 - Préhenseur fusible Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Préhenseur cartouche fusible 5x20 pour bloc de jonction sectionnable à vis ou ressort Viking 3</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037515</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="-1.80411e-15" rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" width="13" height="100" y="-50"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="6" y="-13"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="6" y="7"/>
|
||||
<rect ry="0" x="4.5" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" width="4" height="8" y="-4"/>
|
||||
<terminal x="6.5" orientation="s" y="10"/>
|
||||
<terminal x="6.5" orientation="n" y="-10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,21 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="55" type="element" orientation="dyyy" width="20" height="110">
|
||||
<uuid uuid="{5ca3a601-b17e-4590-ba90-96f17d825b29}"/>
|
||||
<names>
|
||||
<name lang="fr">037516 - Viking3 - Préhenseur neutre Bleu</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Préhenseur neutre bleu pour bloc de jonction sectionnable à vis ou ressort Viking 3</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037516</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="2.77556e-17" rx="0" style="line-style:normal;line-weight:thin;filling:blue;color:black" antialias="false" width="13" height="100" y="-50"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,21 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="55" type="element" orientation="dyyy" width="20" height="110">
|
||||
<uuid uuid="{2afc8f6a-3e0b-488a-9759-b0f42cda079b}"/>
|
||||
<names>
|
||||
<name lang="fr">037517 - Viking3 - Préhenseur Gris</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Préhenseur gris pour bloc de jonction sectionnable à vis ou ressort Viking 3</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037517</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="2.77556e-17" rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" width="13" height="100" y="-50"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,21 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="55" type="element" orientation="dyyy" width="20" height="110">
|
||||
<uuid uuid="{9acdc0f4-841d-4efa-8587-ad28277ae5bc}"/>
|
||||
<names>
|
||||
<name lang="fr">037518 - Viking3 - Mini préhenseur Orange</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Mini préhenseur pour bloc de jonction sectionnable à vis ou ressort Viking 3</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037518</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="2.77556e-17" rx="0" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" width="13" height="100" y="-50"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,24 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="25" type="element" orientation="dyyy" width="20" height="50">
|
||||
<uuid uuid="{bc9e1aa7-e2dd-4c0b-871c-54c3dcd1050b}"/>
|
||||
<names>
|
||||
<name lang="fr">037524 - Viking3 - Témoin 12 à 24V~ ou =</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Témoin de fusion pour bloc jonction sectionnable Viking3 à cartouche fusible 5x20 préhenseur 12V~ à 24V~ et 12V= à 24V=</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037524</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="1" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" width="11" height="40" y="-20"/>
|
||||
<rect ry="5" x="3.4" rx="2" style="line-style:normal;line-weight:thin;filling:cyan;color:black" antialias="false" width="6" height="20" y="-10"/>
|
||||
<terminal x="6.5" orientation="s" y="10"/>
|
||||
<terminal x="6.5" orientation="n" y="-10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,24 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="3" hotspot_y="25" type="element" orientation="dyyy" width="20" height="50">
|
||||
<uuid uuid="{6354cc72-3bb9-412d-badd-633da7f69bdc}"/>
|
||||
<names>
|
||||
<name lang="fr">037525 - Viking3 - Témoin 110 à 250V~</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Témoin de fusion pour bloc de jonction sectionnable Viking3 à cartouche fusible 5x20Avec préhenseur 110V~ à 250V~</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037525</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="1" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" width="11" height="40" y="-20"/>
|
||||
<rect ry="5" x="3.4" rx="2" style="line-style:normal;line-weight:thin;filling:cyan;color:black" antialias="false" width="6" height="20" y="-10"/>
|
||||
<terminal x="6.5" orientation="n" y="-10"/>
|
||||
<terminal x="6.5" orientation="s" y="10"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="fr">Sectionnable</name>
|
||||
<name lang="en">Sectionable</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,34 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="4" hotspot_y="6" type="element" orientation="dyyy" width="20" height="130">
|
||||
<uuid uuid="{15215722-164d-4787-a464-db1fad33ee54}"/>
|
||||
<names>
|
||||
<name lang="fr">037153 - Viking3 - 1 jonction à équiper 2,5mm² pas 5mm Gris foncé</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction à fonction à vis Viking3 avec 1 jonction à équiper</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037153</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="117" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="103" y="7"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="33" y="42"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="13" y="52"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="67"/>
|
||||
<polygon y3="68.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="67.8" x4="3.8" y4="72.3" y1="71.8" x3="7.8"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="44"/>
|
||||
<polygon y3="45.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="44.8" x4="3.8" y4="49.3" y1="48.8" x3="7.8"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="12"/>
|
||||
<polygon y3="13.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="12.8" x4="3.8" y4="17.3" y1="16.8" x3="7.8"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="98"/>
|
||||
<polygon y3="99.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="98.8" x4="3.8" y4="103.3" y1="102.8" x3="7.8"/>
|
||||
<terminal x="5.5" orientation="s" y="117"/>
|
||||
<terminal x="5.5" orientation="n" y="0"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition version="0.80" link_type="simple" hotspot_x="4" hotspot_y="6" type="element" orientation="dyyy" width="20" height="130">
|
||||
<uuid uuid="{85452113-f473-48d2-a51a-710b0e824069}"/>
|
||||
<names>
|
||||
<name lang="fr">037154 - Viking3 - 1 jonction Diode 2,5mm² pas 5mm Gris foncé</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="description">Bloc de jonction à fonction à vis Viking3 avec 1 jonction à diode</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Legrand</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="designation">037154</elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Arnaud VALMARY</informations>
|
||||
<description>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="117" y="0"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="103" y="7"/>
|
||||
<rect ry="0" x="-2.77556e-17" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="33" y="41.5"/>
|
||||
<rect ry="0" x="0" rx="0" style="line-style:normal;line-weight:thin;filling:HTMLGrayGray;color:black" antialias="false" width="11" height="13" y="52"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="44"/>
|
||||
<circle x="3.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="4" y="68"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="98"/>
|
||||
<polygon y3="99.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="98.8" x4="3.8" y4="103.3" y1="102.8" x3="7.8"/>
|
||||
<circle x="2.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" diameter="6" y="12"/>
|
||||
<polygon y3="13.3" x1="3.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x2="7.3" y2="12.8" x4="3.8" y4="17.3" y1="16.8" x3="7.8"/>
|
||||
<terminal x="5.5" orientation="n" y="0"/>
|
||||
<terminal x="5.5" orientation="s" y="117"/>
|
||||
</description>
|
||||
</definition>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user