mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-09 06:10:49 +02:00
Compare commits
63 commits
DUMBER-3_v
...
evoxx-dumb
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0121dc5707 | ||
![]() |
d89d36d040 | ||
![]() |
ce68e09679 | ||
![]() |
5b9656c67a | ||
fc2a05ab13 | |||
0792fc301d | |||
9df1899580 | |||
![]() |
8b39e4e099 | ||
866412162b | |||
61b7855f3c | |||
e018b5d0f4 | |||
5904a21007 | |||
![]() |
8f84e6d42e | ||
![]() |
80fa2240f8 | ||
![]() |
c67814a39b | ||
![]() |
b7fae99df4 | ||
![]() |
b75a775775 | ||
8d8dc0586f | |||
![]() |
7d8d4456aa | ||
![]() |
9a88a66cc1 | ||
![]() |
ae59f19ecc | ||
![]() |
d21c4b2ea3 | ||
![]() |
4d4882b09d | ||
![]() |
a6d5dfa98a | ||
![]() |
2a8686a100 | ||
![]() |
18c5cb2eb0 | ||
![]() |
beefcb3ca8 | ||
![]() |
1d27411326 | ||
![]() |
64b8f9fe08 | ||
![]() |
c5250eb3f4 | ||
![]() |
7d9e38f3ef | ||
![]() |
149a56fbac | ||
![]() |
a426931ad5 | ||
![]() |
aa2c734535 | ||
![]() |
067fbef0fb | ||
![]() |
f8f7ab84ef | ||
![]() |
aae905f551 | ||
![]() |
134ff079fe | ||
![]() |
23eac89c23 | ||
![]() |
aa83f00d28 | ||
![]() |
c6ad9b7094 | ||
![]() |
f319857e0d | ||
![]() |
85bf7179df | ||
![]() |
7297bcc92d | ||
![]() |
f0b4ab2957 | ||
![]() |
c51360920c | ||
![]() |
2cd8e1d798 | ||
![]() |
1944ee80d1 | ||
![]() |
e33b24b0fd | ||
![]() |
b687bc01ef | ||
![]() |
5cf34b3e9d | ||
![]() |
030b0d1bd4 | ||
![]() |
840748461a | ||
![]() |
c76938b079 | ||
![]() |
4e10472c33 | ||
![]() |
83f7e67c7b | ||
![]() |
44454a8dcf | ||
![]() |
8036b27460 | ||
![]() |
a9416d70bb | ||
![]() |
fea60b1cc0 | ||
![]() |
cdebd8ac4e | ||
![]() |
7fdbb9e399 | ||
![]() |
a624f8794e |
505 changed files with 170360 additions and 44715 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -65,3 +65,9 @@ GUI
|
||||||
/software/raspberry/superviseur-robot/superviseur/dist/
|
/software/raspberry/superviseur-robot/superviseur/dist/
|
||||||
/software/raspberry/testeur/testeur/build/
|
/software/raspberry/testeur/testeur/build/
|
||||||
/software/raspberry/testeur/testeur/dist/
|
/software/raspberry/testeur/testeur/dist/
|
||||||
|
/software/dumber3/Release/
|
||||||
|
/software/dumber3/Debug/
|
||||||
|
/software/dumber3/Tests/
|
||||||
|
/software/dumber3/workspace/
|
||||||
|
|
||||||
|
/doc/Doc\ robot/doxygen/
|
||||||
|
|
18
.vscode/c_cpp_properties.json
vendored
Normal file
18
.vscode/c_cpp_properties.json
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "linux-gcc-x64",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"compilerPath": "/usr/bin/gcc",
|
||||||
|
"cStandard": "${default}",
|
||||||
|
"cppStandard": "${default}",
|
||||||
|
"intelliSenseMode": "linux-gcc-x64",
|
||||||
|
"compilerArgs": [
|
||||||
|
""
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
16
.vscode/launch.json
vendored
Normal file
16
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
|
||||||
|
// Pointez pour afficher la description des attributs existants.
|
||||||
|
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Python : fichier actif",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${file}",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"justMyCode": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
59
.vscode/settings.json
vendored
Normal file
59
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
{
|
||||||
|
"C_Cpp_Runner.cCompilerPath": "gcc",
|
||||||
|
"C_Cpp_Runner.cppCompilerPath": "g++",
|
||||||
|
"C_Cpp_Runner.debuggerPath": "gdb",
|
||||||
|
"C_Cpp_Runner.cStandard": "",
|
||||||
|
"C_Cpp_Runner.cppStandard": "",
|
||||||
|
"C_Cpp_Runner.msvcBatchPath": "",
|
||||||
|
"C_Cpp_Runner.useMsvc": false,
|
||||||
|
"C_Cpp_Runner.warnings": [
|
||||||
|
"-Wall",
|
||||||
|
"-Wextra",
|
||||||
|
"-Wpedantic",
|
||||||
|
"-Wshadow",
|
||||||
|
"-Wformat=2",
|
||||||
|
"-Wcast-align",
|
||||||
|
"-Wconversion",
|
||||||
|
"-Wsign-conversion",
|
||||||
|
"-Wnull-dereference"
|
||||||
|
],
|
||||||
|
"C_Cpp_Runner.msvcWarnings": [
|
||||||
|
"/W4",
|
||||||
|
"/permissive-",
|
||||||
|
"/w14242",
|
||||||
|
"/w14287",
|
||||||
|
"/w14296",
|
||||||
|
"/w14311",
|
||||||
|
"/w14826",
|
||||||
|
"/w44062",
|
||||||
|
"/w44242",
|
||||||
|
"/w14905",
|
||||||
|
"/w14906",
|
||||||
|
"/w14263",
|
||||||
|
"/w44265",
|
||||||
|
"/w14928"
|
||||||
|
],
|
||||||
|
"C_Cpp_Runner.enableWarnings": true,
|
||||||
|
"C_Cpp_Runner.warningsAsError": false,
|
||||||
|
"C_Cpp_Runner.compilerArgs": [],
|
||||||
|
"C_Cpp_Runner.linkerArgs": [],
|
||||||
|
"C_Cpp_Runner.includePaths": [],
|
||||||
|
"C_Cpp_Runner.includeSearch": [
|
||||||
|
"*",
|
||||||
|
"**/*"
|
||||||
|
],
|
||||||
|
"C_Cpp_Runner.excludeSearch": [
|
||||||
|
"**/build",
|
||||||
|
"**/build/**",
|
||||||
|
"**/.*",
|
||||||
|
"**/.*/**",
|
||||||
|
"**/.vscode",
|
||||||
|
"**/.vscode/**"
|
||||||
|
],
|
||||||
|
"C_Cpp_Runner.useAddressSanitizer": false,
|
||||||
|
"C_Cpp_Runner.useUndefinedSanitizer": false,
|
||||||
|
"C_Cpp_Runner.useLeakSanitizer": false,
|
||||||
|
"C_Cpp_Runner.showCompilationTime": false,
|
||||||
|
"C_Cpp_Runner.useLinkTimeOptimization": false,
|
||||||
|
"C_Cpp_Runner.msvcSecureNoWarnings": false
|
||||||
|
}
|
|
@ -8,3 +8,6 @@ Depot du projet de temps reel 4eme année au departement GEI de l'INSA Toulouse.
|
||||||
- doc: contient les sujets de TD et TP
|
- doc: contient les sujets de TD et TP
|
||||||
- aruco_markers: Script de generation des tags (aruco) utilisés sur les robots
|
- aruco_markers: Script de generation des tags (aruco) utilisés sur les robots
|
||||||
|
|
||||||
|
|
||||||
|
/home/xenomai/.netbeans/remote/10.105.0.144/insa-10577-Linux-x86_64/home/marin-muller/Documents/4A/Robot/dumber/software/raspberry/superviseur-robot/dist/Debug__RPI_/GNU-Linux
|
||||||
|
|
||||||
|
|
1
doc/Flowchart-robot.drawio
Normal file
1
doc/Flowchart-robot.drawio
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<mxfile host="app.diagrams.net" modified="2022-10-11T12:40:49.574Z" agent="5.0 (X11)" etag="YNnbMm92YCTksZ5bMFh4" version="20.4.0" type="device"><diagram name="Page-1" id="c7558073-3199-34d8-9f00-42111426c3f3">7V1hc6I4GP41fnQHCKB8rNrd25n2zmlnbm8/7VCJyhwSD7Da/fWXSBBIsKKSBGw7s10IIcCb93ny5H0D7YHxavctctfLR+TBoGdo3q4HJj3D0DXLwf+Rkre0ZODYacEi8j1aKS949n/D7ExauvE9GJcqJggFib8uF85QGMJZUipzowhty9XmKChfde0uIFfwPHMDvvSH7yXLtHRo2Hn5H9BfLLMr6zZ94Bd39u8iQpuQXi9EIUyPrNysGfqM8dL10LZQBO57YBwhlKRbq90YBsSsmcXS874eOXq45QiGSZ0TprE/fRkZ3//2np7A/Z/OaDw1+1k/vbrBhtriOXGjZLOmN528ZTbaPyUkjek9MNou/QQ+r90ZObrFXoHLlskqoIdpqzBK4O7o/eoHK2DHgmgFk+gNV6EnAJMajvqUbtH9bd5DembcZaF3bFrmUqdYHJrOrYM3qIHOMdaAM1bPsAN82ZHnv+LNBdmcoi2McK2/wuwgvljheMUpWdFLxJa041TGE7CpMDDhaS9w43WK1rm/I54zmvtBMEYBivYNAW3/05C7OGV3Aby3VDmLIcxZhpyzfPewBamJ47Ublqxq/7chTJCatB+nNr0jJohg2jW0QqGzsAmdcrelzR7pN9UIBhV9IhnBDtcpT5uwdYayDNWG0jWNd1/isOOlGy2gcosN2zY26JpeZ3D44SazpYcWuOLEj92XANusHunKtrDN+KRhqjexwZn4AW1HblKyZrs80x6qNxs4S7bM5+0SHx2XPE1AkZE2w4rhQaq20TV+HOVNFnp3ZGqG92aBG8f+rGypHJhEAcKdn/xDtr9YdO8nrUe2J7tCtclbthPihymcRHZ/Fo/lp+33svPSW4UeNydkOgQ/DtpEM1hjSpCQUTE5OdHiuziCgZv4r+U7qeoweuoU+WFSUA4G4xpMl6cPQE8qTg6ZdswT7aTPx7Wz957D01zhUDovNyrgm4qPEyzFuiHu5gf3BQbE5WDs/ybDBHWEIm4DfxESV8UugK8ARgSx/swN7uiBle8R+Z5dgUYiaGO9A9ZOAP09OF3hHNehWa+SLs2guYDlHNndRzOVx43D2bCagTPbjl4Tz7iL3bdCtTWpEB+/X50RiWYpBIU30gYb5gpeBr7PFUcDMR2kCv2IVLjS8UzGP9B8HkNBVF8lRz+kdrDraoehGO3gOPjZS3M8/UK+4ZsCbFPCFYTJudUE24fYCcTdhDpQqwoscTg1LgKqoQypw7pIvVbI1YaX0xhSTbaphrQBGDDaYChFHPAJrQpxsM9x4Vo/yL/JN/x7FZOYHLm7urGEQhtfy82oERsRSrCPIVLWdzRBlGQJ8e8+G6kQKT/4JN4jSlAUU6WoOHzIpgJaED/U+UzWhx0InJoDAXWz5kcCmyHVSxWbeaoh4XqtKoTIkWwKzV/jlfcByFWMzO+zPSuQXI2qMF4jVKH3LookKWOKQwJV2exONVOcrRe16piVWL1oVMU+P0zgubAQrVHKsc1SV/aBRAqqig4KoCDjfQ5qXHS0lyAGDHAtYMmVEgYfUSyss4C7tR9VLAzoBD4NIV3P9Hyf6S+R6BQXVLpEIOgldZBHgmXog2yds6rMsWp90JxP8SGfJ7h34HTG0EXcXxtnuW7Gb1QtdJY/hh7L0egSYarXTwmLycwpx+m5Op6VA7ZjMR4pRMfzQapb0QBiIkl9xh0GQJ4IELh6bFAMKGp16WWgil9qBxRvNUrQmFOBqtATN5HPhMHjbYcSDTFTRomRRCBuTVrXOKK+Bml7pEA9SVQFh44lHfahvgsSw/chFhoa2p/8ukpumWeAGM0rMR0MWpfcbP1yNPoejniaYRclXkwzbEOCVr8CKctfQa3E6QN2V0Pbvxt1M9kKIEYDs92Yr3iQwD+mpLX3A3npCjkzFUu7kB041A4kpyvMWiLkFgFsCgqRyZMLprjF62fkL5pEq5wpQ2NotSzJUwaTX1degGYXQXjtsnL1IPxMIp6fnZCj2S/GOavZuYaE45zPInYc52pziKawHOJlr3mpA2n22YoaIBVEzapBeu3EeghkTKxNPhSUvUFmdvMNMlNQ6vAw2B8WEEkc/GUlD2sSSxeWEH0SS7Y2AagglgwdpW9puTNseD956yaxqP1ghSUsaHbOawYNQrntMTPLrsZN0/hkr5M9gGB81grIFSF7Vj5w/2WtXyjPJt5MPM8SE8/rM18v6eu2vBXKlrAIn/5F04YlfrEBeF9k4J0pjHz8UKRvP1rsj2UDy2LyMqJjAhYf+/skhlrE0LDepA6QQVEGDQiLMWIa0AdtogFZ7yo3xgMDNj8rnAdqfVTikweOoKjTPCAujFniADA8nwNa8H5E7S/jiPpinvK1idfGNg0przlbfGyz/IE80eRSWI0oaC2iJWYUyyaH2VvpDcxE8G7+Zz/S6vmfVQH3/wM=</diagram></mxfile>
|
BIN
doc/l6924u-1849483.pdf
Normal file
BIN
doc/l6924u-1849483.pdf
Normal file
Binary file not shown.
2
hardware/meca/.gitignore
vendored
Normal file
2
hardware/meca/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Dumber_2022_Freecad/
|
||||||
|
|
BIN
hardware/meca/Chargeur/1593K PCB.dwg
Normal file
BIN
hardware/meca/Chargeur/1593K PCB.dwg
Normal file
Binary file not shown.
733
hardware/meca/Chargeur/1593K PCB.igs
Normal file
733
hardware/meca/Chargeur/1593K PCB.igs
Normal file
|
@ -0,0 +1,733 @@
|
||||||
|
S 1
|
||||||
|
,,,9H1593K PCB,22HAutodesk Inventor 2016,7Hunknown,32,38,7,99,15,,1.,2, G 1
|
||||||
|
2HMM,1,0.08,15H20160920.150514,0.01,10000.,8Hdimercur,,11,0,15H20160920.G 2
|
||||||
|
125417; G 3
|
||||||
|
186 1 00000000D 1
|
||||||
|
186 -241 1 0 0D 2
|
||||||
|
514 2 00010000D 3
|
||||||
|
514 2 1 0D 4
|
||||||
|
510 4 00010000D 5
|
||||||
|
510 -241 1 1 0D 6
|
||||||
|
510 5 00010000D 7
|
||||||
|
510 -241 1 1 0D 8
|
||||||
|
510 6 00010000D 9
|
||||||
|
510 -241 1 1 0D 10
|
||||||
|
510 7 00010000D 11
|
||||||
|
510 -241 1 1 0D 12
|
||||||
|
510 8 00010000D 13
|
||||||
|
510 -241 1 1 0D 14
|
||||||
|
510 9 00010000D 15
|
||||||
|
510 -241 1 1 0D 16
|
||||||
|
510 10 00010000D 17
|
||||||
|
510 -241 1 1 0D 18
|
||||||
|
510 11 00010000D 19
|
||||||
|
510 -241 1 1 0D 20
|
||||||
|
510 12 00010000D 21
|
||||||
|
510 -241 1 1 0D 22
|
||||||
|
510 13 00010000D 23
|
||||||
|
510 -241 1 1 0D 24
|
||||||
|
510 14 00010000D 25
|
||||||
|
510 -241 1 1 0D 26
|
||||||
|
510 15 00010000D 27
|
||||||
|
510 -241 1 1 0D 28
|
||||||
|
510 16 00010000D 29
|
||||||
|
510 -241 1 1 0D 30
|
||||||
|
510 17 00010000D 31
|
||||||
|
510 -241 1 1 0D 32
|
||||||
|
510 18 00010000D 33
|
||||||
|
510 -241 1 1 0D 34
|
||||||
|
510 19 00010000D 35
|
||||||
|
510 -241 1 1 0D 36
|
||||||
|
510 20 00010000D 37
|
||||||
|
510 -241 1 1 0D 38
|
||||||
|
510 21 00010000D 39
|
||||||
|
510 -241 1 1 0D 40
|
||||||
|
508 22 00010000D 41
|
||||||
|
508 2 1 0D 42
|
||||||
|
508 24 00010000D 43
|
||||||
|
508 2 1 0D 44
|
||||||
|
508 26 00010000D 45
|
||||||
|
508 2 1 0D 46
|
||||||
|
508 28 00010000D 47
|
||||||
|
508 2 1 0D 48
|
||||||
|
508 30 00010000D 49
|
||||||
|
508 1 1 0D 50
|
||||||
|
508 31 00010000D 51
|
||||||
|
508 1 1 0D 52
|
||||||
|
508 32 00010000D 53
|
||||||
|
508 1 1 0D 54
|
||||||
|
508 33 00010000D 55
|
||||||
|
508 1 1 0D 56
|
||||||
|
508 34 00010000D 57
|
||||||
|
508 1 1 0D 58
|
||||||
|
508 35 00010000D 59
|
||||||
|
508 1 1 0D 60
|
||||||
|
508 36 00010000D 61
|
||||||
|
508 1 1 0D 62
|
||||||
|
508 37 00010000D 63
|
||||||
|
508 1 1 0D 64
|
||||||
|
508 38 00010000D 65
|
||||||
|
508 1 1 0D 66
|
||||||
|
508 39 00010000D 67
|
||||||
|
508 1 1 0D 68
|
||||||
|
508 40 00010000D 69
|
||||||
|
508 1 1 0D 70
|
||||||
|
508 41 00010000D 71
|
||||||
|
508 1 1 0D 72
|
||||||
|
508 42 00010000D 73
|
||||||
|
508 3 1 0D 74
|
||||||
|
508 45 00010000D 75
|
||||||
|
508 1 1 0D 76
|
||||||
|
508 46 00010000D 77
|
||||||
|
508 1 1 0D 78
|
||||||
|
508 47 00010000D 79
|
||||||
|
508 1 1 0D 80
|
||||||
|
508 48 00010000D 81
|
||||||
|
508 1 1 0D 82
|
||||||
|
508 49 00010000D 83
|
||||||
|
508 3 1 0D 84
|
||||||
|
508 52 00010000D 85
|
||||||
|
508 1 1 0D 86
|
||||||
|
508 53 00010000D 87
|
||||||
|
508 1 1 0D 88
|
||||||
|
508 54 00010000D 89
|
||||||
|
508 1 1 0D 90
|
||||||
|
508 55 00010000D 91
|
||||||
|
508 1 1 0D 92
|
||||||
|
126 56 00010000D 93
|
||||||
|
126 0 10 0 0D 94
|
||||||
|
126 66 00010000D 95
|
||||||
|
126 0 3 0 0D 96
|
||||||
|
126 69 00010000D 97
|
||||||
|
126 0 6 0 0D 98
|
||||||
|
126 75 00010000D 99
|
||||||
|
126 0 6 0 0D 100
|
||||||
|
126 81 00010000D 101
|
||||||
|
126 0 9 0 0D 102
|
||||||
|
126 90 00010000D 103
|
||||||
|
126 0 3 0 0D 104
|
||||||
|
126 93 00010000D 105
|
||||||
|
126 0 7 0 0D 106
|
||||||
|
126 100 00010000D 107
|
||||||
|
126 0 7 0 0D 108
|
||||||
|
126 107 00010000D 109
|
||||||
|
126 0 10 0 0D 110
|
||||||
|
126 117 00010000D 111
|
||||||
|
126 0 3 0 0D 112
|
||||||
|
126 120 00010000D 113
|
||||||
|
126 0 8 0 0D 114
|
||||||
|
126 128 00010000D 115
|
||||||
|
126 0 8 0 0D 116
|
||||||
|
126 136 00010000D 117
|
||||||
|
126 0 10 0 0D 118
|
||||||
|
126 146 00010000D 119
|
||||||
|
126 0 3 0 0D 120
|
||||||
|
126 149 00010000D 121
|
||||||
|
126 0 6 0 0D 122
|
||||||
|
126 155 00010000D 123
|
||||||
|
126 0 6 0 0D 124
|
||||||
|
126 161 00010000D 125
|
||||||
|
126 0 3 0 0D 126
|
||||||
|
126 164 00010000D 127
|
||||||
|
126 0 3 0 0D 128
|
||||||
|
126 167 00010000D 129
|
||||||
|
126 0 3 0 0D 130
|
||||||
|
126 170 00010000D 131
|
||||||
|
126 0 3 0 0D 132
|
||||||
|
126 173 00010000D 133
|
||||||
|
126 0 8 0 0D 134
|
||||||
|
126 181 00010000D 135
|
||||||
|
126 0 3 0 0D 136
|
||||||
|
126 184 00010000D 137
|
||||||
|
126 0 8 0 0D 138
|
||||||
|
126 192 00010000D 139
|
||||||
|
126 0 3 0 0D 140
|
||||||
|
126 195 00010000D 141
|
||||||
|
126 0 3 0 0D 142
|
||||||
|
126 198 00010000D 143
|
||||||
|
126 0 3 0 0D 144
|
||||||
|
126 201 00010000D 145
|
||||||
|
126 0 3 0 0D 146
|
||||||
|
126 204 00010000D 147
|
||||||
|
126 0 3 0 0D 148
|
||||||
|
126 207 00010000D 149
|
||||||
|
126 0 3 0 0D 150
|
||||||
|
126 210 00010000D 151
|
||||||
|
126 0 3 0 0D 152
|
||||||
|
126 213 00010000D 153
|
||||||
|
126 0 3 0 0D 154
|
||||||
|
126 216 00010000D 155
|
||||||
|
126 0 3 0 0D 156
|
||||||
|
126 219 00010000D 157
|
||||||
|
126 0 3 0 0D 158
|
||||||
|
126 222 00010000D 159
|
||||||
|
126 0 3 0 0D 160
|
||||||
|
126 225 00010000D 161
|
||||||
|
126 0 3 0 0D 162
|
||||||
|
126 228 00010000D 163
|
||||||
|
126 0 3 0 0D 164
|
||||||
|
126 231 00010000D 165
|
||||||
|
126 0 3 0 0D 166
|
||||||
|
126 234 00010000D 167
|
||||||
|
126 0 3 0 0D 168
|
||||||
|
126 237 00010000D 169
|
||||||
|
126 0 7 0 0D 170
|
||||||
|
126 244 00010000D 171
|
||||||
|
126 0 3 0 0D 172
|
||||||
|
126 247 00010000D 173
|
||||||
|
126 0 7 0 0D 174
|
||||||
|
126 254 00010000D 175
|
||||||
|
126 0 3 0 0D 176
|
||||||
|
126 257 00010000D 177
|
||||||
|
126 0 3 0 0D 178
|
||||||
|
126 260 00010000D 179
|
||||||
|
126 0 3 0 0D 180
|
||||||
|
126 263 00010000D 181
|
||||||
|
126 0 3 0 0D 182
|
||||||
|
126 266 00010000D 183
|
||||||
|
126 0 3 0 0D 184
|
||||||
|
126 269 00010000D 185
|
||||||
|
126 0 3 0 0D 186
|
||||||
|
126 272 00010000D 187
|
||||||
|
126 0 3 0 0D 188
|
||||||
|
126 275 00010000D 189
|
||||||
|
126 0 3 0 0D 190
|
||||||
|
126 278 00010000D 191
|
||||||
|
126 0 3 0 0D 192
|
||||||
|
126 281 00010000D 193
|
||||||
|
126 0 3 0 0D 194
|
||||||
|
126 284 00010000D 195
|
||||||
|
126 0 3 0 0D 196
|
||||||
|
128 287 00010000D 197
|
||||||
|
128 0 -241 17 0 0D 198
|
||||||
|
128 304 00010000D 199
|
||||||
|
128 0 -241 15 0 0D 200
|
||||||
|
128 319 00010000D 201
|
||||||
|
128 0 -241 17 0 0D 202
|
||||||
|
128 336 00010000D 203
|
||||||
|
128 0 -241 21 0 0D 204
|
||||||
|
128 357 00010000D 205
|
||||||
|
128 0 -241 5 0 0D 206
|
||||||
|
128 362 00010000D 207
|
||||||
|
128 0 -241 13 0 0D 208
|
||||||
|
128 375 00010000D 209
|
||||||
|
128 0 -241 5 0 0D 210
|
||||||
|
128 380 00010000D 211
|
||||||
|
128 0 -241 5 0 0D 212
|
||||||
|
128 385 00010000D 213
|
||||||
|
128 0 -241 5 0 0D 214
|
||||||
|
128 390 00010000D 215
|
||||||
|
128 0 -241 5 0 0D 216
|
||||||
|
128 395 00010000D 217
|
||||||
|
128 0 -241 5 0 0D 218
|
||||||
|
128 400 00010000D 219
|
||||||
|
128 0 -241 13 0 0D 220
|
||||||
|
128 413 00010000D 221
|
||||||
|
128 0 -241 5 0 0D 222
|
||||||
|
128 418 00010000D 223
|
||||||
|
128 0 -241 5 0 0D 224
|
||||||
|
128 423 00010000D 225
|
||||||
|
128 0 -241 5 0 0D 226
|
||||||
|
128 428 00010000D 227
|
||||||
|
128 0 -241 5 0 0D 228
|
||||||
|
128 433 00010000D 229
|
||||||
|
128 0 -241 7 0 0D 230
|
||||||
|
128 440 00010000D 231
|
||||||
|
128 0 -241 7 0 0D 232
|
||||||
|
502 447 00010000D 233
|
||||||
|
502 22 1 0D 234
|
||||||
|
504 469 00010001D 235
|
||||||
|
504 15 1 0D 236
|
||||||
|
406 484 00000000D 237
|
||||||
|
406 1 15 0D 238
|
||||||
|
314 485 00000200D 239
|
||||||
|
314 1 0 0D 240
|
||||||
|
314 486 00000200D 241
|
||||||
|
314 1 0 0D 242
|
||||||
|
186,3,1,0,0,1,237; 1P 1
|
||||||
|
514,18,5,1,7,1,9,1,11,1,13,1,15,1,17,1,19,1,21,1,23,1,25,1,27,1, 3P 2
|
||||||
|
29,1,31,1,33,1,35,1,37,1,39,1; 3P 3
|
||||||
|
510,197,1,1,41; 5P 4
|
||||||
|
510,199,1,1,43; 7P 5
|
||||||
|
510,201,1,1,45; 9P 6
|
||||||
|
510,203,1,1,47; 11P 7
|
||||||
|
510,205,1,1,49; 13P 8
|
||||||
|
510,207,1,1,51; 15P 9
|
||||||
|
510,209,1,1,53; 17P 10
|
||||||
|
510,211,1,1,55; 19P 11
|
||||||
|
510,213,1,1,57; 21P 12
|
||||||
|
510,215,1,1,59; 23P 13
|
||||||
|
510,217,1,1,61; 25P 14
|
||||||
|
510,219,1,1,63; 27P 15
|
||||||
|
510,221,1,1,65; 29P 16
|
||||||
|
510,223,1,1,67; 31P 17
|
||||||
|
510,225,1,1,69; 33P 18
|
||||||
|
510,227,1,1,71; 35P 19
|
||||||
|
510,229,5,1,73,75,77,79,81; 37P 20
|
||||||
|
510,231,5,1,83,85,87,89,91; 39P 21
|
||||||
|
508,5,0,235,1,0,0,0,235,2,1,0,0,235,3,0,0,0,235,4,0,0,0,235,2,0, 41P 22
|
||||||
|
0; 41P 23
|
||||||
|
508,5,0,235,5,0,0,0,235,6,1,0,0,235,7,0,0,0,235,8,0,0,0,235,6,0, 43P 24
|
||||||
|
0; 43P 25
|
||||||
|
508,5,0,235,9,0,0,0,235,10,1,0,0,235,11,0,0,0,235,12,0,0,0,235, 45P 26
|
||||||
|
10,0,0; 45P 27
|
||||||
|
508,5,0,235,13,0,0,0,235,14,1,0,0,235,15,0,0,0,235,16,0,0,0,235, 47P 28
|
||||||
|
14,0,0; 47P 29
|
||||||
|
508,4,0,235,17,1,0,0,235,18,0,0,0,235,19,0,0,0,235,20,1,0; 49P 30
|
||||||
|
508,4,0,235,21,1,0,0,235,22,0,0,0,235,23,0,0,0,235,18,1,0; 51P 31
|
||||||
|
508,4,0,235,24,1,0,0,235,25,0,0,0,235,26,0,0,0,235,22,1,0; 53P 32
|
||||||
|
508,4,0,235,27,1,0,0,235,28,0,0,0,235,29,0,0,0,235,25,1,0; 55P 33
|
||||||
|
508,4,0,235,30,1,0,0,235,31,0,0,0,235,32,0,0,0,235,28,1,0; 57P 34
|
||||||
|
508,4,0,235,33,1,0,0,235,34,0,0,0,235,35,0,0,0,235,31,1,0; 59P 35
|
||||||
|
508,4,0,235,36,1,0,0,235,37,0,0,0,235,38,0,0,0,235,34,1,0; 61P 36
|
||||||
|
508,4,0,235,39,1,0,0,235,40,0,0,0,235,41,0,0,0,235,37,1,0; 63P 37
|
||||||
|
508,4,0,235,42,1,0,0,235,43,0,0,0,235,44,0,0,0,235,40,1,0; 65P 38
|
||||||
|
508,4,0,235,45,1,0,0,235,46,0,0,0,235,47,0,0,0,235,43,1,0; 67P 39
|
||||||
|
508,4,0,235,48,1,0,0,235,49,0,0,0,235,50,0,0,0,235,46,1,0; 69P 40
|
||||||
|
508,4,0,235,51,1,0,0,235,20,0,0,0,235,52,0,0,0,235,49,1,0; 71P 41
|
||||||
|
508,12,0,235,17,0,0,0,235,51,0,0,0,235,48,0,0,0,235,45,0,0,0, 73P 42
|
||||||
|
235,42,0,0,0,235,39,0,0,0,235,36,0,0,0,235,33,0,0,0,235,30,0,0, 73P 43
|
||||||
|
0,235,27,0,0,0,235,24,0,0,0,235,21,0,0; 73P 44
|
||||||
|
508,2,0,235,3,1,0,0,235,4,1,0; 75P 45
|
||||||
|
508,2,0,235,7,1,0,0,235,8,1,0; 77P 46
|
||||||
|
508,2,0,235,11,1,0,0,235,12,1,0; 79P 47
|
||||||
|
508,2,0,235,15,1,0,0,235,16,1,0; 81P 48
|
||||||
|
508,12,0,235,52,1,0,0,235,19,1,0,0,235,23,1,0,0,235,26,1,0,0, 83P 49
|
||||||
|
235,29,1,0,0,235,32,1,0,0,235,35,1,0,0,235,38,1,0,0,235,41,1,0, 83P 50
|
||||||
|
0,235,44,1,0,0,235,47,1,0,0,235,50,1,0; 83P 51
|
||||||
|
508,1,0,235,1,1,0; 85P 52
|
||||||
|
508,1,0,235,5,1,0; 87P 53
|
||||||
|
508,1,0,235,9,1,0; 89P 54
|
||||||
|
508,1,0,235,13,1,0; 91P 55
|
||||||
|
126,8,2,0,1,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 93P 56
|
||||||
|
3.14159265358979,3.14159265358979,4.71238898038469, 93P 57
|
||||||
|
4.71238898038469,6.28318530717959,6.28318530717959, 93P 58
|
||||||
|
6.28318530717959,1.,0.707106781186545,1.,0.707106781186545,1., 93P 59
|
||||||
|
0.707106781186545,1.,0.707106781186545,1.,29.6, 93P 60
|
||||||
|
-27.9999999999999,0.,29.6,-29.5999999999999,0.,28., 93P 61
|
||||||
|
-29.5999999999999,0.,26.4,-29.5999999999999,0.,26.4, 93P 62
|
||||||
|
-27.9999999999999,0.,26.4,-26.3999999999999,0.,28., 93P 63
|
||||||
|
-26.3999999999999,0.,29.6,-26.3999999999999,0.,29.6, 93P 64
|
||||||
|
-27.9999999999999,0.,0.,6.28318530717959,0.,0.,0.; 93P 65
|
||||||
|
126,1,1,0,0,1,0,-0.5,-0.5,0.499999999999999,0.499999999999999, 95P 66
|
||||||
|
1.,1.,29.6,-27.9999999999999,0.,29.6,-27.9999999999999,-1.6, 95P 67
|
||||||
|
-0.5,0.499999999999999,0.,0.,0.; 95P 68
|
||||||
|
126,4,2,0,0,0,0,-3.14159265358979,-3.14159265358979, 97P 69
|
||||||
|
-3.14159265358979,-1.5707963267949,-1.5707963267949,0.,0.,0.,1., 97P 70
|
||||||
|
0.707106781186545,1.,0.707106781186545,1.,26.4, 97P 71
|
||||||
|
-27.9999999999999,-1.6,26.4,-29.5999999999999,-1.6,28., 97P 72
|
||||||
|
-29.5999999999999,-1.6,29.6,-29.5999999999999,-1.6,29.6, 97P 73
|
||||||
|
-27.9999999999999,-1.6,-3.14159265358979,0.,0.,0.,0.; 97P 74
|
||||||
|
126,4,2,0,0,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 99P 75
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 99P 76
|
||||||
|
0.707106781186545,1.,0.707106781186545,1.,29.6, 99P 77
|
||||||
|
-27.9999999999999,-1.6,29.6,-26.3999999999999,-1.6,28., 99P 78
|
||||||
|
-26.3999999999999,-1.6,26.4,-26.3999999999999,-1.6,26.4, 99P 79
|
||||||
|
-27.9999999999999,-1.6,0.,3.14159265358979,0.,0.,0.; 99P 80
|
||||||
|
126,8,2,0,1,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 101P 81
|
||||||
|
3.14159265358979,3.14159265358979,4.71238898038469, 101P 82
|
||||||
|
4.71238898038469,6.28318530717959,6.28318530717959, 101P 83
|
||||||
|
6.28318530717959,1.,0.707106781186548,1.,0.707106781186548,1., 101P 84
|
||||||
|
0.707106781186548,1.,0.707106781186547,1.,1.6,0.,0.,1.6,-1.6,0., 101P 85
|
||||||
|
9.79717439317883D-17,-1.6,0.,-1.6,-1.6,0.,-1.6, 101P 86
|
||||||
|
-1.95943487863577D-16,0.,-1.6,1.6,0.,-2.93915231795365D-16,1.6, 101P 87
|
||||||
|
0.,1.6,1.6,0.,1.6,3.91886975727153D-16,0.,0.,6.28318530717959, 101P 88
|
||||||
|
0.,0.,0.; 101P 89
|
||||||
|
126,1,1,0,0,1,0,-0.5,-0.5,0.5,0.5,1.,1.,1.6, 103P 90
|
||||||
|
1.95943487863577D-16,0.,1.6,1.95943487863577D-16,-1.6,-0.5,0.5, 103P 91
|
||||||
|
0.,0.,0.; 103P 92
|
||||||
|
126,4,2,0,0,0,0,-3.14159265358979,-3.14159265358979, 105P 93
|
||||||
|
-3.14159265358979,-1.5707963267949,-1.5707963267949, 105P 94
|
||||||
|
1.22464679914736D-16,1.22464679914736D-16,1.22464679914736D-16, 105P 95
|
||||||
|
1.,0.707106781186548,1.,0.707106781186548,1.,-1.6, 105P 96
|
||||||
|
-1.95943487863577D-16,-1.6,-1.6,-1.6,-1.6,9.79717439317883D-17, 105P 97
|
||||||
|
-1.6,-1.6,1.6,-1.6,-1.6,1.6,1.95943487863577D-16,-1.6, 105P 98
|
||||||
|
-3.14159265358979,1.22464679914736D-16,0.,0.,0.; 105P 99
|
||||||
|
126,4,2,0,0,0,0,1.22464679914736D-16,1.22464679914736D-16, 107P 100
|
||||||
|
1.22464679914736D-16,1.5707963267949,1.5707963267949, 107P 101
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 107P 102
|
||||||
|
0.707106781186548,1.,0.707106781186548,1.,1.6, 107P 103
|
||||||
|
1.95943487863577D-16,-1.6,1.6,1.6,-1.6,9.79717439317883D-17,1.6, 107P 104
|
||||||
|
-1.6,-1.6,1.6,-1.6,-1.6,1.95943487863577D-16,-1.6, 107P 105
|
||||||
|
1.22464679914736D-16,3.14159265358979,0.,0.,0.; 107P 106
|
||||||
|
126,8,2,0,1,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 109P 107
|
||||||
|
3.14159265358979,3.14159265358979,4.71238898038469, 109P 108
|
||||||
|
4.71238898038469,6.28318530717959,6.28318530717959, 109P 109
|
||||||
|
6.28318530717959,1.,0.707106781186546,1.,0.707106781186547,1., 109P 110
|
||||||
|
0.707106781186547,1.,0.707106781186546,1.,29.6, 109P 111
|
||||||
|
6.21724893790088D-14,0.,29.6,-1.59999999999994,0.,28., 109P 112
|
||||||
|
-1.59999999999994,0.,26.4,-1.59999999999994,0.,26.4, 109P 113
|
||||||
|
6.19765458911452D-14,0.,26.4,1.60000000000006,0.,28., 109P 114
|
||||||
|
1.60000000000006,0.,29.6,1.60000000000006,0.,29.6, 109P 115
|
||||||
|
6.2564376354736D-14,0.,0.,6.28318530717959,0.,0.,0.; 109P 116
|
||||||
|
126,1,1,0,0,1,0,-0.5,-0.5,0.499999999999999,0.499999999999999, 111P 117
|
||||||
|
1.,1.,29.6,6.23684328668724D-14,0.,29.6,6.23684328668724D-14, 111P 118
|
||||||
|
-1.6,-0.5,0.499999999999999,0.,0.,0.; 111P 119
|
||||||
|
126,4,2,0,0,0,0,-3.14159265358979,-3.14159265358979, 113P 120
|
||||||
|
-3.14159265358979,-1.5707963267949,-1.5707963267949, 113P 121
|
||||||
|
1.22464679914747D-16,1.22464679914747D-16,1.22464679914747D-16, 113P 122
|
||||||
|
1.,0.707106781186547,1.,0.707106781186546,1.,26.4, 113P 123
|
||||||
|
6.19765458911452D-14,-1.6,26.4,-1.59999999999994,-1.6,28., 113P 124
|
||||||
|
-1.59999999999994,-1.6,29.6,-1.59999999999994,-1.6,29.6, 113P 125
|
||||||
|
6.23684328668724D-14,-1.6,-3.14159265358979, 113P 126
|
||||||
|
1.22464679914747D-16,0.,0.,0.; 113P 127
|
||||||
|
126,4,2,0,0,0,0,1.22464679914747D-16,1.22464679914747D-16, 115P 128
|
||||||
|
1.22464679914747D-16,1.5707963267949,1.5707963267949, 115P 129
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 115P 130
|
||||||
|
0.707106781186547,1.,0.707106781186547,1.,29.6, 115P 131
|
||||||
|
6.23684328668724D-14,-1.6,29.6,1.60000000000006,-1.6,28., 115P 132
|
||||||
|
1.60000000000006,-1.6,26.4,1.60000000000006,-1.6,26.4, 115P 133
|
||||||
|
6.23684328668724D-14,-1.6,1.22464679914747D-16,3.14159265358979, 115P 134
|
||||||
|
0.,0.,0.; 115P 135
|
||||||
|
126,8,2,0,1,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 117P 136
|
||||||
|
3.14159265358979,3.14159265358979,4.71238898038469, 117P 137
|
||||||
|
4.71238898038469,6.28318530717959,6.28318530717959, 117P 138
|
||||||
|
6.28318530717959,1.,0.707106781186547,1.,0.707106781186547,1., 117P 139
|
||||||
|
0.707106781186546,1.,0.707106781186546,1.,1.60000000000001,-28., 117P 140
|
||||||
|
0.,1.60000000000001,-29.6,0.,8.97975594093304D-15,-29.6,0., 117P 141
|
||||||
|
-1.59999999999999,-29.6,0.,-1.59999999999999,-28.,0., 117P 142
|
||||||
|
-1.59999999999999,-26.4,0.,8.58786896520589D-15,-26.4,0., 117P 143
|
||||||
|
1.60000000000001,-26.4,0.,1.60000000000001,-28.,0.,0., 117P 144
|
||||||
|
6.28318530717959,0.,0.,0.; 117P 145
|
||||||
|
126,1,1,0,0,1,0,-0.500000000000001,-0.500000000000001,0.5,0.5, 119P 146
|
||||||
|
1.,1.,1.60000000000001,-28.,-1.38777878078145D-16, 119P 147
|
||||||
|
1.60000000000001,-28.,-1.6,-0.500000000000001,0.5,0.,0.,0.; 119P 148
|
||||||
|
126,4,2,0,0,0,0,-3.14159265358979,-3.14159265358979, 121P 149
|
||||||
|
-3.14159265358979,-1.5707963267949,-1.5707963267949,0.,0.,0.,1., 121P 150
|
||||||
|
0.707106781186547,1.,0.707106781186547,1.,-1.59999999999999, 121P 151
|
||||||
|
-28.,-1.6,-1.59999999999999,-29.6,-1.6,8.97975594093304D-15, 121P 152
|
||||||
|
-29.6,-1.6,1.60000000000001,-29.6,-1.6,1.60000000000001,-28., 121P 153
|
||||||
|
-1.6,-3.14159265358979,0.,0.,0.,0.; 121P 154
|
||||||
|
126,4,2,0,0,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 123P 155
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 123P 156
|
||||||
|
0.707106781186547,1.,0.707106781186547,1.,1.60000000000001,-28., 123P 157
|
||||||
|
-1.6,1.60000000000001,-26.4,-1.6,8.97975594093304D-15,-26.4, 123P 158
|
||||||
|
-1.6,-1.59999999999999,-26.4,-1.6,-1.59999999999999,-28.,-1.6, 123P 159
|
||||||
|
0.,3.14159265358979,0.,0.,0.; 123P 160
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 125P 161
|
||||||
|
-3.35292539815827,-1.6,-11.0000000000002,-3.35292539815827,-1.6, 125P 162
|
||||||
|
0.,1.,0.,0.,0.; 125P 163
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-11.0000000000002, 127P 164
|
||||||
|
-3.35292539815827,0.,-11.0000000000002,-3.35292539815827,-1.6, 127P 165
|
||||||
|
0.,1.,0.,0.,0.; 127P 166
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 129P 167
|
||||||
|
-3.35292539815827,0.,-11.0000000000002,-3.35292539815827,0.,0., 129P 168
|
||||||
|
1.,0.,0.,0.; 129P 169
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 131P 170
|
||||||
|
-3.35292539815827,0.,-14.3056266003596,-3.35292539815827,-1.6, 131P 171
|
||||||
|
0.,1.,0.,0.,0.; 131P 172
|
||||||
|
126,4,2,0,0,0,0,6.69597285349659D-16,6.69597285349659D-16, 133P 173
|
||||||
|
6.69597285349659D-16,1.5707963267949,1.5707963267949, 133P 174
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 133P 175
|
||||||
|
0.707106781186548,1.,0.707106781186548,1.,-11.0000000000002, 133P 176
|
||||||
|
-3.35292539815827,-1.6,-7.68390822688196,-3.35292539815827,-1.6, 133P 177
|
||||||
|
-7.68390822688196,-6.66901717127651,-1.6,-7.68390822688196, 133P 178
|
||||||
|
-9.98510894439475,-1.6,-11.0000000000002,-9.98510894439475,-1.6, 133P 179
|
||||||
|
6.69597285349659D-16,3.14159265358979,0.,0.,0.; 133P 180
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-11.0000000000002, 135P 181
|
||||||
|
-9.98510894439476,0.,-11.0000000000002,-9.98510894439476,-1.6, 135P 182
|
||||||
|
0.,1.,0.,0.,0.; 135P 183
|
||||||
|
126,4,2,0,0,0,0,6.69597285349659D-16,6.69597285349659D-16, 137P 184
|
||||||
|
6.69597285349659D-16,1.5707963267949,1.5707963267949, 137P 185
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 137P 186
|
||||||
|
0.707106781186548,1.,0.707106781186548,1.,-11.0000000000002, 137P 187
|
||||||
|
-3.35292539815827,0.,-7.68390822688196,-3.35292539815827,0., 137P 188
|
||||||
|
-7.68390822688196,-6.66901717127651,0.,-7.68390822688196, 137P 189
|
||||||
|
-9.98510894439475,0.,-11.0000000000002,-9.98510894439475,0., 137P 190
|
||||||
|
6.69597285349659D-16,3.14159265358979,0.,0.,0.; 137P 191
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-11.0000000000002, 139P 192
|
||||||
|
-9.98510894439476,-1.6,-14.3056266003596,-9.98510894439476,-1.6, 139P 193
|
||||||
|
0.,1.,0.,0.,0.; 139P 194
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 141P 195
|
||||||
|
-9.98510894439476,0.,-14.3056266003596,-9.98510894439476,-1.6, 141P 196
|
||||||
|
0.,1.,0.,0.,0.; 141P 197
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-11.0000000000002, 143P 198
|
||||||
|
-9.98510894439476,0.,-14.3056266003596,-9.98510894439476,0.,0., 143P 199
|
||||||
|
1.,0.,0.,0.; 143P 200
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 145P 201
|
||||||
|
-9.98510894439476,-1.6,-14.3056266003596,-42.83098282869,-1.6, 145P 202
|
||||||
|
0.,1.,0.,0.,0.; 145P 203
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 147P 204
|
||||||
|
-42.83098282869,0.,-14.3056266003596,-42.83098282869,-1.6,0.,1., 147P 205
|
||||||
|
0.,0.,0.; 147P 206
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 149P 207
|
||||||
|
-9.98510894439476,0.,-14.3056266003596,-42.83098282869,0.,0.,1., 149P 208
|
||||||
|
0.,0.,0.; 149P 209
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 151P 210
|
||||||
|
-42.83098282869,-1.6,42.3056266003596,-42.83098282869,-1.6,0., 151P 211
|
||||||
|
1.,0.,0.,0.; 151P 212
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 153P 213
|
||||||
|
-42.83098282869,0.,42.3056266003596,-42.83098282869,-1.6,0.,1., 153P 214
|
||||||
|
0.,0.,0.; 153P 215
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 155P 216
|
||||||
|
-42.83098282869,0.,42.3056266003596,-42.83098282869,0.,0.,1.,0., 155P 217
|
||||||
|
0.,0.; 155P 218
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 157P 219
|
||||||
|
-42.83098282869,-1.6,42.3056266003596,-9.9851089443952,-1.6,0., 157P 220
|
||||||
|
1.,0.,0.,0.; 157P 221
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 159P 222
|
||||||
|
-9.9851089443952,0.,42.3056266003596,-9.9851089443952,-1.6,0., 159P 223
|
||||||
|
1.,0.,0.,0.; 159P 224
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 161P 225
|
||||||
|
-42.83098282869,0.,42.3056266003596,-9.9851089443952,0.,0.,1., 161P 226
|
||||||
|
0.,0.,0.; 161P 227
|
||||||
|
126,1,1,0,0,1,0,0.,0.,0.999999999999999,0.999999999999999,1.,1., 163P 228
|
||||||
|
42.3056266003596,-9.9851089443952,-1.6,38.9999999999998, 163P 229
|
||||||
|
-9.9851089443952,-1.6,0.,0.999999999999999,0.,0.,0.; 163P 230
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,38.9999999999998, 165P 231
|
||||||
|
-9.9851089443952,0.,38.9999999999998,-9.9851089443952,-1.6,0., 165P 232
|
||||||
|
1.,0.,0.,0.; 165P 233
|
||||||
|
126,1,1,0,0,1,0,0.,0.,0.999999999999999,0.999999999999999,1.,1., 167P 234
|
||||||
|
42.3056266003596,-9.9851089443952,0.,38.9999999999998, 167P 235
|
||||||
|
-9.9851089443952,0.,0.,0.999999999999999,0.,0.,0.; 167P 236
|
||||||
|
126,4,2,0,0,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 169P 237
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 169P 238
|
||||||
|
0.707106781186547,1.,0.707106781186546,1.,38.9999999999998, 169P 239
|
||||||
|
-9.98510894439519,-1.6,35.6839082268816,-9.98510894439519,-1.6, 169P 240
|
||||||
|
35.6839082268816,-6.66901717127695,-1.6,35.6839082268816, 169P 241
|
||||||
|
-3.35292539815871,-1.6,38.9999999999998,-3.35292539815871,-1.6, 169P 242
|
||||||
|
0.,3.14159265358979,0.,0.,0.; 169P 243
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,38.9999999999998, 171P 244
|
||||||
|
-3.35292539815871,0.,38.9999999999998,-3.35292539815871,-1.6,0., 171P 245
|
||||||
|
1.,0.,0.,0.; 171P 246
|
||||||
|
126,4,2,0,0,0,0,0.,0.,0.,1.5707963267949,1.5707963267949, 173P 247
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1., 173P 248
|
||||||
|
0.707106781186547,1.,0.707106781186546,1.,38.9999999999998, 173P 249
|
||||||
|
-9.98510894439519,0.,35.6839082268816,-9.98510894439519,0., 173P 250
|
||||||
|
35.6839082268816,-6.66901717127695,0.,35.6839082268816, 173P 251
|
||||||
|
-3.35292539815871,0.,38.9999999999998,-3.35292539815871,0.,0., 173P 252
|
||||||
|
3.14159265358979,0.,0.,0.; 173P 253
|
||||||
|
126,1,1,0,0,1,0,0.,0.,0.999999999999999,0.999999999999999,1.,1., 175P 254
|
||||||
|
38.9999999999998,-3.35292539815871,-1.6,42.3056266003596, 175P 255
|
||||||
|
-3.35292539815871,-1.6,0.,0.999999999999999,0.,0.,0.; 175P 256
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 177P 257
|
||||||
|
-3.35292539815871,0.,42.3056266003596,-3.35292539815871,-1.6,0., 177P 258
|
||||||
|
1.,0.,0.,0.; 177P 259
|
||||||
|
126,1,1,0,0,1,0,0.,0.,0.999999999999999,0.999999999999999,1.,1., 179P 260
|
||||||
|
38.9999999999998,-3.35292539815871,0.,42.3056266003596, 179P 261
|
||||||
|
-3.35292539815871,0.,0.,0.999999999999999,0.,0.,0.; 179P 262
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 181P 263
|
||||||
|
-3.35292539815871,-1.6,42.3056266003596,14.8309828286996,-1.6, 181P 264
|
||||||
|
0.,1.,0.,0.,0.; 181P 265
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 183P 266
|
||||||
|
14.8309828286996,0.,42.3056266003596,14.8309828286996,-1.6,0., 183P 267
|
||||||
|
1.,0.,0.,0.; 183P 268
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 185P 269
|
||||||
|
-3.35292539815871,0.,42.3056266003596,14.8309828286996,0.,0.,1., 185P 270
|
||||||
|
0.,0.,0.; 185P 271
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 187P 272
|
||||||
|
14.8309828286996,-1.6,-14.3056266003596,14.8309828286996,-1.6, 187P 273
|
||||||
|
0.,1.,0.,0.,0.; 187P 274
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 189P 275
|
||||||
|
14.8309828286996,0.,-14.3056266003596,14.8309828286996,-1.6,0., 189P 276
|
||||||
|
1.,0.,0.,0.; 189P 277
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,42.3056266003596, 191P 278
|
||||||
|
14.8309828286996,0.,-14.3056266003596,14.8309828286996,0.,0.,1., 191P 279
|
||||||
|
0.,0.,0.; 191P 280
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 193P 281
|
||||||
|
14.8309828286996,-1.6,-14.3056266003596,-3.35292539815827,-1.6, 193P 282
|
||||||
|
0.,1.,0.,0.,0.; 193P 283
|
||||||
|
126,1,1,0,0,1,0,0.,0.,1.,1.,1.,1.,-14.3056266003596, 195P 284
|
||||||
|
14.8309828286996,0.,-14.3056266003596,-3.35292539815827,0.,0., 195P 285
|
||||||
|
1.,0.,0.,0.; 195P 286
|
||||||
|
128,1,8,1,2,0,1,0,0,1,-0.499999999999999,-0.499999999999999,0.5, 197P 287
|
||||||
|
0.5,-3.14159265358979,-3.14159265358979,-3.14159265358979, 197P 288
|
||||||
|
-1.5707963267949,-1.5707963267949,0.,0.,1.5707963267949, 197P 289
|
||||||
|
1.5707963267949,3.14159265358979,3.14159265358979, 197P 290
|
||||||
|
3.14159265358979,1.,1.,0.707106781186548,0.707106781186548,1., 197P 291
|
||||||
|
1.,0.707106781186548,0.707106781186548,1.,1.,0.707106781186548, 197P 292
|
||||||
|
0.707106781186548,1.,1.,0.707106781186548,0.707106781186548,1., 197P 293
|
||||||
|
1.,29.6,-27.9999999999999,-1.6,29.6,-27.9999999999999,0.,29.6, 197P 294
|
||||||
|
-26.3999999999999,-1.6,29.6,-26.3999999999999,0.,28., 197P 295
|
||||||
|
-26.3999999999999,-1.6,28.,-26.3999999999999,0.,26.4, 197P 296
|
||||||
|
-26.3999999999999,-1.6,26.4,-26.3999999999999,0.,26.4, 197P 297
|
||||||
|
-27.9999999999999,-1.6,26.4,-27.9999999999999,0.,26.4, 197P 298
|
||||||
|
-29.5999999999999,-1.6,26.4,-29.5999999999999,0.,28., 197P 299
|
||||||
|
-29.5999999999999,-1.6,28.,-29.5999999999999,0.,29.6, 197P 300
|
||||||
|
-29.5999999999999,-1.6,29.6,-29.5999999999999,0.,29.6, 197P 301
|
||||||
|
-27.9999999999999,-1.6,29.6,-27.9999999999999,0., 197P 302
|
||||||
|
-0.499999999999999,0.5,-3.14159265358979,3.14159265358979; 197P 303
|
||||||
|
128,1,8,1,2,0,1,0,0,1,-0.5,-0.5,0.5,0.5,-3.14159265358979, 199P 304
|
||||||
|
-3.14159265358979,-3.14159265358979,-1.5707963267949, 199P 305
|
||||||
|
-1.5707963267949,0.,0.,1.5707963267949,1.5707963267949, 199P 306
|
||||||
|
3.14159265358979,3.14159265358979,3.14159265358979,1.,1., 199P 307
|
||||||
|
0.707106781186548,0.707106781186548,1.,1.,0.707106781186548, 199P 308
|
||||||
|
0.707106781186548,1.,1.,0.707106781186548,0.707106781186548,1., 199P 309
|
||||||
|
1.,0.707106781186548,0.707106781186548,1.,1.,1.6, 199P 310
|
||||||
|
1.95943487863577D-16,-1.6,1.6,1.95943487863577D-16,0.,1.6,1.6, 199P 311
|
||||||
|
-1.6,1.6,1.6,0.,-1.95943487863577D-16,1.6,-1.6, 199P 312
|
||||||
|
-1.95943487863577D-16,1.6,0.,-1.6,1.6,-1.6,-1.6,1.6,0.,-1.6, 199P 313
|
||||||
|
-1.95943487863577D-16,-1.6,-1.6,-1.95943487863577D-16,0.,-1.6, 199P 314
|
||||||
|
-1.6,-1.6,-1.6,-1.6,0.,1.95943487863577D-16,-1.6,-1.6, 199P 315
|
||||||
|
1.95943487863577D-16,-1.6,0.,1.6,-1.6,-1.6,1.6,-1.6,0.,1.6, 199P 316
|
||||||
|
1.95943487863577D-16,-1.6,1.6,1.95943487863577D-16,0.,-0.5,0.5, 199P 317
|
||||||
|
-3.14159265358979,3.14159265358979; 199P 318
|
||||||
|
128,1,8,1,2,0,1,0,0,1,-0.499999999999999,-0.499999999999999,0.5, 201P 319
|
||||||
|
0.5,-3.14159265358979,-3.14159265358979,-3.14159265358979, 201P 320
|
||||||
|
-1.5707963267949,-1.5707963267949,0.,0.,1.5707963267949, 201P 321
|
||||||
|
1.5707963267949,3.14159265358979,3.14159265358979, 201P 322
|
||||||
|
3.14159265358979,1.,1.,0.707106781186548,0.707106781186548,1., 201P 323
|
||||||
|
1.,0.707106781186548,0.707106781186548,1.,1.,0.707106781186548, 201P 324
|
||||||
|
0.707106781186548,1.,1.,0.707106781186548,0.707106781186548,1., 201P 325
|
||||||
|
1.,29.6,6.23684328668724D-14,-1.6,29.6,6.23684328668724D-14,0., 201P 326
|
||||||
|
29.6,1.60000000000006,-1.6,29.6,1.60000000000006,0.,28., 201P 327
|
||||||
|
1.60000000000006,-1.6,28.,1.60000000000006,0.,26.4, 201P 328
|
||||||
|
1.60000000000006,-1.6,26.4,1.60000000000006,0.,26.4, 201P 329
|
||||||
|
6.19765458911452D-14,-1.6,26.4,6.19765458911452D-14,0.,26.4, 201P 330
|
||||||
|
-1.59999999999994,-1.6,26.4,-1.59999999999994,0.,28., 201P 331
|
||||||
|
-1.59999999999994,-1.6,28.,-1.59999999999994,0.,29.6, 201P 332
|
||||||
|
-1.59999999999994,-1.6,29.6,-1.59999999999994,0.,29.6, 201P 333
|
||||||
|
6.23684328668724D-14,-1.6,29.6,6.23684328668724D-14,0., 201P 334
|
||||||
|
-0.499999999999999,0.5,-3.14159265358979,3.14159265358979; 201P 335
|
||||||
|
128,1,8,1,2,0,1,0,0,1,-0.5,-0.5,0.500000000000001, 203P 336
|
||||||
|
0.500000000000001,-3.14159265358979,-3.14159265358979, 203P 337
|
||||||
|
-3.14159265358979,-1.5707963267949,-1.5707963267949,0.,0., 203P 338
|
||||||
|
1.5707963267949,1.5707963267949,3.14159265358979, 203P 339
|
||||||
|
3.14159265358979,3.14159265358979,1.,1.,0.707106781186548, 203P 340
|
||||||
|
0.707106781186548,1.,1.,0.707106781186548,0.707106781186548,1., 203P 341
|
||||||
|
1.,0.707106781186548,0.707106781186548,1.,1.,0.707106781186548, 203P 342
|
||||||
|
0.707106781186548,1.,1.,1.60000000000001,-28.,-1.6, 203P 343
|
||||||
|
1.60000000000001,-28.,-1.38777878078145D-16,1.60000000000001, 203P 344
|
||||||
|
-26.4,-1.6,1.60000000000001,-26.4,-1.38777878078145D-16, 203P 345
|
||||||
|
9.15933995315754D-15,-26.4,-1.6,9.15933995315754D-15,-26.4, 203P 346
|
||||||
|
-1.38777878078145D-16,-1.59999999999999,-26.4,-1.6, 203P 347
|
||||||
|
-1.59999999999999,-26.4,-1.38777878078145D-16,-1.59999999999999, 203P 348
|
||||||
|
-28.,-1.6,-1.59999999999999,-28.,-1.38777878078145D-16, 203P 349
|
||||||
|
-1.59999999999999,-29.6,-1.6,-1.59999999999999,-29.6, 203P 350
|
||||||
|
-1.38777878078145D-16,9.15933995315754D-15,-29.6,-1.6, 203P 351
|
||||||
|
9.15933995315754D-15,-29.6,-1.38777878078145D-16, 203P 352
|
||||||
|
1.60000000000001,-29.6,-1.6,1.60000000000001,-29.6, 203P 353
|
||||||
|
-1.38777878078145D-16,1.60000000000001,-28.,-1.6, 203P 354
|
||||||
|
1.60000000000001,-28.,-1.38777878078145D-16,-0.5, 203P 355
|
||||||
|
0.500000000000001,-3.14159265358979,3.14159265358979; 203P 356
|
||||||
|
128,1,1,1,1,0,0,1,0,0,0.,0.,0.16,0.16,0.,0.,0.33056266003594, 205P 357
|
||||||
|
0.33056266003594,1.,1.,1.,1.,-14.3056266003596, 205P 358
|
||||||
|
-3.35292539815827,0.,-14.3056266003596,-3.35292539815827,-1.6, 205P 359
|
||||||
|
-11.0000000000002,-3.35292539815827,0.,-11.0000000000002, 205P 360
|
||||||
|
-3.35292539815827,-1.6,0.,0.16,0.,0.33056266003594; 205P 361
|
||||||
|
128,1,4,1,2,0,0,0,0,0,-0.241247846783122,-0.241247846783122, 207P 362
|
||||||
|
0.241247846783122,0.241247846783122,0.,0.,0.,1.5707963267949, 207P 363
|
||||||
|
1.5707963267949,3.14159265358979,3.14159265358979, 207P 364
|
||||||
|
3.14159265358979,1.,1.,0.707106781186548,0.707106781186548,1., 207P 365
|
||||||
|
1.,0.707106781186548,0.707106781186548,1.,1.,-11.0000000000002, 207P 366
|
||||||
|
-3.35292539815827,0.,-11.0000000000002,-3.35292539815827,-1.6, 207P 367
|
||||||
|
-7.68390822688196,-3.35292539815827,0.,-7.68390822688196, 207P 368
|
||||||
|
-3.35292539815827,-1.6,-7.68390822688196,-6.66901717127651,0., 207P 369
|
||||||
|
-7.68390822688196,-6.66901717127651,-1.6,-7.68390822688196, 207P 370
|
||||||
|
-9.98510894439475,0.,-7.68390822688196,-9.98510894439475,-1.6, 207P 371
|
||||||
|
-11.0000000000002,-9.98510894439475,0.,-11.0000000000002, 207P 372
|
||||||
|
-9.98510894439475,-1.6,-0.241247846783122,0.241247846783122,0., 207P 373
|
||||||
|
3.14159265358979; 207P 374
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-0.16,-0.16,0.,0.,-0.33056266003594, 209P 375
|
||||||
|
-0.33056266003594,0.,0.,1.,1.,1.,1.,-14.3056266003596, 209P 376
|
||||||
|
-9.98510894439476,-1.6,-14.3056266003596,-9.98510894439476,0., 209P 377
|
||||||
|
-11.0000000000002,-9.98510894439476,-1.6,-11.0000000000002, 209P 378
|
||||||
|
-9.98510894439476,0.,-0.16,0.,-0.33056266003594,0.; 209P 379
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-0.16,-0.16,0.,0.,-3.28458738842953, 211P 380
|
||||||
|
-3.28458738842953,0.,0.,1.,1.,1.,1.,-14.3056266003596, 211P 381
|
||||||
|
-42.83098282869,-1.6,-14.3056266003596,-42.83098282869,0., 211P 382
|
||||||
|
-14.3056266003596,-9.98510894439476,-1.6,-14.3056266003596, 211P 383
|
||||||
|
-9.98510894439476,0.,-0.16,0.,-3.28458738842953,0.; 211P 384
|
||||||
|
128,1,1,1,1,0,0,1,0,0,0.,0.,0.16,0.16,0.,0.,5.66112532007192, 213P 385
|
||||||
|
5.66112532007192,1.,1.,1.,1.,-14.3056266003596,-42.83098282869, 213P 386
|
||||||
|
0.,-14.3056266003596,-42.83098282869,-1.6,42.3056266003596, 213P 387
|
||||||
|
-42.83098282869,0.,42.3056266003596,-42.83098282869,-1.6,0., 213P 388
|
||||||
|
0.16,0.,5.66112532007192; 213P 389
|
||||||
|
128,1,1,1,1,0,0,1,0,0,0.,0.,0.16,0.16,0.,0.,3.28458738842948, 215P 390
|
||||||
|
3.28458738842948,1.,1.,1.,1.,42.3056266003596,-42.83098282869, 215P 391
|
||||||
|
0.,42.3056266003596,-42.83098282869,-1.6,42.3056266003596, 215P 392
|
||||||
|
-9.9851089443952,0.,42.3056266003596,-9.9851089443952,-1.6,0., 215P 393
|
||||||
|
0.16,0.,3.28458738842948; 215P 394
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-0.16,-0.16,0.,0.,-0.33056266003598, 217P 395
|
||||||
|
-0.33056266003598,0.,0.,1.,1.,1.,1.,38.9999999999998, 217P 396
|
||||||
|
-9.9851089443952,-1.6,38.9999999999998,-9.9851089443952,0., 217P 397
|
||||||
|
42.3056266003596,-9.9851089443952,-1.6,42.3056266003596, 217P 398
|
||||||
|
-9.9851089443952,0.,-0.16,0.,-0.33056266003598,0.; 217P 399
|
||||||
|
128,1,4,1,2,0,0,0,0,0,-0.241247846783121,-0.241247846783121, 219P 400
|
||||||
|
0.241247846783121,0.241247846783121,0.,0.,0.,1.5707963267949, 219P 401
|
||||||
|
1.5707963267949,3.14159265358979,3.14159265358979, 219P 402
|
||||||
|
3.14159265358979,1.,1.,0.707106781186548,0.707106781186548,1., 219P 403
|
||||||
|
1.,0.707106781186548,0.707106781186548,1.,1.,38.9999999999998, 219P 404
|
||||||
|
-9.9851089443952,0.,38.9999999999998,-9.9851089443952,-1.6, 219P 405
|
||||||
|
35.6839082268816,-9.9851089443952,0.,35.6839082268816, 219P 406
|
||||||
|
-9.9851089443952,-1.6,35.6839082268816,-6.66901717127695,0., 219P 407
|
||||||
|
35.6839082268816,-6.66901717127695,-1.6,35.6839082268816, 219P 408
|
||||||
|
-3.3529253981587,0.,35.6839082268816,-3.3529253981587,-1.6, 219P 409
|
||||||
|
38.9999999999998,-3.3529253981587,0.,38.9999999999998, 219P 410
|
||||||
|
-3.3529253981587,-1.6,-0.241247846783121,0.241247846783121,0., 219P 411
|
||||||
|
3.14159265358979; 219P 412
|
||||||
|
128,1,1,1,1,0,0,1,0,0,0.,0.,0.16,0.16,0.,0.,0.33056266003598, 221P 413
|
||||||
|
0.33056266003598,1.,1.,1.,1.,38.9999999999998,-3.35292539815871, 221P 414
|
||||||
|
0.,38.9999999999998,-3.35292539815871,-1.6,42.3056266003596, 221P 415
|
||||||
|
-3.35292539815871,0.,42.3056266003596,-3.35292539815871,-1.6,0., 221P 416
|
||||||
|
0.16,0.,0.33056266003598; 221P 417
|
||||||
|
128,1,1,1,1,0,0,1,0,0,0.,0.,0.16,0.16,0.,0.,1.81839082268583, 223P 418
|
||||||
|
1.81839082268583,1.,1.,1.,1.,42.3056266003596,-3.35292539815871, 223P 419
|
||||||
|
0.,42.3056266003596,-3.35292539815871,-1.6,42.3056266003596, 223P 420
|
||||||
|
14.8309828286996,0.,42.3056266003596,14.8309828286996,-1.6,0., 223P 421
|
||||||
|
0.16,0.,1.81839082268583; 223P 422
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-0.16,-0.16,0.,0.,-5.66112532007192, 225P 423
|
||||||
|
-5.66112532007192,0.,0.,1.,1.,1.,1.,-14.3056266003596, 225P 424
|
||||||
|
14.8309828286996,-1.6,-14.3056266003596,14.8309828286996,0., 225P 425
|
||||||
|
42.3056266003596,14.8309828286996,-1.6,42.3056266003596, 225P 426
|
||||||
|
14.8309828286996,0.,-0.16,0.,-5.66112532007192,0.; 225P 427
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-0.16,-0.16,0.,0.,-1.81839082268579, 227P 428
|
||||||
|
-1.81839082268579,0.,0.,1.,1.,1.,1.,-14.3056266003596, 227P 429
|
||||||
|
-3.35292539815827,-1.6,-14.3056266003596,-3.35292539815827,0., 227P 430
|
||||||
|
-14.3056266003596,14.8309828286996,-1.6,-14.3056266003596, 227P 431
|
||||||
|
14.8309828286996,0.,-0.16,0.,-1.81839082268579,0.; 227P 432
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-2.83056266003595,-2.83056266003595, 229P 433
|
||||||
|
2.83056266003597,2.83056266003597,-2.94423511048519, 229P 434
|
||||||
|
-2.94423511048519,2.82196145525377,2.82196145525377,1.,1.,1.,1., 229P 435
|
||||||
|
42.3056266003596,-42.83098282869,-1.6,-14.3056266003596, 229P 436
|
||||||
|
-42.83098282869,-1.6,42.3056266003596,14.8309828286996,-1.6, 229P 437
|
||||||
|
-14.3056266003596,14.8309828286996,-1.6,-2.83056266003595, 229P 438
|
||||||
|
2.83056266003597,-2.94423511048519,2.82196145525377; 229P 439
|
||||||
|
128,1,1,1,1,0,0,1,0,0,-2.83056266003597,-2.83056266003597, 231P 440
|
||||||
|
2.83056266003595,2.83056266003595,-2.94423511048519, 231P 441
|
||||||
|
-2.94423511048519,2.82196145525377,2.82196145525377,1.,1.,1.,1., 231P 442
|
||||||
|
-14.3056266003596,-42.83098282869,0.,42.3056266003596, 231P 443
|
||||||
|
-42.83098282869,0.,-14.3056266003596,14.8309828286996,0., 231P 444
|
||||||
|
42.3056266003596,14.8309828286996,0.,-2.83056266003597, 231P 445
|
||||||
|
2.83056266003595,-2.94423511048519,2.82196145525377; 231P 446
|
||||||
|
502,36,29.6,-27.9999999999999,0.,29.6,-27.9999999999999,-1.6, 233P 447
|
||||||
|
26.4,-27.9999999999999,-1.6,1.6,0.,0.,1.6,1.95943487863577D-16, 233P 448
|
||||||
|
-1.6,-1.6,-1.9593701661158D-16,-1.6,29.6,6.21724893790088D-14, 233P 449
|
||||||
|
0.,29.6,6.23684328668724D-14,-1.6,26.4,6.19765523623972D-14, 233P 450
|
||||||
|
-1.6,1.60000000000001,-28.,0.,1.60000000000001,-28.,-1.6, 233P 451
|
||||||
|
-1.59999999999999,-28.,-1.6,-14.3056266003596,-3.35292539815827, 233P 452
|
||||||
|
-1.6,-11.0000000000002,-3.35292539815827,-1.6,-11.0000000000002, 233P 453
|
||||||
|
-3.35292539815827,0.,-14.3056266003596,-3.35292539815827,0., 233P 454
|
||||||
|
-11.0000000000002,-9.98510894439476,-1.6,-11.0000000000002, 233P 455
|
||||||
|
-9.98510894439476,0.,-14.3056266003596,-9.98510894439476,-1.6, 233P 456
|
||||||
|
-14.3056266003596,-9.98510894439476,0.,-14.3056266003596, 233P 457
|
||||||
|
-42.83098282869,-1.6,-14.3056266003596,-42.83098282869,0., 233P 458
|
||||||
|
42.3056266003596,-42.83098282869,-1.6,42.3056266003596, 233P 459
|
||||||
|
-42.83098282869,0.,42.3056266003596,-9.9851089443952,-1.6, 233P 460
|
||||||
|
42.3056266003596,-9.9851089443952,0.,38.9999999999998, 233P 461
|
||||||
|
-9.9851089443952,-1.6,38.9999999999998,-9.9851089443952,0., 233P 462
|
||||||
|
38.9999999999998,-3.35292539815871,-1.6,38.9999999999998, 233P 463
|
||||||
|
-3.35292539815871,0.,42.3056266003596,-3.35292539815871,-1.6, 233P 464
|
||||||
|
42.3056266003596,-3.35292539815871,0.,42.3056266003596, 233P 465
|
||||||
|
14.8309828286996,-1.6,42.3056266003596,14.8309828286996,0., 233P 466
|
||||||
|
-14.3056266003596,14.8309828286996,-1.6,-14.3056266003596, 233P 467
|
||||||
|
14.8309828286996,0.; 233P 468
|
||||||
|
504,52,93,233,1,233,1,95,233,1,233,2,97,233,3,233,2,99,233,2, 235P 469
|
||||||
|
233,3,101,233,4,233,4,103,233,4,233,5,105,233,6,233,5,107,233,5, 235P 470
|
||||||
|
233,6,109,233,7,233,7,111,233,7,233,8,113,233,9,233,8,115,233,8, 235P 471
|
||||||
|
233,9,117,233,10,233,10,119,233,10,233,11,121,233,12,233,11,123, 235P 472
|
||||||
|
233,11,233,12,125,233,13,233,14,127,233,15,233,14,129,233,16, 235P 473
|
||||||
|
233,15,131,233,16,233,13,133,233,14,233,17,135,233,18,233,17, 235P 474
|
||||||
|
137,233,15,233,18,139,233,17,233,19,141,233,20,233,19,143,233, 235P 475
|
||||||
|
18,233,20,145,233,19,233,21,147,233,22,233,21,149,233,20,233,22, 235P 476
|
||||||
|
151,233,21,233,23,153,233,24,233,23,155,233,22,233,24,157,233, 235P 477
|
||||||
|
23,233,25,159,233,26,233,25,161,233,24,233,26,163,233,25,233,27, 235P 478
|
||||||
|
165,233,28,233,27,167,233,26,233,28,169,233,27,233,29,171,233, 235P 479
|
||||||
|
30,233,29,173,233,28,233,30,175,233,29,233,31,177,233,32,233,31, 235P 480
|
||||||
|
179,233,30,233,32,181,233,31,233,33,183,233,34,233,33,185,233, 235P 481
|
||||||
|
32,233,34,187,233,33,233,35,189,233,36,233,35,191,233,34,233,36, 235P 482
|
||||||
|
193,233,35,233,13,195,233,36,233,16; 235P 483
|
||||||
|
406,1,7HSolide1; 237P 484
|
||||||
|
314,74.9019607843137,74.9019607843137,74.9019607843137,; 239P 485
|
||||||
|
314,6.66666666666667,75.6862745098039,32.9411764705882,; 241P 486
|
||||||
|
S 1G 3D 242P 486 T 1
|
BIN
hardware/meca/Chargeur/1593K PCB.ipt
Normal file
BIN
hardware/meca/Chargeur/1593K PCB.ipt
Normal file
Binary file not shown.
BIN
hardware/meca/Chargeur/1593K PCB.stl
Normal file
BIN
hardware/meca/Chargeur/1593K PCB.stl
Normal file
Binary file not shown.
661
hardware/meca/Chargeur/1593K PCB.stp
Normal file
661
hardware/meca/Chargeur/1593K PCB.stp
Normal file
|
@ -0,0 +1,661 @@
|
||||||
|
ISO-10303-21;
|
||||||
|
HEADER;
|
||||||
|
/* Generated by software containing ST-Developer
|
||||||
|
* from STEP Tools, Inc. (www.steptools.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
FILE_DESCRIPTION(
|
||||||
|
/* description */ (''),
|
||||||
|
/* implementation_level */ '2;1');
|
||||||
|
|
||||||
|
FILE_NAME(
|
||||||
|
/* name */
|
||||||
|
'D:\\Users\\dimercur\\Documents\\SVN\\projets-gei\\Dumber 2015\\Mecani
|
||||||
|
que\\Chargeur\\1593K PCB.stp',
|
||||||
|
/* time_stamp */ '2016-09-20T15:05:27+02:00',
|
||||||
|
/* author */ ('dimercur'),
|
||||||
|
/* organization */ (''),
|
||||||
|
/* preprocessor_version */ 'ST-DEVELOPER v16.1',
|
||||||
|
/* originating_system */ 'Autodesk Inventor 2016',
|
||||||
|
/* authorisation */ '');
|
||||||
|
|
||||||
|
FILE_SCHEMA (('AUTOMOTIVE_DESIGN { 1 0 10303 214 3 1 1 }'));
|
||||||
|
ENDSEC;
|
||||||
|
|
||||||
|
DATA;
|
||||||
|
#10=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION('',(#13),#575);
|
||||||
|
#11=SHAPE_REPRESENTATION_RELATIONSHIP('SRR','None',#584,#12);
|
||||||
|
#12=ADVANCED_BREP_SHAPE_REPRESENTATION('',(#14),#574);
|
||||||
|
#13=STYLED_ITEM('',(#594),#14);
|
||||||
|
#14=MANIFOLD_SOLID_BREP('Solide1',#351);
|
||||||
|
#15=LINE('',#501,#47);
|
||||||
|
#16=LINE('',#503,#48);
|
||||||
|
#17=LINE('',#505,#49);
|
||||||
|
#18=LINE('',#506,#50);
|
||||||
|
#19=LINE('',#511,#51);
|
||||||
|
#20=LINE('',#515,#52);
|
||||||
|
#21=LINE('',#517,#53);
|
||||||
|
#22=LINE('',#518,#54);
|
||||||
|
#23=LINE('',#521,#55);
|
||||||
|
#24=LINE('',#523,#56);
|
||||||
|
#25=LINE('',#524,#57);
|
||||||
|
#26=LINE('',#527,#58);
|
||||||
|
#27=LINE('',#529,#59);
|
||||||
|
#28=LINE('',#530,#60);
|
||||||
|
#29=LINE('',#533,#61);
|
||||||
|
#30=LINE('',#535,#62);
|
||||||
|
#31=LINE('',#536,#63);
|
||||||
|
#32=LINE('',#539,#64);
|
||||||
|
#33=LINE('',#541,#65);
|
||||||
|
#34=LINE('',#542,#66);
|
||||||
|
#35=LINE('',#547,#67);
|
||||||
|
#36=LINE('',#551,#68);
|
||||||
|
#37=LINE('',#553,#69);
|
||||||
|
#38=LINE('',#554,#70);
|
||||||
|
#39=LINE('',#557,#71);
|
||||||
|
#40=LINE('',#559,#72);
|
||||||
|
#41=LINE('',#560,#73);
|
||||||
|
#42=LINE('',#563,#74);
|
||||||
|
#43=LINE('',#565,#75);
|
||||||
|
#44=LINE('',#566,#76);
|
||||||
|
#45=LINE('',#568,#77);
|
||||||
|
#46=LINE('',#569,#78);
|
||||||
|
#47=VECTOR('',#411,3.3056266003594);
|
||||||
|
#48=VECTOR('',#412,1.6);
|
||||||
|
#49=VECTOR('',#413,3.3056266003594);
|
||||||
|
#50=VECTOR('',#414,1.6);
|
||||||
|
#51=VECTOR('',#419,1.6);
|
||||||
|
#52=VECTOR('',#424,3.3056266003594);
|
||||||
|
#53=VECTOR('',#425,1.6);
|
||||||
|
#54=VECTOR('',#426,3.3056266003594);
|
||||||
|
#55=VECTOR('',#429,32.8458738842952);
|
||||||
|
#56=VECTOR('',#430,1.6);
|
||||||
|
#57=VECTOR('',#431,32.8458738842952);
|
||||||
|
#58=VECTOR('',#434,56.6112532007192);
|
||||||
|
#59=VECTOR('',#435,1.6);
|
||||||
|
#60=VECTOR('',#436,56.6112532007192);
|
||||||
|
#61=VECTOR('',#439,32.8458738842948);
|
||||||
|
#62=VECTOR('',#440,1.6);
|
||||||
|
#63=VECTOR('',#441,32.8458738842948);
|
||||||
|
#64=VECTOR('',#444,3.3056266003598);
|
||||||
|
#65=VECTOR('',#445,1.6);
|
||||||
|
#66=VECTOR('',#446,3.3056266003598);
|
||||||
|
#67=VECTOR('',#451,1.6);
|
||||||
|
#68=VECTOR('',#456,3.3056266003598);
|
||||||
|
#69=VECTOR('',#457,1.6);
|
||||||
|
#70=VECTOR('',#458,3.3056266003598);
|
||||||
|
#71=VECTOR('',#461,18.1839082268583);
|
||||||
|
#72=VECTOR('',#462,1.6);
|
||||||
|
#73=VECTOR('',#463,18.1839082268583);
|
||||||
|
#74=VECTOR('',#466,56.6112532007192);
|
||||||
|
#75=VECTOR('',#467,1.6);
|
||||||
|
#76=VECTOR('',#468,56.6112532007192);
|
||||||
|
#77=VECTOR('',#471,18.1839082268579);
|
||||||
|
#78=VECTOR('',#472,18.1839082268579);
|
||||||
|
#79=PLANE('',#365);
|
||||||
|
#80=PLANE('',#369);
|
||||||
|
#81=PLANE('',#370);
|
||||||
|
#82=PLANE('',#371);
|
||||||
|
#83=PLANE('',#372);
|
||||||
|
#84=PLANE('',#373);
|
||||||
|
#85=PLANE('',#377);
|
||||||
|
#86=PLANE('',#378);
|
||||||
|
#87=PLANE('',#379);
|
||||||
|
#88=PLANE('',#380);
|
||||||
|
#89=PLANE('',#381);
|
||||||
|
#90=PLANE('',#382);
|
||||||
|
#91=FACE_BOUND('',#122,.T.);
|
||||||
|
#92=FACE_BOUND('',#124,.T.);
|
||||||
|
#93=FACE_BOUND('',#126,.T.);
|
||||||
|
#94=FACE_BOUND('',#128,.T.);
|
||||||
|
#95=FACE_BOUND('',#142,.T.);
|
||||||
|
#96=FACE_BOUND('',#143,.T.);
|
||||||
|
#97=FACE_BOUND('',#144,.T.);
|
||||||
|
#98=FACE_BOUND('',#145,.T.);
|
||||||
|
#99=FACE_BOUND('',#147,.T.);
|
||||||
|
#100=FACE_BOUND('',#148,.T.);
|
||||||
|
#101=FACE_BOUND('',#149,.T.);
|
||||||
|
#102=FACE_BOUND('',#150,.T.);
|
||||||
|
#103=FACE_OUTER_BOUND('',#121,.T.);
|
||||||
|
#104=FACE_OUTER_BOUND('',#123,.T.);
|
||||||
|
#105=FACE_OUTER_BOUND('',#125,.T.);
|
||||||
|
#106=FACE_OUTER_BOUND('',#127,.T.);
|
||||||
|
#107=FACE_OUTER_BOUND('',#129,.T.);
|
||||||
|
#108=FACE_OUTER_BOUND('',#130,.T.);
|
||||||
|
#109=FACE_OUTER_BOUND('',#131,.T.);
|
||||||
|
#110=FACE_OUTER_BOUND('',#132,.T.);
|
||||||
|
#111=FACE_OUTER_BOUND('',#133,.T.);
|
||||||
|
#112=FACE_OUTER_BOUND('',#134,.T.);
|
||||||
|
#113=FACE_OUTER_BOUND('',#135,.T.);
|
||||||
|
#114=FACE_OUTER_BOUND('',#136,.T.);
|
||||||
|
#115=FACE_OUTER_BOUND('',#137,.T.);
|
||||||
|
#116=FACE_OUTER_BOUND('',#138,.T.);
|
||||||
|
#117=FACE_OUTER_BOUND('',#139,.T.);
|
||||||
|
#118=FACE_OUTER_BOUND('',#140,.T.);
|
||||||
|
#119=FACE_OUTER_BOUND('',#141,.T.);
|
||||||
|
#120=FACE_OUTER_BOUND('',#146,.T.);
|
||||||
|
#121=EDGE_LOOP('',(#239));
|
||||||
|
#122=EDGE_LOOP('',(#240));
|
||||||
|
#123=EDGE_LOOP('',(#241));
|
||||||
|
#124=EDGE_LOOP('',(#242));
|
||||||
|
#125=EDGE_LOOP('',(#243));
|
||||||
|
#126=EDGE_LOOP('',(#244));
|
||||||
|
#127=EDGE_LOOP('',(#245));
|
||||||
|
#128=EDGE_LOOP('',(#246));
|
||||||
|
#129=EDGE_LOOP('',(#247,#248,#249,#250));
|
||||||
|
#130=EDGE_LOOP('',(#251,#252,#253,#254));
|
||||||
|
#131=EDGE_LOOP('',(#255,#256,#257,#258));
|
||||||
|
#132=EDGE_LOOP('',(#259,#260,#261,#262));
|
||||||
|
#133=EDGE_LOOP('',(#263,#264,#265,#266));
|
||||||
|
#134=EDGE_LOOP('',(#267,#268,#269,#270));
|
||||||
|
#135=EDGE_LOOP('',(#271,#272,#273,#274));
|
||||||
|
#136=EDGE_LOOP('',(#275,#276,#277,#278));
|
||||||
|
#137=EDGE_LOOP('',(#279,#280,#281,#282));
|
||||||
|
#138=EDGE_LOOP('',(#283,#284,#285,#286));
|
||||||
|
#139=EDGE_LOOP('',(#287,#288,#289,#290));
|
||||||
|
#140=EDGE_LOOP('',(#291,#292,#293,#294));
|
||||||
|
#141=EDGE_LOOP('',(#295,#296,#297,#298,#299,#300,#301,#302,#303,#304,#305,
|
||||||
|
#306));
|
||||||
|
#142=EDGE_LOOP('',(#307));
|
||||||
|
#143=EDGE_LOOP('',(#308));
|
||||||
|
#144=EDGE_LOOP('',(#309));
|
||||||
|
#145=EDGE_LOOP('',(#310));
|
||||||
|
#146=EDGE_LOOP('',(#311,#312,#313,#314,#315,#316,#317,#318,#319,#320,#321,
|
||||||
|
#322));
|
||||||
|
#147=EDGE_LOOP('',(#323));
|
||||||
|
#148=EDGE_LOOP('',(#324));
|
||||||
|
#149=EDGE_LOOP('',(#325));
|
||||||
|
#150=EDGE_LOOP('',(#326));
|
||||||
|
#151=CIRCLE('',#354,1.6);
|
||||||
|
#152=CIRCLE('',#355,1.6);
|
||||||
|
#153=CIRCLE('',#357,1.6);
|
||||||
|
#154=CIRCLE('',#358,1.6);
|
||||||
|
#155=CIRCLE('',#360,1.6);
|
||||||
|
#156=CIRCLE('',#361,1.6);
|
||||||
|
#157=CIRCLE('',#363,1.6);
|
||||||
|
#158=CIRCLE('',#364,1.6);
|
||||||
|
#159=CIRCLE('',#367,3.31609177311824);
|
||||||
|
#160=CIRCLE('',#368,3.31609177311824);
|
||||||
|
#161=CIRCLE('',#375,3.31609177311824);
|
||||||
|
#162=CIRCLE('',#376,3.31609177311824);
|
||||||
|
#163=VERTEX_POINT('',#479);
|
||||||
|
#164=VERTEX_POINT('',#481);
|
||||||
|
#165=VERTEX_POINT('',#484);
|
||||||
|
#166=VERTEX_POINT('',#486);
|
||||||
|
#167=VERTEX_POINT('',#489);
|
||||||
|
#168=VERTEX_POINT('',#491);
|
||||||
|
#169=VERTEX_POINT('',#494);
|
||||||
|
#170=VERTEX_POINT('',#496);
|
||||||
|
#171=VERTEX_POINT('',#499);
|
||||||
|
#172=VERTEX_POINT('',#500);
|
||||||
|
#173=VERTEX_POINT('',#502);
|
||||||
|
#174=VERTEX_POINT('',#504);
|
||||||
|
#175=VERTEX_POINT('',#508);
|
||||||
|
#176=VERTEX_POINT('',#510);
|
||||||
|
#177=VERTEX_POINT('',#514);
|
||||||
|
#178=VERTEX_POINT('',#516);
|
||||||
|
#179=VERTEX_POINT('',#520);
|
||||||
|
#180=VERTEX_POINT('',#522);
|
||||||
|
#181=VERTEX_POINT('',#526);
|
||||||
|
#182=VERTEX_POINT('',#528);
|
||||||
|
#183=VERTEX_POINT('',#532);
|
||||||
|
#184=VERTEX_POINT('',#534);
|
||||||
|
#185=VERTEX_POINT('',#538);
|
||||||
|
#186=VERTEX_POINT('',#540);
|
||||||
|
#187=VERTEX_POINT('',#544);
|
||||||
|
#188=VERTEX_POINT('',#546);
|
||||||
|
#189=VERTEX_POINT('',#550);
|
||||||
|
#190=VERTEX_POINT('',#552);
|
||||||
|
#191=VERTEX_POINT('',#556);
|
||||||
|
#192=VERTEX_POINT('',#558);
|
||||||
|
#193=VERTEX_POINT('',#562);
|
||||||
|
#194=VERTEX_POINT('',#564);
|
||||||
|
#195=EDGE_CURVE('',#163,#163,#151,.T.);
|
||||||
|
#196=EDGE_CURVE('',#164,#164,#152,.T.);
|
||||||
|
#197=EDGE_CURVE('',#165,#165,#153,.T.);
|
||||||
|
#198=EDGE_CURVE('',#166,#166,#154,.T.);
|
||||||
|
#199=EDGE_CURVE('',#167,#167,#155,.T.);
|
||||||
|
#200=EDGE_CURVE('',#168,#168,#156,.T.);
|
||||||
|
#201=EDGE_CURVE('',#169,#169,#157,.T.);
|
||||||
|
#202=EDGE_CURVE('',#170,#170,#158,.T.);
|
||||||
|
#203=EDGE_CURVE('',#171,#172,#15,.T.);
|
||||||
|
#204=EDGE_CURVE('',#173,#172,#16,.T.);
|
||||||
|
#205=EDGE_CURVE('',#174,#173,#17,.T.);
|
||||||
|
#206=EDGE_CURVE('',#174,#171,#18,.T.);
|
||||||
|
#207=EDGE_CURVE('',#172,#175,#159,.T.);
|
||||||
|
#208=EDGE_CURVE('',#176,#175,#19,.T.);
|
||||||
|
#209=EDGE_CURVE('',#173,#176,#160,.T.);
|
||||||
|
#210=EDGE_CURVE('',#175,#177,#20,.T.);
|
||||||
|
#211=EDGE_CURVE('',#178,#177,#21,.T.);
|
||||||
|
#212=EDGE_CURVE('',#176,#178,#22,.T.);
|
||||||
|
#213=EDGE_CURVE('',#177,#179,#23,.T.);
|
||||||
|
#214=EDGE_CURVE('',#180,#179,#24,.T.);
|
||||||
|
#215=EDGE_CURVE('',#178,#180,#25,.T.);
|
||||||
|
#216=EDGE_CURVE('',#179,#181,#26,.T.);
|
||||||
|
#217=EDGE_CURVE('',#182,#181,#27,.T.);
|
||||||
|
#218=EDGE_CURVE('',#180,#182,#28,.T.);
|
||||||
|
#219=EDGE_CURVE('',#181,#183,#29,.T.);
|
||||||
|
#220=EDGE_CURVE('',#184,#183,#30,.T.);
|
||||||
|
#221=EDGE_CURVE('',#182,#184,#31,.T.);
|
||||||
|
#222=EDGE_CURVE('',#183,#185,#32,.T.);
|
||||||
|
#223=EDGE_CURVE('',#186,#185,#33,.T.);
|
||||||
|
#224=EDGE_CURVE('',#184,#186,#34,.T.);
|
||||||
|
#225=EDGE_CURVE('',#185,#187,#161,.T.);
|
||||||
|
#226=EDGE_CURVE('',#188,#187,#35,.T.);
|
||||||
|
#227=EDGE_CURVE('',#186,#188,#162,.T.);
|
||||||
|
#228=EDGE_CURVE('',#187,#189,#36,.T.);
|
||||||
|
#229=EDGE_CURVE('',#190,#189,#37,.T.);
|
||||||
|
#230=EDGE_CURVE('',#188,#190,#38,.T.);
|
||||||
|
#231=EDGE_CURVE('',#189,#191,#39,.T.);
|
||||||
|
#232=EDGE_CURVE('',#192,#191,#40,.T.);
|
||||||
|
#233=EDGE_CURVE('',#190,#192,#41,.T.);
|
||||||
|
#234=EDGE_CURVE('',#191,#193,#42,.T.);
|
||||||
|
#235=EDGE_CURVE('',#194,#193,#43,.T.);
|
||||||
|
#236=EDGE_CURVE('',#192,#194,#44,.T.);
|
||||||
|
#237=EDGE_CURVE('',#193,#171,#45,.T.);
|
||||||
|
#238=EDGE_CURVE('',#194,#174,#46,.T.);
|
||||||
|
#239=ORIENTED_EDGE('',*,*,#195,.F.);
|
||||||
|
#240=ORIENTED_EDGE('',*,*,#196,.F.);
|
||||||
|
#241=ORIENTED_EDGE('',*,*,#197,.F.);
|
||||||
|
#242=ORIENTED_EDGE('',*,*,#198,.F.);
|
||||||
|
#243=ORIENTED_EDGE('',*,*,#199,.F.);
|
||||||
|
#244=ORIENTED_EDGE('',*,*,#200,.F.);
|
||||||
|
#245=ORIENTED_EDGE('',*,*,#201,.F.);
|
||||||
|
#246=ORIENTED_EDGE('',*,*,#202,.F.);
|
||||||
|
#247=ORIENTED_EDGE('',*,*,#203,.T.);
|
||||||
|
#248=ORIENTED_EDGE('',*,*,#204,.F.);
|
||||||
|
#249=ORIENTED_EDGE('',*,*,#205,.F.);
|
||||||
|
#250=ORIENTED_EDGE('',*,*,#206,.T.);
|
||||||
|
#251=ORIENTED_EDGE('',*,*,#207,.T.);
|
||||||
|
#252=ORIENTED_EDGE('',*,*,#208,.F.);
|
||||||
|
#253=ORIENTED_EDGE('',*,*,#209,.F.);
|
||||||
|
#254=ORIENTED_EDGE('',*,*,#204,.T.);
|
||||||
|
#255=ORIENTED_EDGE('',*,*,#210,.T.);
|
||||||
|
#256=ORIENTED_EDGE('',*,*,#211,.F.);
|
||||||
|
#257=ORIENTED_EDGE('',*,*,#212,.F.);
|
||||||
|
#258=ORIENTED_EDGE('',*,*,#208,.T.);
|
||||||
|
#259=ORIENTED_EDGE('',*,*,#213,.T.);
|
||||||
|
#260=ORIENTED_EDGE('',*,*,#214,.F.);
|
||||||
|
#261=ORIENTED_EDGE('',*,*,#215,.F.);
|
||||||
|
#262=ORIENTED_EDGE('',*,*,#211,.T.);
|
||||||
|
#263=ORIENTED_EDGE('',*,*,#216,.T.);
|
||||||
|
#264=ORIENTED_EDGE('',*,*,#217,.F.);
|
||||||
|
#265=ORIENTED_EDGE('',*,*,#218,.F.);
|
||||||
|
#266=ORIENTED_EDGE('',*,*,#214,.T.);
|
||||||
|
#267=ORIENTED_EDGE('',*,*,#219,.T.);
|
||||||
|
#268=ORIENTED_EDGE('',*,*,#220,.F.);
|
||||||
|
#269=ORIENTED_EDGE('',*,*,#221,.F.);
|
||||||
|
#270=ORIENTED_EDGE('',*,*,#217,.T.);
|
||||||
|
#271=ORIENTED_EDGE('',*,*,#222,.T.);
|
||||||
|
#272=ORIENTED_EDGE('',*,*,#223,.F.);
|
||||||
|
#273=ORIENTED_EDGE('',*,*,#224,.F.);
|
||||||
|
#274=ORIENTED_EDGE('',*,*,#220,.T.);
|
||||||
|
#275=ORIENTED_EDGE('',*,*,#225,.T.);
|
||||||
|
#276=ORIENTED_EDGE('',*,*,#226,.F.);
|
||||||
|
#277=ORIENTED_EDGE('',*,*,#227,.F.);
|
||||||
|
#278=ORIENTED_EDGE('',*,*,#223,.T.);
|
||||||
|
#279=ORIENTED_EDGE('',*,*,#228,.T.);
|
||||||
|
#280=ORIENTED_EDGE('',*,*,#229,.F.);
|
||||||
|
#281=ORIENTED_EDGE('',*,*,#230,.F.);
|
||||||
|
#282=ORIENTED_EDGE('',*,*,#226,.T.);
|
||||||
|
#283=ORIENTED_EDGE('',*,*,#231,.T.);
|
||||||
|
#284=ORIENTED_EDGE('',*,*,#232,.F.);
|
||||||
|
#285=ORIENTED_EDGE('',*,*,#233,.F.);
|
||||||
|
#286=ORIENTED_EDGE('',*,*,#229,.T.);
|
||||||
|
#287=ORIENTED_EDGE('',*,*,#234,.T.);
|
||||||
|
#288=ORIENTED_EDGE('',*,*,#235,.F.);
|
||||||
|
#289=ORIENTED_EDGE('',*,*,#236,.F.);
|
||||||
|
#290=ORIENTED_EDGE('',*,*,#232,.T.);
|
||||||
|
#291=ORIENTED_EDGE('',*,*,#237,.T.);
|
||||||
|
#292=ORIENTED_EDGE('',*,*,#206,.F.);
|
||||||
|
#293=ORIENTED_EDGE('',*,*,#238,.F.);
|
||||||
|
#294=ORIENTED_EDGE('',*,*,#235,.T.);
|
||||||
|
#295=ORIENTED_EDGE('',*,*,#203,.F.);
|
||||||
|
#296=ORIENTED_EDGE('',*,*,#237,.F.);
|
||||||
|
#297=ORIENTED_EDGE('',*,*,#234,.F.);
|
||||||
|
#298=ORIENTED_EDGE('',*,*,#231,.F.);
|
||||||
|
#299=ORIENTED_EDGE('',*,*,#228,.F.);
|
||||||
|
#300=ORIENTED_EDGE('',*,*,#225,.F.);
|
||||||
|
#301=ORIENTED_EDGE('',*,*,#222,.F.);
|
||||||
|
#302=ORIENTED_EDGE('',*,*,#219,.F.);
|
||||||
|
#303=ORIENTED_EDGE('',*,*,#216,.F.);
|
||||||
|
#304=ORIENTED_EDGE('',*,*,#213,.F.);
|
||||||
|
#305=ORIENTED_EDGE('',*,*,#210,.F.);
|
||||||
|
#306=ORIENTED_EDGE('',*,*,#207,.F.);
|
||||||
|
#307=ORIENTED_EDGE('',*,*,#195,.T.);
|
||||||
|
#308=ORIENTED_EDGE('',*,*,#197,.T.);
|
||||||
|
#309=ORIENTED_EDGE('',*,*,#199,.T.);
|
||||||
|
#310=ORIENTED_EDGE('',*,*,#201,.T.);
|
||||||
|
#311=ORIENTED_EDGE('',*,*,#238,.T.);
|
||||||
|
#312=ORIENTED_EDGE('',*,*,#205,.T.);
|
||||||
|
#313=ORIENTED_EDGE('',*,*,#209,.T.);
|
||||||
|
#314=ORIENTED_EDGE('',*,*,#212,.T.);
|
||||||
|
#315=ORIENTED_EDGE('',*,*,#215,.T.);
|
||||||
|
#316=ORIENTED_EDGE('',*,*,#218,.T.);
|
||||||
|
#317=ORIENTED_EDGE('',*,*,#221,.T.);
|
||||||
|
#318=ORIENTED_EDGE('',*,*,#224,.T.);
|
||||||
|
#319=ORIENTED_EDGE('',*,*,#227,.T.);
|
||||||
|
#320=ORIENTED_EDGE('',*,*,#230,.T.);
|
||||||
|
#321=ORIENTED_EDGE('',*,*,#233,.T.);
|
||||||
|
#322=ORIENTED_EDGE('',*,*,#236,.T.);
|
||||||
|
#323=ORIENTED_EDGE('',*,*,#196,.T.);
|
||||||
|
#324=ORIENTED_EDGE('',*,*,#198,.T.);
|
||||||
|
#325=ORIENTED_EDGE('',*,*,#200,.T.);
|
||||||
|
#326=ORIENTED_EDGE('',*,*,#202,.T.);
|
||||||
|
#327=CYLINDRICAL_SURFACE('',#353,1.6);
|
||||||
|
#328=CYLINDRICAL_SURFACE('',#356,1.6);
|
||||||
|
#329=CYLINDRICAL_SURFACE('',#359,1.6);
|
||||||
|
#330=CYLINDRICAL_SURFACE('',#362,1.6);
|
||||||
|
#331=CYLINDRICAL_SURFACE('',#366,3.31609177311824);
|
||||||
|
#332=CYLINDRICAL_SURFACE('',#374,3.31609177311825);
|
||||||
|
#333=ADVANCED_FACE('',(#103,#91),#327,.F.);
|
||||||
|
#334=ADVANCED_FACE('',(#104,#92),#328,.F.);
|
||||||
|
#335=ADVANCED_FACE('',(#105,#93),#329,.F.);
|
||||||
|
#336=ADVANCED_FACE('',(#106,#94),#330,.F.);
|
||||||
|
#337=ADVANCED_FACE('',(#107),#79,.T.);
|
||||||
|
#338=ADVANCED_FACE('',(#108),#331,.F.);
|
||||||
|
#339=ADVANCED_FACE('',(#109),#80,.T.);
|
||||||
|
#340=ADVANCED_FACE('',(#110),#81,.T.);
|
||||||
|
#341=ADVANCED_FACE('',(#111),#82,.T.);
|
||||||
|
#342=ADVANCED_FACE('',(#112),#83,.T.);
|
||||||
|
#343=ADVANCED_FACE('',(#113),#84,.T.);
|
||||||
|
#344=ADVANCED_FACE('',(#114),#332,.F.);
|
||||||
|
#345=ADVANCED_FACE('',(#115),#85,.T.);
|
||||||
|
#346=ADVANCED_FACE('',(#116),#86,.T.);
|
||||||
|
#347=ADVANCED_FACE('',(#117),#87,.T.);
|
||||||
|
#348=ADVANCED_FACE('',(#118),#88,.T.);
|
||||||
|
#349=ADVANCED_FACE('',(#119,#95,#96,#97,#98),#89,.T.);
|
||||||
|
#350=ADVANCED_FACE('',(#120,#99,#100,#101,#102),#90,.T.);
|
||||||
|
#351=CLOSED_SHELL('',(#333,#334,#335,#336,#337,#338,#339,#340,#341,#342,
|
||||||
|
#343,#344,#345,#346,#347,#348,#349,#350));
|
||||||
|
#352=AXIS2_PLACEMENT_3D('placement',#477,#383,#384);
|
||||||
|
#353=AXIS2_PLACEMENT_3D('',#478,#385,#386);
|
||||||
|
#354=AXIS2_PLACEMENT_3D('',#480,#387,#388);
|
||||||
|
#355=AXIS2_PLACEMENT_3D('',#482,#389,#390);
|
||||||
|
#356=AXIS2_PLACEMENT_3D('',#483,#391,#392);
|
||||||
|
#357=AXIS2_PLACEMENT_3D('',#485,#393,#394);
|
||||||
|
#358=AXIS2_PLACEMENT_3D('',#487,#395,#396);
|
||||||
|
#359=AXIS2_PLACEMENT_3D('',#488,#397,#398);
|
||||||
|
#360=AXIS2_PLACEMENT_3D('',#490,#399,#400);
|
||||||
|
#361=AXIS2_PLACEMENT_3D('',#492,#401,#402);
|
||||||
|
#362=AXIS2_PLACEMENT_3D('',#493,#403,#404);
|
||||||
|
#363=AXIS2_PLACEMENT_3D('',#495,#405,#406);
|
||||||
|
#364=AXIS2_PLACEMENT_3D('',#497,#407,#408);
|
||||||
|
#365=AXIS2_PLACEMENT_3D('',#498,#409,#410);
|
||||||
|
#366=AXIS2_PLACEMENT_3D('',#507,#415,#416);
|
||||||
|
#367=AXIS2_PLACEMENT_3D('',#509,#417,#418);
|
||||||
|
#368=AXIS2_PLACEMENT_3D('',#512,#420,#421);
|
||||||
|
#369=AXIS2_PLACEMENT_3D('',#513,#422,#423);
|
||||||
|
#370=AXIS2_PLACEMENT_3D('',#519,#427,#428);
|
||||||
|
#371=AXIS2_PLACEMENT_3D('',#525,#432,#433);
|
||||||
|
#372=AXIS2_PLACEMENT_3D('',#531,#437,#438);
|
||||||
|
#373=AXIS2_PLACEMENT_3D('',#537,#442,#443);
|
||||||
|
#374=AXIS2_PLACEMENT_3D('',#543,#447,#448);
|
||||||
|
#375=AXIS2_PLACEMENT_3D('',#545,#449,#450);
|
||||||
|
#376=AXIS2_PLACEMENT_3D('',#548,#452,#453);
|
||||||
|
#377=AXIS2_PLACEMENT_3D('',#549,#454,#455);
|
||||||
|
#378=AXIS2_PLACEMENT_3D('',#555,#459,#460);
|
||||||
|
#379=AXIS2_PLACEMENT_3D('',#561,#464,#465);
|
||||||
|
#380=AXIS2_PLACEMENT_3D('',#567,#469,#470);
|
||||||
|
#381=AXIS2_PLACEMENT_3D('',#570,#473,#474);
|
||||||
|
#382=AXIS2_PLACEMENT_3D('',#571,#475,#476);
|
||||||
|
#383=DIRECTION('axis',(0.,0.,1.));
|
||||||
|
#384=DIRECTION('refdir',(1.,0.,0.));
|
||||||
|
#385=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#386=DIRECTION('ref_axis',(-1.,0.,0.));
|
||||||
|
#387=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#388=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#389=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#390=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#391=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#392=DIRECTION('ref_axis',(-1.,-1.22464679914736E-16,0.));
|
||||||
|
#393=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#394=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#395=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#396=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#397=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#398=DIRECTION('ref_axis',(-1.,-1.22464679914747E-16,0.));
|
||||||
|
#399=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#400=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#401=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#402=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#403=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#404=DIRECTION('ref_axis',(-1.,0.,0.));
|
||||||
|
#405=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#406=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#407=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#408=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#409=DIRECTION('center_axis',(1.67929285253279E-16,-1.,0.));
|
||||||
|
#410=DIRECTION('ref_axis',(0.,0.,-1.));
|
||||||
|
#411=DIRECTION('',(1.,0.,0.));
|
||||||
|
#412=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#413=DIRECTION('',(1.,0.,0.));
|
||||||
|
#414=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#415=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#416=DIRECTION('ref_axis',(0.,1.,0.));
|
||||||
|
#417=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#418=DIRECTION('ref_axis',(-6.69597285349659E-16,1.,0.));
|
||||||
|
#419=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#420=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#421=DIRECTION('ref_axis',(-6.69597285349659E-16,1.,0.));
|
||||||
|
#422=DIRECTION('center_axis',(-3.35858570506556E-16,1.,0.));
|
||||||
|
#423=DIRECTION('ref_axis',(0.,0.,1.));
|
||||||
|
#424=DIRECTION('',(-1.,0.,0.));
|
||||||
|
#425=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#426=DIRECTION('',(-1.,0.,0.));
|
||||||
|
#427=DIRECTION('center_axis',(-1.,-2.70407912673864E-16,0.));
|
||||||
|
#428=DIRECTION('ref_axis',(0.,0.,1.));
|
||||||
|
#429=DIRECTION('',(0.,-1.,0.));
|
||||||
|
#430=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#431=DIRECTION('',(0.,-1.,0.));
|
||||||
|
#432=DIRECTION('center_axis',(3.13781578567437E-16,-1.,0.));
|
||||||
|
#433=DIRECTION('ref_axis',(0.,0.,-1.));
|
||||||
|
#434=DIRECTION('',(1.,0.,0.));
|
||||||
|
#435=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#436=DIRECTION('',(1.,0.,0.));
|
||||||
|
#437=DIRECTION('center_axis',(1.,0.,0.));
|
||||||
|
#438=DIRECTION('ref_axis',(0.,0.,-1.));
|
||||||
|
#439=DIRECTION('',(0.,1.,0.));
|
||||||
|
#440=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#441=DIRECTION('',(0.,1.,0.));
|
||||||
|
#442=DIRECTION('center_axis',(-6.7171714101304E-16,1.,0.));
|
||||||
|
#443=DIRECTION('ref_axis',(0.,0.,1.));
|
||||||
|
#444=DIRECTION('',(-1.,0.,0.));
|
||||||
|
#445=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#446=DIRECTION('',(-1.,0.,0.));
|
||||||
|
#447=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#448=DIRECTION('ref_axis',(0.,-1.,0.));
|
||||||
|
#449=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#450=DIRECTION('ref_axis',(0.,-1.,0.));
|
||||||
|
#451=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#452=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#453=DIRECTION('ref_axis',(0.,-1.,0.));
|
||||||
|
#454=DIRECTION('center_axis',(1.6792928525326E-16,-1.,0.));
|
||||||
|
#455=DIRECTION('ref_axis',(0.,0.,-1.));
|
||||||
|
#456=DIRECTION('',(1.,0.,0.));
|
||||||
|
#457=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#458=DIRECTION('',(1.,0.,0.));
|
||||||
|
#459=DIRECTION('center_axis',(1.,0.,0.));
|
||||||
|
#460=DIRECTION('ref_axis',(0.,0.,-1.));
|
||||||
|
#461=DIRECTION('',(0.,1.,0.));
|
||||||
|
#462=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#463=DIRECTION('',(0.,1.,0.));
|
||||||
|
#464=DIRECTION('center_axis',(-2.35336183925577E-16,1.,0.));
|
||||||
|
#465=DIRECTION('ref_axis',(0.,0.,1.));
|
||||||
|
#466=DIRECTION('',(-1.,0.,0.));
|
||||||
|
#467=DIRECTION('',(0.,0.,-1.));
|
||||||
|
#468=DIRECTION('',(-1.,0.,0.));
|
||||||
|
#469=DIRECTION('center_axis',(-1.,-2.44220991609569E-16,0.));
|
||||||
|
#470=DIRECTION('ref_axis',(0.,0.,1.));
|
||||||
|
#471=DIRECTION('',(0.,-1.,0.));
|
||||||
|
#472=DIRECTION('',(0.,-1.,0.));
|
||||||
|
#473=DIRECTION('center_axis',(0.,0.,-1.));
|
||||||
|
#474=DIRECTION('ref_axis',(-1.,0.,0.));
|
||||||
|
#475=DIRECTION('center_axis',(0.,0.,1.));
|
||||||
|
#476=DIRECTION('ref_axis',(1.,0.,0.));
|
||||||
|
#477=CARTESIAN_POINT('',(0.,0.,0.));
|
||||||
|
#478=CARTESIAN_POINT('Origin',(28.,-27.9999999999999,-0.800000000000001));
|
||||||
|
#479=CARTESIAN_POINT('',(26.4,-27.9999999999999,-1.6));
|
||||||
|
#480=CARTESIAN_POINT('Origin',(28.,-27.9999999999999,-1.6));
|
||||||
|
#481=CARTESIAN_POINT('',(29.6,-27.9999999999999,0.));
|
||||||
|
#482=CARTESIAN_POINT('Origin',(28.,-27.9999999999999,0.));
|
||||||
|
#483=CARTESIAN_POINT('Origin',(0.,-3.08148791101958E-32,-0.800000000000001));
|
||||||
|
#484=CARTESIAN_POINT('',(-1.6,-1.9593701661158E-16,-1.6));
|
||||||
|
#485=CARTESIAN_POINT('Origin',(0.,0.,-1.6));
|
||||||
|
#486=CARTESIAN_POINT('',(1.6,0.,0.));
|
||||||
|
#487=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||||
|
#488=CARTESIAN_POINT('Origin',(28.,6.21724893790088E-14,-0.800000000000001));
|
||||||
|
#489=CARTESIAN_POINT('',(26.4,6.19765523623972E-14,-1.6));
|
||||||
|
#490=CARTESIAN_POINT('Origin',(28.,6.21724893790088E-14,-1.6));
|
||||||
|
#491=CARTESIAN_POINT('',(29.6,6.21724893790088E-14,0.));
|
||||||
|
#492=CARTESIAN_POINT('Origin',(28.,6.21724893790088E-14,0.));
|
||||||
|
#493=CARTESIAN_POINT('Origin',(9.15933995315754E-15,-28.,-0.800000000000001));
|
||||||
|
#494=CARTESIAN_POINT('',(-1.59999999999999,-28.,-1.6));
|
||||||
|
#495=CARTESIAN_POINT('Origin',(8.88178419700125E-15,-28.,-1.6));
|
||||||
|
#496=CARTESIAN_POINT('',(1.60000000000001,-28.,0.));
|
||||||
|
#497=CARTESIAN_POINT('Origin',(8.88178419700125E-15,-28.,0.));
|
||||||
|
#498=CARTESIAN_POINT('Origin',(-14.3056266003596,-3.35292539815827,0.));
|
||||||
|
#499=CARTESIAN_POINT('',(-14.3056266003596,-3.35292539815827,-1.6));
|
||||||
|
#500=CARTESIAN_POINT('',(-11.0000000000002,-3.35292539815827,-1.6));
|
||||||
|
#501=CARTESIAN_POINT('',(-14.3056266003596,-3.35292539815827,-1.6));
|
||||||
|
#502=CARTESIAN_POINT('',(-11.0000000000002,-3.35292539815827,0.));
|
||||||
|
#503=CARTESIAN_POINT('',(-11.0000000000002,-3.35292539815827,0.));
|
||||||
|
#504=CARTESIAN_POINT('',(-14.3056266003596,-3.35292539815827,0.));
|
||||||
|
#505=CARTESIAN_POINT('',(-14.3056266003596,-3.35292539815827,0.));
|
||||||
|
#506=CARTESIAN_POINT('',(-14.3056266003596,-3.35292539815827,0.));
|
||||||
|
#507=CARTESIAN_POINT('Origin',(-11.0000000000002,-6.66901717127651,-0.8));
|
||||||
|
#508=CARTESIAN_POINT('',(-11.0000000000002,-9.98510894439476,-1.6));
|
||||||
|
#509=CARTESIAN_POINT('Origin',(-11.0000000000002,-6.66901717127651,-1.6));
|
||||||
|
#510=CARTESIAN_POINT('',(-11.0000000000002,-9.98510894439476,0.));
|
||||||
|
#511=CARTESIAN_POINT('',(-11.0000000000002,-9.98510894439476,0.));
|
||||||
|
#512=CARTESIAN_POINT('Origin',(-11.0000000000002,-6.66901717127651,0.));
|
||||||
|
#513=CARTESIAN_POINT('Origin',(-11.0000000000002,-9.98510894439476,0.));
|
||||||
|
#514=CARTESIAN_POINT('',(-14.3056266003596,-9.98510894439476,-1.6));
|
||||||
|
#515=CARTESIAN_POINT('',(-11.0000000000002,-9.98510894439476,-1.6));
|
||||||
|
#516=CARTESIAN_POINT('',(-14.3056266003596,-9.98510894439476,0.));
|
||||||
|
#517=CARTESIAN_POINT('',(-14.3056266003596,-9.98510894439476,0.));
|
||||||
|
#518=CARTESIAN_POINT('',(-11.0000000000002,-9.98510894439476,0.));
|
||||||
|
#519=CARTESIAN_POINT('Origin',(-14.3056266003596,-9.98510894439476,0.));
|
||||||
|
#520=CARTESIAN_POINT('',(-14.3056266003596,-42.83098282869,-1.6));
|
||||||
|
#521=CARTESIAN_POINT('',(-14.3056266003596,-9.98510894439476,-1.6));
|
||||||
|
#522=CARTESIAN_POINT('',(-14.3056266003596,-42.83098282869,0.));
|
||||||
|
#523=CARTESIAN_POINT('',(-14.3056266003596,-42.83098282869,0.));
|
||||||
|
#524=CARTESIAN_POINT('',(-14.3056266003596,-9.98510894439476,0.));
|
||||||
|
#525=CARTESIAN_POINT('Origin',(-14.3056266003596,-42.83098282869,0.));
|
||||||
|
#526=CARTESIAN_POINT('',(42.3056266003596,-42.83098282869,-1.6));
|
||||||
|
#527=CARTESIAN_POINT('',(-14.3056266003596,-42.83098282869,-1.6));
|
||||||
|
#528=CARTESIAN_POINT('',(42.3056266003596,-42.83098282869,0.));
|
||||||
|
#529=CARTESIAN_POINT('',(42.3056266003596,-42.83098282869,0.));
|
||||||
|
#530=CARTESIAN_POINT('',(-14.3056266003596,-42.83098282869,0.));
|
||||||
|
#531=CARTESIAN_POINT('Origin',(42.3056266003596,-42.83098282869,0.));
|
||||||
|
#532=CARTESIAN_POINT('',(42.3056266003596,-9.9851089443952,-1.6));
|
||||||
|
#533=CARTESIAN_POINT('',(42.3056266003596,-42.83098282869,-1.6));
|
||||||
|
#534=CARTESIAN_POINT('',(42.3056266003596,-9.9851089443952,0.));
|
||||||
|
#535=CARTESIAN_POINT('',(42.3056266003596,-9.9851089443952,0.));
|
||||||
|
#536=CARTESIAN_POINT('',(42.3056266003596,-42.83098282869,0.));
|
||||||
|
#537=CARTESIAN_POINT('Origin',(42.3056266003596,-9.9851089443952,0.));
|
||||||
|
#538=CARTESIAN_POINT('',(38.9999999999998,-9.9851089443952,-1.6));
|
||||||
|
#539=CARTESIAN_POINT('',(42.3056266003596,-9.9851089443952,-1.6));
|
||||||
|
#540=CARTESIAN_POINT('',(38.9999999999998,-9.9851089443952,0.));
|
||||||
|
#541=CARTESIAN_POINT('',(38.9999999999998,-9.9851089443952,0.));
|
||||||
|
#542=CARTESIAN_POINT('',(42.3056266003596,-9.9851089443952,0.));
|
||||||
|
#543=CARTESIAN_POINT('Origin',(38.9999999999998,-6.66901717127695,-0.8));
|
||||||
|
#544=CARTESIAN_POINT('',(38.9999999999998,-3.35292539815871,-1.6));
|
||||||
|
#545=CARTESIAN_POINT('Origin',(38.9999999999998,-6.66901717127695,-1.6));
|
||||||
|
#546=CARTESIAN_POINT('',(38.9999999999998,-3.35292539815871,0.));
|
||||||
|
#547=CARTESIAN_POINT('',(38.9999999999998,-3.35292539815871,0.));
|
||||||
|
#548=CARTESIAN_POINT('Origin',(38.9999999999998,-6.66901717127695,0.));
|
||||||
|
#549=CARTESIAN_POINT('Origin',(38.9999999999998,-3.35292539815871,0.));
|
||||||
|
#550=CARTESIAN_POINT('',(42.3056266003596,-3.35292539815871,-1.6));
|
||||||
|
#551=CARTESIAN_POINT('',(38.9999999999998,-3.35292539815871,-1.6));
|
||||||
|
#552=CARTESIAN_POINT('',(42.3056266003596,-3.35292539815871,0.));
|
||||||
|
#553=CARTESIAN_POINT('',(42.3056266003596,-3.35292539815871,0.));
|
||||||
|
#554=CARTESIAN_POINT('',(38.9999999999998,-3.35292539815871,0.));
|
||||||
|
#555=CARTESIAN_POINT('Origin',(42.3056266003596,-3.35292539815871,0.));
|
||||||
|
#556=CARTESIAN_POINT('',(42.3056266003596,14.8309828286996,-1.6));
|
||||||
|
#557=CARTESIAN_POINT('',(42.3056266003596,-3.35292539815871,-1.6));
|
||||||
|
#558=CARTESIAN_POINT('',(42.3056266003596,14.8309828286996,0.));
|
||||||
|
#559=CARTESIAN_POINT('',(42.3056266003596,14.8309828286996,0.));
|
||||||
|
#560=CARTESIAN_POINT('',(42.3056266003596,-3.35292539815871,0.));
|
||||||
|
#561=CARTESIAN_POINT('Origin',(42.3056266003596,14.8309828286996,0.));
|
||||||
|
#562=CARTESIAN_POINT('',(-14.3056266003596,14.8309828286996,-1.6));
|
||||||
|
#563=CARTESIAN_POINT('',(42.3056266003596,14.8309828286996,-1.6));
|
||||||
|
#564=CARTESIAN_POINT('',(-14.3056266003596,14.8309828286996,0.));
|
||||||
|
#565=CARTESIAN_POINT('',(-14.3056266003596,14.8309828286996,0.));
|
||||||
|
#566=CARTESIAN_POINT('',(42.3056266003596,14.8309828286996,0.));
|
||||||
|
#567=CARTESIAN_POINT('Origin',(-14.3056266003596,14.8309828286996,0.));
|
||||||
|
#568=CARTESIAN_POINT('',(-14.3056266003596,14.8309828286996,-1.6));
|
||||||
|
#569=CARTESIAN_POINT('',(-14.3056266003596,14.8309828286996,0.));
|
||||||
|
#570=CARTESIAN_POINT('Origin',(14.0000000000001,-13.3886317238381,-1.6));
|
||||||
|
#571=CARTESIAN_POINT('Origin',(14.0000000000001,-13.3886317238381,0.));
|
||||||
|
#572=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#576,
|
||||||
|
'DISTANCE_ACCURACY_VALUE',
|
||||||
|
'Maximum model space distance between geometric entities at asserted c
|
||||||
|
onnectivities');
|
||||||
|
#573=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(1.E-6),#576,
|
||||||
|
'DISTANCE_ACCURACY_VALUE',
|
||||||
|
'Maximum model space distance between geometric entities at asserted c
|
||||||
|
onnectivities');
|
||||||
|
#574=(
|
||||||
|
GEOMETRIC_REPRESENTATION_CONTEXT(3)
|
||||||
|
GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#572))
|
||||||
|
GLOBAL_UNIT_ASSIGNED_CONTEXT((#576,#579,#577))
|
||||||
|
REPRESENTATION_CONTEXT('','3D')
|
||||||
|
);
|
||||||
|
#575=(
|
||||||
|
GEOMETRIC_REPRESENTATION_CONTEXT(3)
|
||||||
|
GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#573))
|
||||||
|
GLOBAL_UNIT_ASSIGNED_CONTEXT((#576,#579,#577))
|
||||||
|
REPRESENTATION_CONTEXT('','3D')
|
||||||
|
);
|
||||||
|
#576=(
|
||||||
|
LENGTH_UNIT()
|
||||||
|
NAMED_UNIT(*)
|
||||||
|
SI_UNIT(.MILLI.,.METRE.)
|
||||||
|
);
|
||||||
|
#577=(
|
||||||
|
NAMED_UNIT(*)
|
||||||
|
SI_UNIT($,.STERADIAN.)
|
||||||
|
SOLID_ANGLE_UNIT()
|
||||||
|
);
|
||||||
|
#578=DIMENSIONAL_EXPONENTS(0.,0.,0.,0.,0.,0.,0.);
|
||||||
|
#579=(
|
||||||
|
CONVERSION_BASED_UNIT('degree',#581)
|
||||||
|
NAMED_UNIT(#578)
|
||||||
|
PLANE_ANGLE_UNIT()
|
||||||
|
);
|
||||||
|
#580=(
|
||||||
|
NAMED_UNIT(*)
|
||||||
|
PLANE_ANGLE_UNIT()
|
||||||
|
SI_UNIT($,.RADIAN.)
|
||||||
|
);
|
||||||
|
#581=PLANE_ANGLE_MEASURE_WITH_UNIT(PLANE_ANGLE_MEASURE(0.01745329252),#580);
|
||||||
|
#582=SHAPE_DEFINITION_REPRESENTATION(#583,#584);
|
||||||
|
#583=PRODUCT_DEFINITION_SHAPE('',$,#586);
|
||||||
|
#584=SHAPE_REPRESENTATION('',(#352),#574);
|
||||||
|
#585=PRODUCT_DEFINITION_CONTEXT('part definition',#590,'design');
|
||||||
|
#586=PRODUCT_DEFINITION('1593K PCB','1593K PCB',#587,#585);
|
||||||
|
#587=PRODUCT_DEFINITION_FORMATION('',$,#592);
|
||||||
|
#588=PRODUCT_RELATED_PRODUCT_CATEGORY('1593K PCB','1593K PCB',(#592));
|
||||||
|
#589=APPLICATION_PROTOCOL_DEFINITION('international standard',
|
||||||
|
'automotive_design',2009,#590);
|
||||||
|
#590=APPLICATION_CONTEXT(
|
||||||
|
'Core Data for Automotive Mechanical Design Process');
|
||||||
|
#591=PRODUCT_CONTEXT('part definition',#590,'mechanical');
|
||||||
|
#592=PRODUCT('1593K PCB','1593K PCB',$,(#591));
|
||||||
|
#593=PRESENTATION_STYLE_ASSIGNMENT((#595));
|
||||||
|
#594=PRESENTATION_STYLE_ASSIGNMENT((#596));
|
||||||
|
#595=SURFACE_STYLE_USAGE(.BOTH.,#597);
|
||||||
|
#596=SURFACE_STYLE_USAGE(.BOTH.,#598);
|
||||||
|
#597=SURFACE_SIDE_STYLE('',(#599));
|
||||||
|
#598=SURFACE_SIDE_STYLE('',(#600));
|
||||||
|
#599=SURFACE_STYLE_FILL_AREA(#601);
|
||||||
|
#600=SURFACE_STYLE_FILL_AREA(#602);
|
||||||
|
#601=FILL_AREA_STYLE('',(#603));
|
||||||
|
#602=FILL_AREA_STYLE('',(#604));
|
||||||
|
#603=FILL_AREA_STYLE_COLOUR('',#605);
|
||||||
|
#604=FILL_AREA_STYLE_COLOUR('',#606);
|
||||||
|
#605=COLOUR_RGB('',0.749019607843137,0.749019607843137,0.749019607843137);
|
||||||
|
#606=COLOUR_RGB('',0.0666666666666667,0.756862745098039,0.329411764705882);
|
||||||
|
ENDSEC;
|
||||||
|
END-ISO-10303-21;
|
BIN
hardware/meca/Chargeur/Chargeur.iam
Normal file
BIN
hardware/meca/Chargeur/Chargeur.iam
Normal file
Binary file not shown.
BIN
hardware/meca/Chargeur/Chargeur_Dumber.ipj
Normal file
BIN
hardware/meca/Chargeur/Chargeur_Dumber.ipj
Normal file
Binary file not shown.
20113
hardware/meca/Chargeur/Hammond/1593K.igs
Normal file
20113
hardware/meca/Chargeur/Hammond/1593K.igs
Normal file
File diff suppressed because it is too large
Load diff
18986
hardware/meca/Chargeur/Hammond/1593K.stp
Normal file
18986
hardware/meca/Chargeur/Hammond/1593K.stp
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
4257
hardware/meca/coque_inf.stp
Normal file
4257
hardware/meca/coque_inf.stp
Normal file
File diff suppressed because it is too large
Load diff
4518
hardware/meca/coque_sup.stp
Normal file
4518
hardware/meca/coque_sup.stp
Normal file
File diff suppressed because it is too large
Load diff
269
hardware/pcb/Chargeur/Chargeur.OutJob
Normal file
269
hardware/pcb/Chargeur/Chargeur.OutJob
Normal file
|
@ -0,0 +1,269 @@
|
||||||
|
[OutputJobFile]
|
||||||
|
Version=1.0
|
||||||
|
Caption=
|
||||||
|
Description=
|
||||||
|
VaultGUID=
|
||||||
|
ItemGUID=
|
||||||
|
ItemHRID=
|
||||||
|
RevisionGUID=
|
||||||
|
RevisionId=
|
||||||
|
VaultHRID=
|
||||||
|
AutoItemHRID=
|
||||||
|
NextRevId=
|
||||||
|
FolderGUID=
|
||||||
|
LifeCycleDefinitionGUID=
|
||||||
|
RevisionNamingSchemeGUID=
|
||||||
|
|
||||||
|
[OutputGroup1]
|
||||||
|
Name=Chargeur.OutJob
|
||||||
|
Description=
|
||||||
|
TargetOutputMedium=New Folder Structure
|
||||||
|
VariantName=[No Variations]
|
||||||
|
VariantScope=0
|
||||||
|
CurrentConfigurationName=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputMedium1=Print Job
|
||||||
|
OutputMedium1_Type=Printer
|
||||||
|
OutputMedium1_Printer=
|
||||||
|
OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputMedium2=PDF
|
||||||
|
OutputMedium2_Type=Publish
|
||||||
|
OutputMedium3=Folder Structure
|
||||||
|
OutputMedium3_Type=GeneratedFiles
|
||||||
|
OutputMedium4=Video
|
||||||
|
OutputMedium4_Type=Multimedia
|
||||||
|
OutputMedium5=New Folder Structure
|
||||||
|
OutputMedium5_Type=GeneratedFiles
|
||||||
|
OutputType1=Schematic Print
|
||||||
|
OutputName1=Schematic Prints
|
||||||
|
OutputCategory1=Documentation
|
||||||
|
OutputDocumentPath1=[Project Physical Documents]
|
||||||
|
OutputVariantName1=[No Variations]
|
||||||
|
OutputEnabled1=0
|
||||||
|
OutputEnabled1_OutputMedium1=0
|
||||||
|
OutputEnabled1_OutputMedium2=1
|
||||||
|
OutputEnabled1_OutputMedium3=0
|
||||||
|
OutputEnabled1_OutputMedium4=0
|
||||||
|
OutputEnabled1_OutputMedium5=0
|
||||||
|
OutputDefault1=0
|
||||||
|
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
Configuration1_Name1=OutputConfigurationParameter1
|
||||||
|
Configuration1_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0
|
||||||
|
OutputType2=PCB Print
|
||||||
|
OutputName2=Top
|
||||||
|
OutputCategory2=Documentation
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputEnabled2=0
|
||||||
|
OutputEnabled2_OutputMedium1=0
|
||||||
|
OutputEnabled2_OutputMedium2=2
|
||||||
|
OutputEnabled2_OutputMedium3=0
|
||||||
|
OutputEnabled2_OutputMedium4=0
|
||||||
|
OutputEnabled2_OutputMedium5=0
|
||||||
|
OutputDefault2=0
|
||||||
|
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=2|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4|PaperIndex=9
|
||||||
|
Configuration2_Name1=OutputConfigurationParameter1
|
||||||
|
Configuration2_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView
|
||||||
|
Configuration2_Name2=OutputConfigurationParameter2
|
||||||
|
Configuration2_Item2=IncludeBottomLayerComponents=False|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False
|
||||||
|
Configuration2_Name3=OutputConfigurationParameter3
|
||||||
|
Configuration2_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration2_Name4=OutputConfigurationParameter4
|
||||||
|
Configuration2_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration2_Name5=OutputConfigurationParameter5
|
||||||
|
Configuration2_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
OutputType3=BOM_PartType
|
||||||
|
OutputName3=Bill of Materials
|
||||||
|
OutputCategory3=Report
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputEnabled3=0
|
||||||
|
OutputEnabled3_OutputMedium1=0
|
||||||
|
OutputEnabled3_OutputMedium2=5
|
||||||
|
OutputEnabled3_OutputMedium3=0
|
||||||
|
OutputEnabled3_OutputMedium4=0
|
||||||
|
OutputEnabled3_OutputMedium5=0
|
||||||
|
OutputDefault3=0
|
||||||
|
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=1|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
Configuration3_Name1=Filter
|
||||||
|
Configuration3_Item1=545046300E5446696C74657257726170706572000D46696C7465722E416374697665090F46696C7465722E43726974657269610A04000000000000000000
|
||||||
|
Configuration3_Name2=General
|
||||||
|
Configuration3_Item2=OpenExported=False|AddToProject=True|ForceFit=False|NotFitted=False|Database=False|IncludePCBData=False|IncludeVaultData=False|ShowExportOptions=True|TemplateFilename=|BatchMode=5|FormWidth=950|FormHeight=652|SupplierProdQty=1|SupplierAutoQty=False|SupplierUseCachedPricing=False|SupplierCurrency=<none>
|
||||||
|
Configuration3_Name3=GroupOrder
|
||||||
|
Configuration3_Item3=Value=True|Comment=True|Footprint=True
|
||||||
|
Configuration3_Name4=SortOrder
|
||||||
|
Configuration3_Item4=Designator=Up|Comment=Up|Footprint=Up
|
||||||
|
Configuration3_Name5=VisibleOrder
|
||||||
|
Configuration3_Item5=Designator=142|Description=430|Value=82|Quantity=96
|
||||||
|
OutputType4=PCB Print
|
||||||
|
OutputName4=Bottom
|
||||||
|
OutputCategory4=Documentation
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=
|
||||||
|
OutputEnabled4=0
|
||||||
|
OutputEnabled4_OutputMedium1=0
|
||||||
|
OutputEnabled4_OutputMedium2=3
|
||||||
|
OutputEnabled4_OutputMedium3=0
|
||||||
|
OutputEnabled4_OutputMedium4=0
|
||||||
|
OutputEnabled4_OutputMedium5=0
|
||||||
|
OutputDefault4=0
|
||||||
|
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=2|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4|PaperIndex=9
|
||||||
|
Configuration4_Name1=OutputConfigurationParameter1
|
||||||
|
Configuration4_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView
|
||||||
|
Configuration4_Name2=OutputConfigurationParameter2
|
||||||
|
Configuration4_Item2=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=True|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False
|
||||||
|
Configuration4_Name3=OutputConfigurationParameter3
|
||||||
|
Configuration4_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration4_Name4=OutputConfigurationParameter4
|
||||||
|
Configuration4_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration4_Name5=OutputConfigurationParameter5
|
||||||
|
Configuration4_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
OutputType5=Assembly
|
||||||
|
OutputName5=Assembly Drawings
|
||||||
|
OutputCategory5=Assembly
|
||||||
|
OutputDocumentPath5=
|
||||||
|
OutputVariantName5=
|
||||||
|
OutputEnabled5=0
|
||||||
|
OutputEnabled5_OutputMedium1=0
|
||||||
|
OutputEnabled5_OutputMedium2=4
|
||||||
|
OutputEnabled5_OutputMedium3=0
|
||||||
|
OutputEnabled5_OutputMedium4=0
|
||||||
|
OutputEnabled5_OutputMedium5=0
|
||||||
|
OutputDefault5=0
|
||||||
|
PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=3.57|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
Configuration5_Name1=OutputConfigurationParameter1
|
||||||
|
Configuration5_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView
|
||||||
|
Configuration5_Name2=OutputConfigurationParameter2
|
||||||
|
Configuration5_Item2=IncludeBottomLayerComponents=False|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Top LayerAssembly Drawing|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False
|
||||||
|
Configuration5_Name3=OutputConfigurationParameter3
|
||||||
|
Configuration5_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name4=OutputConfigurationParameter4
|
||||||
|
Configuration5_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Hidden|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name5=OutputConfigurationParameter5
|
||||||
|
Configuration5_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name6=OutputConfigurationParameter6
|
||||||
|
Configuration5_Item6=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=1|Mirror=True|Name=Bottom LayerAssembly Drawing|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False
|
||||||
|
Configuration5_Name7=OutputConfigurationParameter7
|
||||||
|
Configuration5_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name8=OutputConfigurationParameter8
|
||||||
|
Configuration5_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Hidden|Layer=MultiLayer|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name9=OutputConfigurationParameter9
|
||||||
|
Configuration5_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer
|
||||||
|
|
||||||
|
[PublishSettings]
|
||||||
|
OutputFilePath2=D:\Users\dimercur\Documents\projets\git\Dumber\pcb\Chargeur\Chargeur\.PDF
|
||||||
|
ReleaseManaged2=0
|
||||||
|
OutputBasePath2=D:\Users\dimercur\Documents\projets\git\Dumber\pcb\Chargeur\
|
||||||
|
OutputPathMedia2=
|
||||||
|
OutputPathMediaValue2=
|
||||||
|
OutputPathOutputer2=[Output Type]
|
||||||
|
OutputPathOutputerPrefix2=
|
||||||
|
OutputPathOutputerValue2=
|
||||||
|
OutputFileName2=Chargeur.pdf
|
||||||
|
OutputFileNameMulti2=
|
||||||
|
UseOutputNameForMulti2=1
|
||||||
|
OutputFileNameSpecial2=
|
||||||
|
OpenOutput2=1
|
||||||
|
PromptOverwrite2=1
|
||||||
|
PublishMethod2=0
|
||||||
|
ZoomLevel2=50
|
||||||
|
FitSCHPrintSizeToDoc2=0
|
||||||
|
FitPCBPrintSizeToDoc2=0
|
||||||
|
GenerateNetsInfo2=1
|
||||||
|
MarkPins2=1
|
||||||
|
MarkNetLabels2=1
|
||||||
|
MarkPortsId2=1
|
||||||
|
GenerateTOC=1
|
||||||
|
ShowComponentParameters2=1
|
||||||
|
GlobalBookmarks2=0
|
||||||
|
OutputFilePath3=
|
||||||
|
ReleaseManaged3=1
|
||||||
|
OutputBasePath3=Project Outputs for Chargeur
|
||||||
|
OutputPathMedia3=
|
||||||
|
OutputPathMediaValue3=
|
||||||
|
OutputPathOutputer3=[Output Type]
|
||||||
|
OutputPathOutputerPrefix3=
|
||||||
|
OutputPathOutputerValue3=
|
||||||
|
OutputFileName3=
|
||||||
|
OutputFileNameMulti3=
|
||||||
|
UseOutputNameForMulti3=1
|
||||||
|
OutputFileNameSpecial3=
|
||||||
|
OpenOutput3=1
|
||||||
|
OutputFilePath4=
|
||||||
|
ReleaseManaged4=1
|
||||||
|
OutputBasePath4=Project Outputs for Chargeur
|
||||||
|
OutputPathMedia4=
|
||||||
|
OutputPathMediaValue4=
|
||||||
|
OutputPathOutputer4=[Output Type]
|
||||||
|
OutputPathOutputerPrefix4=
|
||||||
|
OutputPathOutputerValue4=
|
||||||
|
OutputFileName4=
|
||||||
|
OutputFileNameMulti4=
|
||||||
|
UseOutputNameForMulti4=1
|
||||||
|
OutputFileNameSpecial4=
|
||||||
|
OpenOutput4=1
|
||||||
|
PromptOverwrite4=1
|
||||||
|
PublishMethod4=5
|
||||||
|
ZoomLevel4=50
|
||||||
|
FitSCHPrintSizeToDoc4=1
|
||||||
|
FitPCBPrintSizeToDoc4=1
|
||||||
|
GenerateNetsInfo4=1
|
||||||
|
MarkPins4=1
|
||||||
|
MarkNetLabels4=1
|
||||||
|
MarkPortsId4=1
|
||||||
|
MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf)
|
||||||
|
FixedDimensions4=1
|
||||||
|
Width4=352
|
||||||
|
Height4=288
|
||||||
|
MultiFile4=0
|
||||||
|
FramesPerSecond4=25
|
||||||
|
FramesPerSecondDenom4=1
|
||||||
|
AviPixelFormat4=7
|
||||||
|
AviCompression4=MP42 MS-MPEG4 V2
|
||||||
|
AviQuality4=100
|
||||||
|
FFmpegVideoCodecId4=13
|
||||||
|
FFmpegPixelFormat4=0
|
||||||
|
FFmpegQuality4=80
|
||||||
|
WmvVideoCodecName4=Windows Media Video V7
|
||||||
|
WmvQuality4=80
|
||||||
|
OutputFilePath5=D:\Users\dimercur\Documents\projets\git\Dumber\pcb\Chargeur\Project Outputs for Chargeur\
|
||||||
|
ReleaseManaged5=1
|
||||||
|
OutputBasePath5=Project Outputs for Chargeur
|
||||||
|
OutputPathMedia5=
|
||||||
|
OutputPathMediaValue5=
|
||||||
|
OutputPathOutputer5=[Output Type]
|
||||||
|
OutputPathOutputerPrefix5=
|
||||||
|
OutputPathOutputerValue5=
|
||||||
|
OutputFileName5=
|
||||||
|
OutputFileNameMulti5=
|
||||||
|
UseOutputNameForMulti5=1
|
||||||
|
OutputFileNameSpecial5=
|
||||||
|
OpenOutput5=1
|
||||||
|
|
||||||
|
[GeneratedFilesSettings]
|
||||||
|
RelativeOutputPath2=D:\Users\dimercur\Documents\projets\git\Dumber\PCB\Chargeur\.PDF
|
||||||
|
OpenOutputs2=1
|
||||||
|
RelativeOutputPath3=
|
||||||
|
OpenOutputs3=1
|
||||||
|
AddToProject3=1
|
||||||
|
TimestampFolder3=0
|
||||||
|
UseOutputName3=0
|
||||||
|
OpenODBOutput3=0
|
||||||
|
OpenGerberOutput3=0
|
||||||
|
OpenNCDrillOutput3=0
|
||||||
|
OpenIPCOutput3=0
|
||||||
|
EnableReload3=0
|
||||||
|
RelativeOutputPath4=
|
||||||
|
OpenOutputs4=1
|
||||||
|
RelativeOutputPath5=D:\Users\dimercur\Documents\projets\git\Dumber\PCB\Chargeur\Project Outputs for Chargeur\
|
||||||
|
OpenOutputs5=1
|
||||||
|
AddToProject5=1
|
||||||
|
TimestampFolder5=0
|
||||||
|
UseOutputName5=0
|
||||||
|
OpenODBOutput5=0
|
||||||
|
OpenGerberOutput5=0
|
||||||
|
OpenNCDrillOutput5=0
|
||||||
|
OpenIPCOutput5=0
|
||||||
|
EnableReload5=0
|
||||||
|
|
BIN
hardware/pcb/Chargeur/Chargeur.PDF
Normal file
BIN
hardware/pcb/Chargeur/Chargeur.PDF
Normal file
Binary file not shown.
BIN
hardware/pcb/Chargeur/Chargeur.PcbDoc
Normal file
BIN
hardware/pcb/Chargeur/Chargeur.PcbDoc
Normal file
Binary file not shown.
1020
hardware/pcb/Chargeur/Chargeur.PrjPcb
Normal file
1020
hardware/pcb/Chargeur/Chargeur.PrjPcb
Normal file
File diff suppressed because it is too large
Load diff
1
hardware/pcb/Chargeur/Chargeur.PrjPcbStructure
Normal file
1
hardware/pcb/Chargeur/Chargeur.PrjPcbStructure
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Record=TopLevelDocument|FileName=Chargeur.SchDoc
|
BIN
hardware/pcb/Chargeur/Chargeur.SchDoc
Normal file
BIN
hardware/pcb/Chargeur/Chargeur.SchDoc
Normal file
Binary file not shown.
BIN
hardware/pcb/Chargeur/Chargeur_nucleo.PcbDoc
Normal file
BIN
hardware/pcb/Chargeur/Chargeur_nucleo.PcbDoc
Normal file
Binary file not shown.
BIN
hardware/pcb/Dumber-Cap/Cap.PcbDoc
Normal file
BIN
hardware/pcb/Dumber-Cap/Cap.PcbDoc
Normal file
Binary file not shown.
BIN
hardware/pcb/Dumber-Cap/Cap.SchDoc
Normal file
BIN
hardware/pcb/Dumber-Cap/Cap.SchDoc
Normal file
Binary file not shown.
926
hardware/pcb/Dumber-Cap/Dumber_Cap.PrjPcb
Normal file
926
hardware/pcb/Dumber-Cap/Dumber_Cap.PrjPcb
Normal file
|
@ -0,0 +1,926 @@
|
||||||
|
[Design]
|
||||||
|
Version=1.0
|
||||||
|
HierarchyMode=0
|
||||||
|
ChannelRoomNamingStyle=0
|
||||||
|
ReleasesFolder=
|
||||||
|
ReleaseVaultGUID=
|
||||||
|
ReleaseVaultName=
|
||||||
|
ChannelDesignatorFormatString=$Component_$RoomName
|
||||||
|
ChannelRoomLevelSeperator=_
|
||||||
|
OpenOutputs=1
|
||||||
|
ArchiveProject=0
|
||||||
|
TimestampOutput=0
|
||||||
|
SeparateFolders=0
|
||||||
|
TemplateLocationPath=
|
||||||
|
PinSwapBy_Netlabel=1
|
||||||
|
PinSwapBy_Pin=1
|
||||||
|
AllowPortNetNames=0
|
||||||
|
AllowSheetEntryNetNames=1
|
||||||
|
AppendSheetNumberToLocalNets=0
|
||||||
|
NetlistSinglePinNets=0
|
||||||
|
DefaultConfiguration=Default Configuration
|
||||||
|
UserID=0xFFFFFFFF
|
||||||
|
DefaultPcbProtel=1
|
||||||
|
DefaultPcbPcad=0
|
||||||
|
ReorderDocumentsOnCompile=1
|
||||||
|
NameNetsHierarchically=0
|
||||||
|
PowerPortNamesTakePriority=0
|
||||||
|
PushECOToAnnotationFile=1
|
||||||
|
DItemRevisionGUID=
|
||||||
|
ReportSuppressedErrorsInMessages=0
|
||||||
|
OutputPath=
|
||||||
|
LogFolderPath=
|
||||||
|
ManagedProjectGUID=
|
||||||
|
|
||||||
|
[Preferences]
|
||||||
|
PrefsVaultGUID=
|
||||||
|
PrefsRevisionGUID=
|
||||||
|
|
||||||
|
[Document1]
|
||||||
|
DocumentPath=Cap.SchDoc
|
||||||
|
AnnotationEnabled=1
|
||||||
|
AnnotateStartValue=1
|
||||||
|
AnnotationIndexControlEnabled=0
|
||||||
|
AnnotateSuffix=
|
||||||
|
AnnotateScope=All
|
||||||
|
AnnotateOrder=-1
|
||||||
|
DoLibraryUpdate=1
|
||||||
|
DoDatabaseUpdate=1
|
||||||
|
ClassGenCCAutoEnabled=1
|
||||||
|
ClassGenCCAutoRoomEnabled=1
|
||||||
|
ClassGenNCAutoScope=None
|
||||||
|
DItemRevisionGUID=
|
||||||
|
GenerateClassCluster=0
|
||||||
|
DocumentUniqueId=QWOJDKEJ
|
||||||
|
|
||||||
|
[Document2]
|
||||||
|
DocumentPath=Cap.PcbDoc
|
||||||
|
AnnotationEnabled=1
|
||||||
|
AnnotateStartValue=1
|
||||||
|
AnnotationIndexControlEnabled=0
|
||||||
|
AnnotateSuffix=
|
||||||
|
AnnotateScope=All
|
||||||
|
AnnotateOrder=-1
|
||||||
|
DoLibraryUpdate=1
|
||||||
|
DoDatabaseUpdate=1
|
||||||
|
ClassGenCCAutoEnabled=1
|
||||||
|
ClassGenCCAutoRoomEnabled=1
|
||||||
|
ClassGenNCAutoScope=None
|
||||||
|
DItemRevisionGUID=
|
||||||
|
GenerateClassCluster=0
|
||||||
|
DocumentUniqueId=IWTRUTLR
|
||||||
|
|
||||||
|
[Configuration1]
|
||||||
|
Name=Default Configuration
|
||||||
|
ParameterCount=0
|
||||||
|
ConstraintFileCount=0
|
||||||
|
ReleaseItemId=
|
||||||
|
CurrentRevision=
|
||||||
|
Variant=[No Variations]
|
||||||
|
GenerateBOM=1
|
||||||
|
OutputJobsCount=0
|
||||||
|
|
||||||
|
[OutputGroup1]
|
||||||
|
Name=Netlist Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=PCADNetlist
|
||||||
|
OutputName1=PCAD Netlist
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
OutputType2=SIMetrixNetlist
|
||||||
|
OutputName2=SIMetrix
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
OutputType3=SIMPLISNetlist
|
||||||
|
OutputName3=SIMPLIS
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
OutputType4=Verilog
|
||||||
|
OutputName4=Verilog File
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=
|
||||||
|
OutputDefault4=0
|
||||||
|
OutputType5=VHDL
|
||||||
|
OutputName5=VHDL File
|
||||||
|
OutputDocumentPath5=
|
||||||
|
OutputVariantName5=
|
||||||
|
OutputDefault5=0
|
||||||
|
OutputType6=XSpiceNetlist
|
||||||
|
OutputName6=XSpice Netlist
|
||||||
|
OutputDocumentPath6=
|
||||||
|
OutputVariantName6=
|
||||||
|
OutputDefault6=0
|
||||||
|
|
||||||
|
[OutputGroup2]
|
||||||
|
Name=Simulator Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=AdvSimNetlist
|
||||||
|
OutputName1=Mixed Sim
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
OutputType2=SIMetrixSimulation
|
||||||
|
OutputName2=SIMetrix
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
OutputType3=SIMPLISSimulation
|
||||||
|
OutputName3=SIMPLIS
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
|
||||||
|
[OutputGroup3]
|
||||||
|
Name=Documentation Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Virtual Printer
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=3|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=Assembler Source Print
|
||||||
|
OutputName1=Assembler Source Prints
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType2=C Source Print
|
||||||
|
OutputName2=C Source Prints
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType3=C/C++ Header Print
|
||||||
|
OutputName3=C/C++ Header Prints
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType4=C++ Source Print
|
||||||
|
OutputName4=C++ Source Prints
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=
|
||||||
|
OutputDefault4=0
|
||||||
|
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType5=Composite
|
||||||
|
OutputName5=Composite Drawing
|
||||||
|
OutputDocumentPath5=D:\Users\dimercur\Documents\git\dev-gei\dev-gei2\Dumber 2015\PCB\Cap.PcbDoc
|
||||||
|
OutputVariantName5=
|
||||||
|
OutputDefault5=0
|
||||||
|
PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=2|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4 (210 x 297 mm)|PaperIndex=9
|
||||||
|
Configuration5_Name1=OutputConfigurationParameter1
|
||||||
|
Configuration5_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView
|
||||||
|
Configuration5_Name2=OutputConfigurationParameter2
|
||||||
|
Configuration5_Item2=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False
|
||||||
|
Configuration5_Name3=OutputConfigurationParameter3
|
||||||
|
Configuration5_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name4=OutputConfigurationParameter4
|
||||||
|
Configuration5_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
Configuration5_Name5=OutputConfigurationParameter5
|
||||||
|
Configuration5_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|DDSymbolKind=0|DDSymbolSize=500000|DDSymbolSortKind=0|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer
|
||||||
|
OutputType6=FSM Print
|
||||||
|
OutputName6=FSM Prints
|
||||||
|
OutputDocumentPath6=
|
||||||
|
OutputVariantName6=
|
||||||
|
OutputDefault6=0
|
||||||
|
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType7=OpenBus Print
|
||||||
|
OutputName7=OpenBus Prints
|
||||||
|
OutputDocumentPath7=
|
||||||
|
OutputVariantName7=
|
||||||
|
OutputDefault7=0
|
||||||
|
PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType8=PCB 3D Print
|
||||||
|
OutputName8=PCB 3D Print
|
||||||
|
OutputDocumentPath8=
|
||||||
|
OutputVariantName8=[No Variations]
|
||||||
|
OutputDefault8=0
|
||||||
|
PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType9=PCB 3D Video
|
||||||
|
OutputName9=PCB 3D Video
|
||||||
|
OutputDocumentPath9=
|
||||||
|
OutputVariantName9=[No Variations]
|
||||||
|
OutputDefault9=0
|
||||||
|
PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType10=PCB Print
|
||||||
|
OutputName10=PCB Prints
|
||||||
|
OutputDocumentPath10=
|
||||||
|
OutputVariantName10=
|
||||||
|
OutputDefault10=0
|
||||||
|
PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType11=PCBLIB Print
|
||||||
|
OutputName11=PCBLIB Prints
|
||||||
|
OutputDocumentPath11=
|
||||||
|
OutputVariantName11=
|
||||||
|
OutputDefault11=0
|
||||||
|
PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType12=Report Print
|
||||||
|
OutputName12=Report Prints
|
||||||
|
OutputDocumentPath12=
|
||||||
|
OutputVariantName12=
|
||||||
|
OutputDefault12=0
|
||||||
|
PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType13=Schematic Print
|
||||||
|
OutputName13=Schematic Prints
|
||||||
|
OutputDocumentPath13=
|
||||||
|
OutputVariantName13=
|
||||||
|
OutputDefault13=0
|
||||||
|
PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType14=SimView Print
|
||||||
|
OutputName14=SimView Prints
|
||||||
|
OutputDocumentPath14=
|
||||||
|
OutputVariantName14=
|
||||||
|
OutputDefault14=0
|
||||||
|
PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType15=VHDL Print
|
||||||
|
OutputName15=VHDL Prints
|
||||||
|
OutputDocumentPath15=
|
||||||
|
OutputVariantName15=
|
||||||
|
OutputDefault15=0
|
||||||
|
PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType16=Wave Print
|
||||||
|
OutputName16=Wave Prints
|
||||||
|
OutputDocumentPath16=
|
||||||
|
OutputVariantName16=
|
||||||
|
OutputDefault16=0
|
||||||
|
PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType17=WaveSim Print
|
||||||
|
OutputName17=WaveSim Prints
|
||||||
|
OutputDocumentPath17=
|
||||||
|
OutputVariantName17=
|
||||||
|
OutputDefault17=0
|
||||||
|
PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
|
||||||
|
[OutputGroup4]
|
||||||
|
Name=Assembly Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=Assembly
|
||||||
|
OutputName1=Assembly Drawings
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=[No Variations]
|
||||||
|
OutputDefault1=0
|
||||||
|
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType2=Pick Place
|
||||||
|
OutputName2=Generates pick and place files
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=[No Variations]
|
||||||
|
OutputDefault2=0
|
||||||
|
OutputType3=Test Points For Assembly
|
||||||
|
OutputName3=Test Point Report
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=[No Variations]
|
||||||
|
OutputDefault3=0
|
||||||
|
|
||||||
|
[OutputGroup5]
|
||||||
|
Name=Fabrication Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=Board Stack Report
|
||||||
|
OutputName1=Report Board Stack
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType2=CompositeDrill
|
||||||
|
OutputName2=Composite Drill Drawing
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType3=Drill
|
||||||
|
OutputName3=Drill Drawing/Guides
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType4=Final
|
||||||
|
OutputName4=Final Artwork Prints
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=[No Variations]
|
||||||
|
OutputDefault4=0
|
||||||
|
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType5=Gerber
|
||||||
|
OutputName5=Gerber Files
|
||||||
|
OutputDocumentPath5=
|
||||||
|
OutputVariantName5=[No Variations]
|
||||||
|
OutputDefault5=0
|
||||||
|
OutputType6=Mask
|
||||||
|
OutputName6=Solder/Paste Mask Prints
|
||||||
|
OutputDocumentPath6=
|
||||||
|
OutputVariantName6=
|
||||||
|
OutputDefault6=0
|
||||||
|
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType7=NC Drill
|
||||||
|
OutputName7=NC Drill Files
|
||||||
|
OutputDocumentPath7=
|
||||||
|
OutputVariantName7=
|
||||||
|
OutputDefault7=0
|
||||||
|
OutputType8=ODB
|
||||||
|
OutputName8=ODB++ Files
|
||||||
|
OutputDocumentPath8=
|
||||||
|
OutputVariantName8=[No Variations]
|
||||||
|
OutputDefault8=0
|
||||||
|
OutputType9=Plane
|
||||||
|
OutputName9=Power-Plane Prints
|
||||||
|
OutputDocumentPath9=
|
||||||
|
OutputVariantName9=
|
||||||
|
OutputDefault9=0
|
||||||
|
PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType10=Test Points
|
||||||
|
OutputName10=Test Point Report
|
||||||
|
OutputDocumentPath10=
|
||||||
|
OutputVariantName10=
|
||||||
|
OutputDefault10=0
|
||||||
|
|
||||||
|
[OutputGroup6]
|
||||||
|
Name=Report Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=BOM_PartType
|
||||||
|
OutputName1=Bill of Materials
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=[No Variations]
|
||||||
|
OutputDefault1=0
|
||||||
|
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType2=ComponentCrossReference
|
||||||
|
OutputName2=Component Cross Reference Report
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=[No Variations]
|
||||||
|
OutputDefault2=0
|
||||||
|
OutputType3=ReportHierarchy
|
||||||
|
OutputName3=Report Project Hierarchy
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=[No Variations]
|
||||||
|
OutputDefault3=0
|
||||||
|
OutputType4=Script
|
||||||
|
OutputName4=Script Output
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=[No Variations]
|
||||||
|
OutputDefault4=0
|
||||||
|
OutputType5=SimpleBOM
|
||||||
|
OutputName5=Simple BOM
|
||||||
|
OutputDocumentPath5=
|
||||||
|
OutputVariantName5=[No Variations]
|
||||||
|
OutputDefault5=0
|
||||||
|
OutputType6=SinglePinNetReporter
|
||||||
|
OutputName6=Report Single Pin Nets
|
||||||
|
OutputDocumentPath6=
|
||||||
|
OutputVariantName6=[No Variations]
|
||||||
|
OutputDefault6=0
|
||||||
|
|
||||||
|
[OutputGroup7]
|
||||||
|
Name=Other Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=Text Print
|
||||||
|
OutputName1=Text Print
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType2=Text Print
|
||||||
|
OutputName2=Text Print
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType3=Text Print
|
||||||
|
OutputName3=Text Print
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType4=Text Print
|
||||||
|
OutputName4=Text Print
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=
|
||||||
|
OutputDefault4=0
|
||||||
|
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType5=Text Print
|
||||||
|
OutputName5=Text Print
|
||||||
|
OutputDocumentPath5=
|
||||||
|
OutputVariantName5=
|
||||||
|
OutputDefault5=0
|
||||||
|
PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType6=Text Print
|
||||||
|
OutputName6=Text Print
|
||||||
|
OutputDocumentPath6=
|
||||||
|
OutputVariantName6=
|
||||||
|
OutputDefault6=0
|
||||||
|
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType7=Text Print
|
||||||
|
OutputName7=Text Print
|
||||||
|
OutputDocumentPath7=
|
||||||
|
OutputVariantName7=
|
||||||
|
OutputDefault7=0
|
||||||
|
PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType8=Text Print
|
||||||
|
OutputName8=Text Print
|
||||||
|
OutputDocumentPath8=
|
||||||
|
OutputVariantName8=
|
||||||
|
OutputDefault8=0
|
||||||
|
PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType9=Text Print
|
||||||
|
OutputName9=Text Print
|
||||||
|
OutputDocumentPath9=
|
||||||
|
OutputVariantName9=
|
||||||
|
OutputDefault9=0
|
||||||
|
PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType10=Text Print
|
||||||
|
OutputName10=Text Print
|
||||||
|
OutputDocumentPath10=
|
||||||
|
OutputVariantName10=
|
||||||
|
OutputDefault10=0
|
||||||
|
PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType11=Text Print
|
||||||
|
OutputName11=Text Print
|
||||||
|
OutputDocumentPath11=
|
||||||
|
OutputVariantName11=
|
||||||
|
OutputDefault11=0
|
||||||
|
PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType12=Text Print
|
||||||
|
OutputName12=Text Print
|
||||||
|
OutputDocumentPath12=
|
||||||
|
OutputVariantName12=
|
||||||
|
OutputDefault12=0
|
||||||
|
PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType13=Text Print
|
||||||
|
OutputName13=Text Print
|
||||||
|
OutputDocumentPath13=
|
||||||
|
OutputVariantName13=
|
||||||
|
OutputDefault13=0
|
||||||
|
PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType14=Text Print
|
||||||
|
OutputName14=Text Print
|
||||||
|
OutputDocumentPath14=
|
||||||
|
OutputVariantName14=
|
||||||
|
OutputDefault14=0
|
||||||
|
PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType15=Text Print
|
||||||
|
OutputName15=Text Print
|
||||||
|
OutputDocumentPath15=
|
||||||
|
OutputVariantName15=
|
||||||
|
OutputDefault15=0
|
||||||
|
PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType16=Text Print
|
||||||
|
OutputName16=Text Print
|
||||||
|
OutputDocumentPath16=
|
||||||
|
OutputVariantName16=
|
||||||
|
OutputDefault16=0
|
||||||
|
PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType17=Text Print
|
||||||
|
OutputName17=Text Print
|
||||||
|
OutputDocumentPath17=
|
||||||
|
OutputVariantName17=
|
||||||
|
OutputDefault17=0
|
||||||
|
PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType18=Text Print
|
||||||
|
OutputName18=Text Print
|
||||||
|
OutputDocumentPath18=
|
||||||
|
OutputVariantName18=
|
||||||
|
OutputDefault18=0
|
||||||
|
PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType19=Text Print
|
||||||
|
OutputName19=Text Print
|
||||||
|
OutputDocumentPath19=
|
||||||
|
OutputVariantName19=
|
||||||
|
OutputDefault19=0
|
||||||
|
PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType20=Text Print
|
||||||
|
OutputName20=Text Print
|
||||||
|
OutputDocumentPath20=
|
||||||
|
OutputVariantName20=
|
||||||
|
OutputDefault20=0
|
||||||
|
PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType21=Text Print
|
||||||
|
OutputName21=Text Print
|
||||||
|
OutputDocumentPath21=
|
||||||
|
OutputVariantName21=
|
||||||
|
OutputDefault21=0
|
||||||
|
PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType22=Text Print
|
||||||
|
OutputName22=Text Print
|
||||||
|
OutputDocumentPath22=
|
||||||
|
OutputVariantName22=
|
||||||
|
OutputDefault22=0
|
||||||
|
PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType23=Text Print
|
||||||
|
OutputName23=Text Print
|
||||||
|
OutputDocumentPath23=
|
||||||
|
OutputVariantName23=
|
||||||
|
OutputDefault23=0
|
||||||
|
PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType24=Text Print
|
||||||
|
OutputName24=Text Print
|
||||||
|
OutputDocumentPath24=
|
||||||
|
OutputVariantName24=
|
||||||
|
OutputDefault24=0
|
||||||
|
PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType25=Text Print
|
||||||
|
OutputName25=Text Print
|
||||||
|
OutputDocumentPath25=
|
||||||
|
OutputVariantName25=
|
||||||
|
OutputDefault25=0
|
||||||
|
PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType26=Text Print
|
||||||
|
OutputName26=Text Print
|
||||||
|
OutputDocumentPath26=
|
||||||
|
OutputVariantName26=
|
||||||
|
OutputDefault26=0
|
||||||
|
PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType27=Text Print
|
||||||
|
OutputName27=Text Print
|
||||||
|
OutputDocumentPath27=
|
||||||
|
OutputVariantName27=
|
||||||
|
OutputDefault27=0
|
||||||
|
PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType28=Text Print
|
||||||
|
OutputName28=Text Print
|
||||||
|
OutputDocumentPath28=
|
||||||
|
OutputVariantName28=
|
||||||
|
OutputDefault28=0
|
||||||
|
PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType29=Text Print
|
||||||
|
OutputName29=Text Print
|
||||||
|
OutputDocumentPath29=
|
||||||
|
OutputVariantName29=
|
||||||
|
OutputDefault29=0
|
||||||
|
PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
|
||||||
|
[OutputGroup8]
|
||||||
|
Name=Validation Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=Configuration compliance
|
||||||
|
OutputName1=Environment configuration compliance check
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
OutputType2=Design Rules Check
|
||||||
|
OutputName2=Design Rules Check
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType3=Differences Report
|
||||||
|
OutputName3=Differences Report
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType4=Electrical Rules Check
|
||||||
|
OutputName4=Electrical Rules Check
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=
|
||||||
|
OutputDefault4=0
|
||||||
|
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
OutputType5=Footprint Comparison Report
|
||||||
|
OutputName5=Footprint Comparison Report
|
||||||
|
OutputDocumentPath5=
|
||||||
|
OutputVariantName5=
|
||||||
|
OutputDefault5=0
|
||||||
|
|
||||||
|
[OutputGroup9]
|
||||||
|
Name=Export Outputs
|
||||||
|
Description=
|
||||||
|
TargetPrinter=Copieur-GEI-DIRECTION
|
||||||
|
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
|
||||||
|
OutputType1=AutoCAD dwg/dxf PCB
|
||||||
|
OutputName1=AutoCAD dwg/dxf File PCB
|
||||||
|
OutputDocumentPath1=
|
||||||
|
OutputVariantName1=
|
||||||
|
OutputDefault1=0
|
||||||
|
OutputType2=AutoCAD dwg/dxf Schematic
|
||||||
|
OutputName2=AutoCAD dwg/dxf File Schematic
|
||||||
|
OutputDocumentPath2=
|
||||||
|
OutputVariantName2=
|
||||||
|
OutputDefault2=0
|
||||||
|
OutputType3=ExportIDF
|
||||||
|
OutputName3=Export IDF
|
||||||
|
OutputDocumentPath3=
|
||||||
|
OutputVariantName3=
|
||||||
|
OutputDefault3=0
|
||||||
|
OutputType4=ExportSTEP
|
||||||
|
OutputName4=Export STEP
|
||||||
|
OutputDocumentPath4=
|
||||||
|
OutputVariantName4=[No Variations]
|
||||||
|
OutputDefault4=0
|
||||||
|
|
||||||
|
[Modification Levels]
|
||||||
|
Type1=1
|
||||||
|
Type2=1
|
||||||
|
Type3=1
|
||||||
|
Type4=1
|
||||||
|
Type5=1
|
||||||
|
Type6=1
|
||||||
|
Type7=1
|
||||||
|
Type8=1
|
||||||
|
Type9=1
|
||||||
|
Type10=1
|
||||||
|
Type11=1
|
||||||
|
Type12=1
|
||||||
|
Type13=1
|
||||||
|
Type14=1
|
||||||
|
Type15=1
|
||||||
|
Type16=1
|
||||||
|
Type17=1
|
||||||
|
Type18=1
|
||||||
|
Type19=1
|
||||||
|
Type20=1
|
||||||
|
Type21=1
|
||||||
|
Type22=1
|
||||||
|
Type23=1
|
||||||
|
Type24=1
|
||||||
|
Type25=1
|
||||||
|
Type26=1
|
||||||
|
Type27=1
|
||||||
|
Type28=1
|
||||||
|
Type29=1
|
||||||
|
Type30=1
|
||||||
|
Type31=1
|
||||||
|
Type32=1
|
||||||
|
Type33=1
|
||||||
|
Type34=1
|
||||||
|
Type35=1
|
||||||
|
Type36=1
|
||||||
|
Type37=1
|
||||||
|
Type38=1
|
||||||
|
Type39=1
|
||||||
|
Type40=1
|
||||||
|
Type41=1
|
||||||
|
Type42=1
|
||||||
|
Type43=1
|
||||||
|
Type44=1
|
||||||
|
Type45=1
|
||||||
|
Type46=1
|
||||||
|
Type47=1
|
||||||
|
Type48=1
|
||||||
|
Type49=1
|
||||||
|
Type50=1
|
||||||
|
Type51=1
|
||||||
|
Type52=1
|
||||||
|
Type53=1
|
||||||
|
Type54=1
|
||||||
|
Type55=1
|
||||||
|
Type56=1
|
||||||
|
Type57=1
|
||||||
|
Type58=1
|
||||||
|
Type59=1
|
||||||
|
Type60=1
|
||||||
|
Type61=1
|
||||||
|
Type62=1
|
||||||
|
Type63=1
|
||||||
|
Type64=1
|
||||||
|
Type65=1
|
||||||
|
Type66=1
|
||||||
|
Type67=1
|
||||||
|
Type68=1
|
||||||
|
Type69=1
|
||||||
|
Type70=1
|
||||||
|
Type71=1
|
||||||
|
Type72=1
|
||||||
|
Type73=1
|
||||||
|
Type74=1
|
||||||
|
Type75=1
|
||||||
|
Type76=1
|
||||||
|
Type77=1
|
||||||
|
Type78=1
|
||||||
|
|
||||||
|
[Difference Levels]
|
||||||
|
Type1=1
|
||||||
|
Type2=1
|
||||||
|
Type3=1
|
||||||
|
Type4=1
|
||||||
|
Type5=1
|
||||||
|
Type6=1
|
||||||
|
Type7=1
|
||||||
|
Type8=1
|
||||||
|
Type9=1
|
||||||
|
Type10=1
|
||||||
|
Type11=1
|
||||||
|
Type12=1
|
||||||
|
Type13=1
|
||||||
|
Type14=1
|
||||||
|
Type15=1
|
||||||
|
Type16=1
|
||||||
|
Type17=1
|
||||||
|
Type18=1
|
||||||
|
Type19=1
|
||||||
|
Type20=1
|
||||||
|
Type21=1
|
||||||
|
Type22=1
|
||||||
|
Type23=1
|
||||||
|
Type24=1
|
||||||
|
Type25=1
|
||||||
|
Type26=1
|
||||||
|
Type27=1
|
||||||
|
Type28=1
|
||||||
|
Type29=1
|
||||||
|
Type30=1
|
||||||
|
Type31=1
|
||||||
|
Type32=1
|
||||||
|
Type33=1
|
||||||
|
Type34=1
|
||||||
|
Type35=1
|
||||||
|
Type36=1
|
||||||
|
Type37=1
|
||||||
|
Type38=1
|
||||||
|
Type39=1
|
||||||
|
Type40=1
|
||||||
|
Type41=1
|
||||||
|
Type42=1
|
||||||
|
Type43=1
|
||||||
|
|
||||||
|
[Electrical Rules Check]
|
||||||
|
Type1=1
|
||||||
|
Type2=1
|
||||||
|
Type3=2
|
||||||
|
Type4=1
|
||||||
|
Type5=2
|
||||||
|
Type6=2
|
||||||
|
Type7=1
|
||||||
|
Type8=1
|
||||||
|
Type9=1
|
||||||
|
Type10=1
|
||||||
|
Type11=2
|
||||||
|
Type12=2
|
||||||
|
Type13=2
|
||||||
|
Type14=1
|
||||||
|
Type15=1
|
||||||
|
Type16=1
|
||||||
|
Type17=1
|
||||||
|
Type18=1
|
||||||
|
Type19=1
|
||||||
|
Type20=1
|
||||||
|
Type21=1
|
||||||
|
Type22=1
|
||||||
|
Type23=1
|
||||||
|
Type24=1
|
||||||
|
Type25=2
|
||||||
|
Type26=2
|
||||||
|
Type27=2
|
||||||
|
Type28=1
|
||||||
|
Type29=1
|
||||||
|
Type30=1
|
||||||
|
Type31=1
|
||||||
|
Type32=2
|
||||||
|
Type33=2
|
||||||
|
Type34=2
|
||||||
|
Type35=1
|
||||||
|
Type36=2
|
||||||
|
Type37=1
|
||||||
|
Type38=2
|
||||||
|
Type39=2
|
||||||
|
Type40=2
|
||||||
|
Type41=0
|
||||||
|
Type42=2
|
||||||
|
Type43=1
|
||||||
|
Type44=1
|
||||||
|
Type45=2
|
||||||
|
Type46=1
|
||||||
|
Type47=2
|
||||||
|
Type48=2
|
||||||
|
Type49=1
|
||||||
|
Type50=2
|
||||||
|
Type51=1
|
||||||
|
Type52=1
|
||||||
|
Type53=1
|
||||||
|
Type54=1
|
||||||
|
Type55=1
|
||||||
|
Type56=2
|
||||||
|
Type57=1
|
||||||
|
Type58=1
|
||||||
|
Type59=0
|
||||||
|
Type60=1
|
||||||
|
Type61=2
|
||||||
|
Type62=2
|
||||||
|
Type63=1
|
||||||
|
Type64=0
|
||||||
|
Type65=2
|
||||||
|
Type66=3
|
||||||
|
Type67=2
|
||||||
|
Type68=2
|
||||||
|
Type69=1
|
||||||
|
Type70=2
|
||||||
|
Type71=2
|
||||||
|
Type72=2
|
||||||
|
Type73=2
|
||||||
|
Type74=1
|
||||||
|
Type75=2
|
||||||
|
Type76=1
|
||||||
|
Type77=1
|
||||||
|
Type78=1
|
||||||
|
Type79=1
|
||||||
|
Type80=2
|
||||||
|
Type81=3
|
||||||
|
Type82=3
|
||||||
|
Type83=3
|
||||||
|
Type84=3
|
||||||
|
Type85=3
|
||||||
|
Type86=2
|
||||||
|
Type87=2
|
||||||
|
Type88=2
|
||||||
|
Type89=1
|
||||||
|
Type90=1
|
||||||
|
Type91=3
|
||||||
|
Type92=3
|
||||||
|
Type93=2
|
||||||
|
Type94=2
|
||||||
|
Type95=2
|
||||||
|
Type96=2
|
||||||
|
Type97=2
|
||||||
|
Type98=0
|
||||||
|
Type99=1
|
||||||
|
Type100=2
|
||||||
|
Type101=1
|
||||||
|
Type102=2
|
||||||
|
Type103=2
|
||||||
|
Type104=1
|
||||||
|
Type105=2
|
||||||
|
Type106=2
|
||||||
|
Type107=2
|
||||||
|
Type108=2
|
||||||
|
Type109=1
|
||||||
|
|
||||||
|
[ERC Connection Matrix]
|
||||||
|
L1=NNNNNNNNNNNWNNNWW
|
||||||
|
L2=NNWNNNNWWWNWNWNWN
|
||||||
|
L3=NWEENEEEENEWNEEWN
|
||||||
|
L4=NNENNNWEENNWNENWN
|
||||||
|
L5=NNNNNNNNNNNNNNNNN
|
||||||
|
L6=NNENNNNEENNWNENWN
|
||||||
|
L7=NNEWNNWEENNWNENWN
|
||||||
|
L8=NWEENEENEEENNEENN
|
||||||
|
L9=NWEENEEEENEWNEEWW
|
||||||
|
L10=NWNNNNNENNEWNNEWN
|
||||||
|
L11=NNENNNNEEENWNENWN
|
||||||
|
L12=WWWWNWWNWWWNWWWNN
|
||||||
|
L13=NNNNNNNNNNNWNNNWW
|
||||||
|
L14=NWEENEEEENEWNEEWW
|
||||||
|
L15=NNENNNNEEENWNENWW
|
||||||
|
L16=WWWWNWWNWWWNWWWNW
|
||||||
|
L17=WNNNNNNNWNNNWWWWN
|
||||||
|
|
||||||
|
[Annotate]
|
||||||
|
SortOrder=3
|
||||||
|
SortLocation=0
|
||||||
|
MatchParameter1=Comment
|
||||||
|
MatchStrictly1=1
|
||||||
|
MatchParameter2=Library Reference
|
||||||
|
MatchStrictly2=1
|
||||||
|
PhysicalNamingFormat=$Component_$RoomName
|
||||||
|
GlobalIndexSortOrder=3
|
||||||
|
GlobalIndexSortLocation=0
|
||||||
|
|
||||||
|
[PrjClassGen]
|
||||||
|
CompClassManualEnabled=0
|
||||||
|
CompClassManualRoomEnabled=0
|
||||||
|
NetClassAutoBusEnabled=1
|
||||||
|
NetClassAutoCompEnabled=0
|
||||||
|
NetClassAutoNamedHarnessEnabled=0
|
||||||
|
NetClassManualEnabled=1
|
||||||
|
|
||||||
|
[LibraryUpdateOptions]
|
||||||
|
SelectedOnly=0
|
||||||
|
UpdateVariants=1
|
||||||
|
PartTypes=0
|
||||||
|
FullReplace=1
|
||||||
|
UpdateDesignatorLock=1
|
||||||
|
UpdatePartIDLock=1
|
||||||
|
PreserveParameterLocations=1
|
||||||
|
PreserveParameterVisibility=1
|
||||||
|
DoGraphics=1
|
||||||
|
DoParameters=1
|
||||||
|
DoModels=1
|
||||||
|
AddParameters=0
|
||||||
|
RemoveParameters=0
|
||||||
|
AddModels=1
|
||||||
|
RemoveModels=1
|
||||||
|
UpdateCurrentModels=1
|
||||||
|
|
||||||
|
[DatabaseUpdateOptions]
|
||||||
|
SelectedOnly=0
|
||||||
|
UpdateVariants=1
|
||||||
|
PartTypes=0
|
||||||
|
|
||||||
|
[Comparison Options]
|
||||||
|
ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
|
||||||
|
ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
|
||||||
|
ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
|
||||||
|
ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
|
||||||
|
ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0
|
||||||
|
ComparisonOptions5=Kind=Code Memory|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
|
||||||
|
|
||||||
|
[SmartPDF]
|
||||||
|
PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
|
||||||
|
|
1
hardware/pcb/Dumber-Cap/Dumber_Cap.PrjPcbStructure
Normal file
1
hardware/pcb/Dumber-Cap/Dumber_Cap.PrjPcbStructure
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Record=TopLevelDocument|FileName=Cap.SchDoc
|
Can't render this file because it has a wrong number of fields in line 7.
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue