style.yaml 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  1. 113-E23-1-1100-MAG-I:
  2. background_color: rgba(0, 0, 0, 0)
  3. decimal: '2'
  4. exponential: 'false'
  5. formula: ''
  6. header:
  7. size: 20
  8. title: ' '
  9. weight: '400'
  10. height: 25.06666
  11. larger: ''
  12. left: 96px
  13. lesser: ''
  14. linkhtml: 'true'
  15. ref: 113-E23-1-1100-MAG-I
  16. top: 628px
  17. trend: 'true'
  18. type: data
  19. unit:
  20. size: 20
  21. title: ' A'
  22. weight: '400'
  23. width: 86.06666
  24. 200-ELV-5-3100:
  25. background_color: rgba(0, 0, 0, 0)
  26. decimal: '1'
  27. exponential: 'false'
  28. formula: ''
  29. header:
  30. size: 24
  31. title: ' '
  32. weight: '400'
  33. height: 34.06666
  34. larger: ''
  35. left: 231px
  36. lesser: ''
  37. linkhtml: 'true'
  38. ref: 200-ELV-5-3100
  39. top: 586px
  40. trend: 'true'
  41. type: data
  42. unit:
  43. size: 24
  44. title: ' A'
  45. weight: '400'
  46. width: 98.06666
  47. 200-ELV-5-3200:
  48. background_color: rgba(0, 0, 0, 0)
  49. decimal: '1'
  50. exponential: 'false'
  51. formula: ''
  52. header:
  53. size: 24
  54. title: ' '
  55. weight: '400'
  56. height: 33.06666
  57. larger: ''
  58. left: 388px
  59. lesser: ''
  60. linkhtml: 'true'
  61. ref: 200-ELV-5-3200
  62. top: 585px
  63. trend: 'true'
  64. type: data
  65. unit:
  66. size: 24
  67. title: ' A'
  68. weight: '400'
  69. width: 106.06666
  70. 200-ELV-5-3300:
  71. background_color: rgba(0, 0, 0, 0)
  72. decimal: '1'
  73. exponential: 'false'
  74. formula: ''
  75. header:
  76. size: 24
  77. title: ' '
  78. weight: '400'
  79. height: 36.06666
  80. larger: ''
  81. left: 514px
  82. lesser: ''
  83. linkhtml: 'true'
  84. ref: 200-ELV-5-3300
  85. top: 587px
  86. trend: 'true'
  87. type: data
  88. unit:
  89. size: 24
  90. title: ' A'
  91. weight: '400'
  92. width: 104.06666
  93. 200-ELV-5-3410:
  94. background_color: rgba(0, 0, 0, 0)
  95. decimal: '1'
  96. exponential: 'false'
  97. formula: ''
  98. header:
  99. size: 22
  100. title: ' '
  101. weight: '400'
  102. height: 34.06666
  103. larger: ''
  104. left: 194px
  105. lesser: ''
  106. linkhtml: 'true'
  107. ref: 200-ELV-5-3410
  108. top: 784px
  109. trend: 'true'
  110. type: data
  111. unit:
  112. size: 22
  113. title: ' A'
  114. weight: '400'
  115. width: 100.06666
  116. 200-ELV-5-3420:
  117. background_color: rgba(0, 0, 0, 0)
  118. decimal: '1'
  119. exponential: 'false'
  120. formula: ''
  121. header:
  122. size: 22
  123. title: ' '
  124. weight: '400'
  125. height: 31.06666
  126. larger: ''
  127. left: 291px
  128. lesser: ''
  129. linkhtml: 'true'
  130. ref: 200-ELV-5-3420
  131. top: 785px
  132. trend: 'true'
  133. type: data
  134. unit:
  135. size: 22
  136. title: ' A'
  137. weight: '400'
  138. width: 96.06666
  139. 200-ELV-5-3430:
  140. background_color: rgba(0, 0, 0, 0)
  141. decimal: '1'
  142. exponential: 'false'
  143. formula: ''
  144. header:
  145. size: 22
  146. title: ' '
  147. weight: '400'
  148. height: 34.06666
  149. larger: ''
  150. left: 563px
  151. lesser: ''
  152. linkhtml: 'true'
  153. ref: 200-ELV-5-3430
  154. top: 789px
  155. trend: 'true'
  156. type: data
  157. unit:
  158. size: 22
  159. title: ' A'
  160. weight: '400'
  161. width: 106.06666
  162. 200-ELV-5-3440:
  163. background_color: rgba(0, 0, 0, 0)
  164. decimal: '1'
  165. exponential: 'false'
  166. formula: ''
  167. header:
  168. size: 22
  169. title: ' '
  170. weight: '400'
  171. height: 29.06666
  172. larger: ''
  173. left: 466px
  174. lesser: ''
  175. linkhtml: 'true'
  176. ref: 200-ELV-5-3440
  177. top: 788px
  178. trend: 'true'
  179. type: data
  180. unit:
  181. size: 22
  182. title: ' A'
  183. weight: '400'
  184. width: 99.06666
  185. 200-MOD-0-0001:
  186. background_color: rgba(0, 0, 0, 0)
  187. cond: ''
  188. dict: '{"0":"Start-Up", "2":"Standard operation", "3":"Krypton mode", "4":"4th mode",
  189. "5":"Cool-Down: T > 100K", "6":"Cool-Down: T < 100K", "7":"Warm-Up: T < 100K",
  190. "8":"Warm-Up: T > 100K", "9":"Bake-Out"}'
  191. header:
  192. size: 28px
  193. title: 'WGTS mode: '
  194. weight: '400'
  195. height: 75.06666
  196. left: 274px
  197. linkhtml: 'true'
  198. ref: 200-MOD-0-0001
  199. top: 131px
  200. trend: 'true'
  201. type: integer-to-string
  202. unit:
  203. size: 28px
  204. weight: '700'
  205. width: 266.06666
  206. 200-REI-5-3111:
  207. background_color: rgba(0, 0, 0, 0)
  208. decimal: '1'
  209. exponential: 'false'
  210. formula: ''
  211. header:
  212. size: 20
  213. title: ' '
  214. weight: '400'
  215. height: 34.06666
  216. larger: ''
  217. left: 229px
  218. lesser: ''
  219. linkhtml: 'true'
  220. ref: 200-REI-5-3111
  221. top: 626px
  222. trend: 'true'
  223. type: data
  224. unit:
  225. size: 20
  226. title: ' A'
  227. weight: '400'
  228. width: 115.06666
  229. 200-REI-5-3211:
  230. background_color: rgba(0, 0, 0, 0)
  231. decimal: '1'
  232. exponential: 'false'
  233. formula: ''
  234. header:
  235. size: 20
  236. title: ' '
  237. weight: '400'
  238. height: 30.06666
  239. larger: ''
  240. left: 387px
  241. lesser: ''
  242. linkhtml: 'true'
  243. ref: 200-REI-5-3211
  244. top: 629px
  245. trend: 'true'
  246. type: data
  247. unit:
  248. size: 20
  249. title: ' A'
  250. weight: '400'
  251. width: 103.06666
  252. 200-REI-5-3311:
  253. background_color: rgba(0, 0, 0, 0)
  254. decimal: '1'
  255. exponential: 'false'
  256. formula: ''
  257. header:
  258. size: 20
  259. title: ' '
  260. weight: '400'
  261. height: 34.06666
  262. larger: ''
  263. left: 515px
  264. lesser: ''
  265. linkhtml: 'true'
  266. ref: 200-REI-5-3311
  267. top: 630px
  268. trend: 'true'
  269. type: data
  270. unit:
  271. size: 20
  272. title: ' A'
  273. weight: '400'
  274. width: 100.06666
  275. 200-REU-1-8131:
  276. background_color: rgba(0, 0, 0, 0)
  277. decimal: '2'
  278. exponential: 'false'
  279. formula: ''
  280. header:
  281. size: 20
  282. title: ' '
  283. weight: '400'
  284. height: 28.06666
  285. larger: ''
  286. left: 227px
  287. lesser: ''
  288. linkhtml: 'true'
  289. ref: 200-REU-1-8131
  290. top: 663px
  291. trend: 'true'
  292. type: data
  293. unit:
  294. size: 20
  295. title: ' V'
  296. weight: '400'
  297. width: 94.06666
  298. 200-REU-1-8133:
  299. background_color: rgba(0, 0, 0, 0)
  300. condition: ''
  301. decimal: '2'
  302. exponential: 'false'
  303. formula: ''
  304. header:
  305. size: 22
  306. title: ' '
  307. weight: '700'
  308. height: 39.06666
  309. larger: ''
  310. left: 191px
  311. lesser: ''
  312. linkhtml: 'true'
  313. ref: 200-REU-1-8133
  314. top: 818px
  315. trend: 'true'
  316. type: data
  317. unit:
  318. size: 22
  319. title: ' V'
  320. weight: '400'
  321. width: 99.06666
  322. 200-REU-1-8135:
  323. background_color: rgba(0, 0, 0, 0)
  324. condition: ''
  325. decimal: '2'
  326. exponential: 'false'
  327. formula: ''
  328. header:
  329. size: 22
  330. title: ' '
  331. weight: '700'
  332. height: 39.06666
  333. larger: ''
  334. left: 289px
  335. lesser: ''
  336. linkhtml: 'true'
  337. ref: 200-REU-1-8135
  338. top: 818px
  339. trend: 'true'
  340. type: data
  341. unit:
  342. size: 22
  343. title: ' V'
  344. weight: '400'
  345. width: 99.06666
  346. 200-REU-1-9131:
  347. background_color: rgba(0, 0, 0, 0)
  348. decimal: '2'
  349. exponential: 'false'
  350. formula: ''
  351. header:
  352. size: 20
  353. title: ' '
  354. weight: '700'
  355. height: 25.06666
  356. larger: ''
  357. left: 387px
  358. lesser: ''
  359. linkhtml: 'true'
  360. ref: 200-REU-1-9131
  361. top: 666px
  362. trend: 'true'
  363. type: data
  364. unit:
  365. size: 20
  366. title: ' V'
  367. weight: '400'
  368. width: 98.06666
  369. 200-REU-1-9133:
  370. background_color: rgba(0, 0, 0, 0)
  371. decimal: '2'
  372. exponential: 'false'
  373. formula: ''
  374. header:
  375. size: 20
  376. title: ' '
  377. weight: '700'
  378. height: 31.06666
  379. larger: ''
  380. left: 512px
  381. lesser: ''
  382. linkhtml: 'true'
  383. ref: 200-REU-1-9133
  384. top: 667px
  385. trend: 'true'
  386. type: data
  387. unit:
  388. size: 20
  389. title: ' V'
  390. weight: '400'
  391. width: 99.06666
  392. 200-REU-1-9135:
  393. background_color: rgba(0, 0, 0, 0)
  394. decimal: '2'
  395. exponential: 'false'
  396. formula: ''
  397. header:
  398. size: 22
  399. title: ' '
  400. weight: '700'
  401. height: 29.06666
  402. larger: ''
  403. left: 564px
  404. lesser: ''
  405. linkhtml: 'true'
  406. ref: 200-REU-1-9135
  407. top: 820px
  408. trend: 'true'
  409. type: data
  410. unit:
  411. size: 22
  412. title: ' V'
  413. weight: '400'
  414. width: 100.06666
  415. 200-REU-1-9137:
  416. background_color: rgba(0, 0, 0, 0)
  417. condition: ''
  418. decimal: '2'
  419. exponential: 'false'
  420. formula: ''
  421. header:
  422. size: 22
  423. title: ' '
  424. weight: '700'
  425. height: 26.06666
  426. larger: ''
  427. left: 465px
  428. lesser: ''
  429. linkhtml: 'true'
  430. ref: 200-REU-1-9137
  431. top: 819px
  432. trend: 'true'
  433. type: data
  434. unit:
  435. size: 22
  436. title: ' V'
  437. weight: '400'
  438. width: 98.06666
  439. 311-E23-1-1100-MAG-I:
  440. background_color: rgba(0, 0, 0, 0)
  441. decimal: '2'
  442. exponential: 'false'
  443. formula: ''
  444. header:
  445. size: 15
  446. title: 'M1: '
  447. weight: '400'
  448. height: 25.06666
  449. larger: ''
  450. left: 635px
  451. lesser: ''
  452. linkhtml: 'true'
  453. ref: 311-E23-1-1100-MAG-I
  454. top: 652px
  455. trend: 'true'
  456. type: data
  457. unit:
  458. size: 15
  459. title: ' A'
  460. weight: '400'
  461. width: 97.06666
  462. 311-E23-1-2100-MAG-I:
  463. background_color: rgba(0, 0, 0, 0)
  464. decimal: '2'
  465. exponential: 'false'
  466. formula: ''
  467. header:
  468. size: 15
  469. title: 'M2: '
  470. weight: '400'
  471. height: 23.06666
  472. larger: ''
  473. left: 655px
  474. lesser: ''
  475. linkhtml: 'true'
  476. ref: 311-E23-1-2100-MAG-I
  477. top: 630px
  478. trend: 'true'
  479. type: data
  480. unit:
  481. size: 15
  482. title: ' A'
  483. weight: '400'
  484. width: 93.06666
  485. 311-E23-1-3100-MAG-I:
  486. background_color: rgba(0, 0, 0, 0)
  487. decimal: '2'
  488. exponential: 'false'
  489. formula: ''
  490. header:
  491. size: 15
  492. title: 'M3: '
  493. weight: '400'
  494. height: 23.06666
  495. larger: ''
  496. left: 707px
  497. lesser: ''
  498. linkhtml: 'true'
  499. ref: 311-E23-1-3100-MAG-I
  500. top: 608px
  501. trend: 'true'
  502. type: data
  503. unit:
  504. size: 15
  505. title: ' A'
  506. weight: '400'
  507. width: 101.06666
  508. 311-E23-1-4100-MAG-I:
  509. background_color: rgba(0, 0, 0, 0)
  510. decimal: '2'
  511. exponential: 'false'
  512. formula: ''
  513. header:
  514. size: 15
  515. title: 'M4: '
  516. weight: '400'
  517. height: 22.06666
  518. larger: ''
  519. left: 752px
  520. lesser: ''
  521. linkhtml: 'true'
  522. ref: 311-E23-1-4100-MAG-I
  523. top: 631px
  524. trend: 'true'
  525. type: data
  526. unit:
  527. size: 15
  528. title: ' A'
  529. weight: '400'
  530. width: 97.06666
  531. 311-E23-1-5100-MAG-I:
  532. background_color: rgba(0, 0, 0, 0)
  533. decimal: '2'
  534. exponential: 'false'
  535. formula: ''
  536. header:
  537. size: 15
  538. title: 'M5: '
  539. weight: '400'
  540. height: 22.06666
  541. larger: ''
  542. left: 760px
  543. lesser: ''
  544. linkhtml: 'true'
  545. ref: 311-E23-1-5100-MAG-I
  546. top: 654px
  547. trend: 'true'
  548. type: data
  549. unit:
  550. size: 15
  551. title: ' A'
  552. weight: '400'
  553. width: 96.06666
  554. 320-ECA-1-5000:
  555. background_color: rgba(0, 0, 0, 0)
  556. decimal: '1'
  557. exponential: 'false'
  558. formula: ''
  559. header:
  560. size: 24
  561. title: ' '
  562. weight: '400'
  563. height: 30.06666
  564. larger: ''
  565. left: 863px
  566. lesser: ''
  567. linkhtml: 'true'
  568. ref: 320-ECA-1-5000
  569. top: 589px
  570. trend: 'true'
  571. type: data
  572. unit:
  573. size: 24
  574. title: ' A'
  575. weight: '400'
  576. width: 110.06666
  577. 320-MOD-0-0001:
  578. background_color: rgba(0, 0, 0, 0)
  579. cond: ''
  580. dict: '{"1":"Bake-out", "2":"Cool-Down", "3":"Argon-Preparation", "4":"Standby","5":"Standard
  581. Operation", "6":"Regeneration", "7":"Warm-Up", "8":"CKrS Calibration"}'
  582. header:
  583. size: 28px
  584. title: 'CPS mode: '
  585. weight: '400'
  586. height: 75.06666
  587. left: 795px
  588. linkhtml: 'true'
  589. ref: 320-MOD-0-0001
  590. top: 130px
  591. trend: 'true'
  592. type: integer-to-string
  593. unit:
  594. size: 28px
  595. weight: '700'
  596. width: 230.06666
  597. 320-REI-1-5103:
  598. background_color: rgba(0, 0, 0, 0)
  599. decimal: '1'
  600. exponential: 'false'
  601. formula: ''
  602. header:
  603. size: 20
  604. title: ' '
  605. weight: '400'
  606. height: 34.06666
  607. larger: ''
  608. left: 865px
  609. lesser: ''
  610. linkhtml: 'true'
  611. ref: 320-REI-1-5103
  612. top: 627px
  613. trend: 'true'
  614. type: data
  615. unit:
  616. size: 20
  617. title: ' A'
  618. weight: '400'
  619. width: 104.06666
  620. 320-REU-1-2115:
  621. background_color: rgba(0, 0, 0, 0)
  622. decimal: '2'
  623. exponential: 'false'
  624. formula: ''
  625. header:
  626. size: 20
  627. title: ' '
  628. weight: '400'
  629. height: 30.06666
  630. larger: ''
  631. left: 862px
  632. lesser: ''
  633. linkhtml: 'true'
  634. ref: 320-REU-1-2115
  635. top: 664px
  636. trend: 'true'
  637. type: data
  638. unit:
  639. size: 20
  640. title: ' V'
  641. weight: '400'
  642. width: 98.06666
  643. 320-VAO-3-0004:
  644. background_color: rgba(0, 0, 0, 0)
  645. height: 20.06666
  646. icon: valve
  647. left: 995px
  648. linkhtml: 'true'
  649. 'off': '135'
  650. off_condition: offgreater
  651. 'on': '135'
  652. on_condition: onsmaller
  653. ref: 320-VAO-3-0004
  654. rotate: matrix(1, 0, 0, 1, 0, 0)
  655. top: 470px
  656. trend: 'true'
  657. type: icon
  658. width: 16.06666
  659. 411-REI-1-1110-0001:
  660. background_color: rgba(0, 0, 0, 0)
  661. decimal: '1'
  662. exponential: 'false'
  663. formula: ''
  664. header:
  665. size: 24
  666. title: ' '
  667. weight: '400'
  668. height: 39.06666
  669. larger: ''
  670. left: 986px
  671. lesser: ''
  672. linkhtml: 'true'
  673. ref: 411-REI-1-1110-0001
  674. top: 625px
  675. trend: 'true'
  676. type: data
  677. unit:
  678. size: 24
  679. title: ' A'
  680. weight: '400'
  681. width: 103.06666
  682. 411-REI-1-2110-0001:
  683. background_color: rgba(255, 255, 255, 0.498)
  684. decimal: '1'
  685. exponential: 'false'
  686. formula: ''
  687. header:
  688. size: 24
  689. title: ' '
  690. weight: '400'
  691. height: 38.06666
  692. larger: ''
  693. left: 1099px
  694. lesser: ''
  695. linkhtml: 'true'
  696. ref: 411-REI-1-2110-0001
  697. top: 625px
  698. trend: 'true'
  699. type: data
  700. unit:
  701. size: 24
  702. title: ' A'
  703. weight: '400'
  704. width: 109.06666
  705. 433-ELV-1-0101:
  706. background_color: rgba(0, 0, 0, 0)
  707. decimal: '1'
  708. exponential: 'false'
  709. formula: ''
  710. header:
  711. size: 16
  712. title: ' '
  713. weight: '400'
  714. height: 20.06666
  715. larger: ''
  716. left: 1127px
  717. lesser: ''
  718. linkhtml: 'false'
  719. ref: 433-ELV-1-0101
  720. top: 287px
  721. trend: 'true'
  722. type: data
  723. unit:
  724. size: 16
  725. title: ' A'
  726. weight: '400'
  727. width: 58.06666
  728. 433-ELV-1-0201:
  729. background_color: rgba(0, 0, 0, 0)
  730. decimal: '1'
  731. exponential: 'false'
  732. formula: ''
  733. header:
  734. size: 16
  735. title: ' '
  736. weight: '400'
  737. height: 26.06666
  738. larger: ''
  739. left: 1187px
  740. lesser: ''
  741. linkhtml: 'false'
  742. ref: 433-ELV-1-0201
  743. top: 288px
  744. trend: 'true'
  745. type: data
  746. unit:
  747. size: 16
  748. title: ' A'
  749. weight: '400'
  750. width: 60.06666
  751. 433-ELV-1-0301:
  752. background_color: rgba(0, 0, 0, 0)
  753. decimal: '1'
  754. exponential: 'false'
  755. formula: ''
  756. header:
  757. size: 14
  758. title: ' '
  759. weight: '400'
  760. height: 25.06666
  761. larger: ''
  762. left: 1254.23px
  763. lesser: ''
  764. linkhtml: 'false'
  765. ref: 433-ELV-1-0301
  766. top: 288px
  767. trend: 'true'
  768. type: data
  769. unit:
  770. size: 14
  771. title: ' A'
  772. weight: '400'
  773. width: 50.06666
  774. 433-ELV-1-0401:
  775. background_color: rgba(0, 0, 0, 0)
  776. decimal: '1'
  777. exponential: 'false'
  778. formula: ''
  779. header:
  780. size: 14
  781. title: ' '
  782. weight: '400'
  783. height: 29.06666
  784. larger: ''
  785. left: 1303.7px
  786. lesser: ''
  787. linkhtml: 'false'
  788. ref: 433-ELV-1-0401
  789. top: 287px
  790. trend: 'true'
  791. type: data
  792. unit:
  793. size: 14
  794. title: ' A'
  795. weight: '400'
  796. width: 55.06666
  797. 433-ELV-1-0501:
  798. background_color: rgba(0, 0, 0, 0)
  799. decimal: '1'
  800. exponential: 'false'
  801. formula: ''
  802. header:
  803. size: 14
  804. title: ' '
  805. weight: '400'
  806. height: 28.06666
  807. larger: ''
  808. left: 1313px
  809. lesser: ''
  810. linkhtml: 'false'
  811. ref: 433-ELV-1-0501
  812. top: 648px
  813. trend: 'true'
  814. type: data
  815. unit:
  816. size: 14
  817. title: ' A'
  818. weight: '400'
  819. width: 50.06666
  820. 433-ELV-1-0601:
  821. background_color: rgba(0, 0, 0, 0)
  822. decimal: '1'
  823. exponential: 'false'
  824. formula: ''
  825. header:
  826. size: 14
  827. title: ' '
  828. weight: '400'
  829. height: 26.06666
  830. larger: ''
  831. left: 1353px
  832. lesser: ''
  833. linkhtml: 'false'
  834. ref: 433-ELV-1-0601
  835. top: 288px
  836. trend: 'true'
  837. type: data
  838. unit:
  839. size: 14
  840. title: ' A'
  841. weight: '400'
  842. width: 55.06666
  843. 433-ELV-1-0701:
  844. background_color: rgba(0, 0, 0, 0)
  845. decimal: '1'
  846. exponential: 'false'
  847. formula: ''
  848. header:
  849. size: 14
  850. title: ' '
  851. weight: '400'
  852. height: 28.06666
  853. larger: ''
  854. left: 1370px
  855. lesser: ''
  856. linkhtml: 'false'
  857. ref: 433-ELV-1-0701
  858. top: 647px
  859. trend: 'true'
  860. type: data
  861. unit:
  862. size: 14
  863. title: ' A'
  864. weight: '400'
  865. width: 53.06666
  866. 433-ELV-1-0801:
  867. background_color: rgba(0, 0, 0, 0)
  868. decimal: '1'
  869. exponential: 'false'
  870. formula: ''
  871. header:
  872. size: 14
  873. title: ' '
  874. weight: '400'
  875. height: 26.06666
  876. larger: ''
  877. left: 1397px
  878. lesser: ''
  879. linkhtml: 'false'
  880. ref: 433-ELV-1-0801
  881. top: 288px
  882. trend: 'true'
  883. type: data
  884. unit:
  885. size: 14
  886. title: ' A'
  887. weight: '400'
  888. width: 51.06666
  889. 433-ELV-1-0901:
  890. background_color: rgba(0, 0, 0, 0)
  891. decimal: '1'
  892. exponential: 'false'
  893. formula: ''
  894. header:
  895. size: 14
  896. title: ' '
  897. weight: '400'
  898. height: 28.06666
  899. larger: ''
  900. left: 1423px
  901. lesser: ''
  902. linkhtml: 'false'
  903. ref: 433-ELV-1-0901
  904. top: 648px
  905. trend: 'true'
  906. type: data
  907. unit:
  908. size: 14
  909. title: ' A'
  910. weight: '400'
  911. width: 51.06666
  912. 433-ELV-1-1001:
  913. background_color: rgba(0, 0, 0, 0)
  914. decimal: '1'
  915. exponential: 'false'
  916. formula: ''
  917. header:
  918. size: 14
  919. title: ' '
  920. weight: '400'
  921. height: 26.06666
  922. larger: ''
  923. left: 1448px
  924. lesser: ''
  925. linkhtml: 'false'
  926. ref: 433-ELV-1-1001
  927. top: 289px
  928. trend: 'true'
  929. type: data
  930. unit:
  931. size: 14
  932. title: ' A'
  933. weight: '400'
  934. width: 54.06666
  935. 433-ELV-1-1101:
  936. background_color: rgba(0, 0, 0, 0)
  937. decimal: '1'
  938. exponential: 'false'
  939. formula: ''
  940. header:
  941. size: 14
  942. title: ' '
  943. weight: '400'
  944. height: 28.06666
  945. larger: ''
  946. left: 1472px
  947. lesser: ''
  948. linkhtml: 'false'
  949. ref: 433-ELV-1-1101
  950. top: 648px
  951. trend: 'true'
  952. type: data
  953. unit:
  954. size: 14
  955. title: ' A'
  956. weight: '400'
  957. width: 51.06666
  958. 433-ELV-1-1201:
  959. background_color: rgba(0, 0, 0, 0)
  960. decimal: '1'
  961. exponential: 'false'
  962. formula: ''
  963. header:
  964. size: 14
  965. title: ' '
  966. weight: '400'
  967. height: 26.06666
  968. larger: ''
  969. left: 1495px
  970. lesser: ''
  971. linkhtml: 'false'
  972. ref: 433-ELV-1-1201
  973. top: 289px
  974. trend: 'true'
  975. type: data
  976. unit:
  977. size: 14
  978. title: ' A'
  979. weight: '400'
  980. width: 56.06666
  981. 433-ELV-1-1301:
  982. background_color: rgba(0, 0, 0, 0)
  983. decimal: '1'
  984. exponential: 'false'
  985. formula: ''
  986. header:
  987. size: 14
  988. title: ' '
  989. weight: '400'
  990. height: 26.06666
  991. larger: ''
  992. left: 1517px
  993. lesser: ''
  994. linkhtml: 'false'
  995. ref: 433-ELV-1-1301
  996. top: 648px
  997. trend: 'true'
  998. type: data
  999. unit:
  1000. size: 14
  1001. title: ' A'
  1002. weight: '400'
  1003. width: 50.06666
  1004. 433-ELV-1-1401:
  1005. background_color: rgba(0, 0, 0, 0)
  1006. decimal: '1'
  1007. exponential: 'false'
  1008. formula: ''
  1009. header:
  1010. size: 14
  1011. title: ' '
  1012. weight: '400'
  1013. height: 25.06666
  1014. larger: ''
  1015. left: 1542px
  1016. lesser: ''
  1017. linkhtml: 'false'
  1018. ref: 433-ELV-1-1401
  1019. top: 289px
  1020. trend: 'true'
  1021. type: data
  1022. unit:
  1023. size: 14
  1024. title: ' A'
  1025. weight: '400'
  1026. width: 53.06666
  1027. 433-ELV-1-1501:
  1028. background_color: rgba(0, 0, 0, 0)
  1029. decimal: '1'
  1030. exponential: 'false'
  1031. formula: ''
  1032. header:
  1033. size: 14
  1034. title: ' '
  1035. weight: '400'
  1036. height: 26.06666
  1037. larger: ''
  1038. left: 1564px
  1039. lesser: ''
  1040. linkhtml: 'false'
  1041. ref: 433-ELV-1-1501
  1042. top: 647px
  1043. trend: 'true'
  1044. type: data
  1045. unit:
  1046. size: 14
  1047. title: ' A'
  1048. weight: '400'
  1049. width: 51.06666
  1050. 433-ELV-1-1601:
  1051. background_color: rgba(0, 0, 0, 0)
  1052. decimal: '1'
  1053. exponential: 'false'
  1054. formula: ''
  1055. header:
  1056. size: 14
  1057. title: ' '
  1058. weight: '400'
  1059. height: 26.06666
  1060. larger: ''
  1061. left: 1604px
  1062. lesser: ''
  1063. linkhtml: 'false'
  1064. ref: 433-ELV-1-1601
  1065. top: 289px
  1066. trend: 'true'
  1067. type: data
  1068. unit:
  1069. size: 14
  1070. title: ' A'
  1071. weight: '400'
  1072. width: 54.06666
  1073. 521-ELV-0-1205-0001:
  1074. background_color: rgba(255, 255, 255, 0.498)
  1075. decimal: '1'
  1076. exponential: 'false'
  1077. formula: ''
  1078. header:
  1079. size: 24
  1080. title: ' '
  1081. weight: '400'
  1082. height: 39.06666
  1083. larger: ''
  1084. left: 1761px
  1085. lesser: ''
  1086. linkhtml: 'true'
  1087. ref: 521-ELV-0-1205-0001
  1088. top: 614px
  1089. trend: 'true'
  1090. type: data
  1091. unit:
  1092. size: 24
  1093. title: ' A'
  1094. weight: '400'
  1095. width: 98.06666
  1096. 521-ELV-0-2205-0001:
  1097. background_color: rgba(0, 0, 0, 0)
  1098. decimal: '1'
  1099. exponential: 'false'
  1100. formula: ''
  1101. header:
  1102. size: 24
  1103. title: ' '
  1104. weight: '400'
  1105. height: 39.06666
  1106. larger: ''
  1107. left: 1870px
  1108. lesser: ''
  1109. linkhtml: 'true'
  1110. ref: 521-ELV-0-2205-0001
  1111. top: 613px
  1112. trend: 'true'
  1113. type: data
  1114. unit:
  1115. size: 24
  1116. title: ' A'
  1117. weight: '400'
  1118. width: 97.06666
  1119. calc_0:
  1120. background_color: rgba(0, 0, 0, 0)
  1121. decimal: '1'
  1122. formula: '[200-ELV-5-3100]*0.01162'
  1123. header:
  1124. size: 28
  1125. title: ' '
  1126. weight: '700'
  1127. height: 34.06666
  1128. larger: ''
  1129. left: 243px
  1130. lesser: ''
  1131. ref: ''
  1132. top: 386px
  1133. type: calc
  1134. unit:
  1135. size: 28
  1136. title: ' T'
  1137. weight: '700'
  1138. width: 129.06666
  1139. calc_007:
  1140. background_color: rgba(0, 0, 0, 0)
  1141. decimal: '1'
  1142. formula: -[113-E23-1-1100-MAG-I]*0.07057163
  1143. header:
  1144. size: 28
  1145. title: ' '
  1146. weight: '700'
  1147. height: 35.06666
  1148. larger: ''
  1149. left: 107px
  1150. lesser: ''
  1151. ref: ''
  1152. top: 385px
  1153. type: calc
  1154. unit:
  1155. size: 28
  1156. title: ' T'
  1157. weight: '700'
  1158. width: 130.06666
  1159. calc_1:
  1160. background_color: rgba(0, 0, 0, 0)
  1161. decimal: '1'
  1162. formula: '[200-ELV-5-3200]*0.01166'
  1163. header:
  1164. size: 28
  1165. title: ' '
  1166. weight: '400'
  1167. height: 39.06666
  1168. larger: ''
  1169. left: 380px
  1170. lesser: ''
  1171. ref: ''
  1172. top: 386px
  1173. type: calc
  1174. unit:
  1175. size: 28
  1176. title: ' T'
  1177. weight: '700'
  1178. width: 140.06666
  1179. calc_1001411rby120016225:
  1180. background_color: rgba(255, 255, 255, 0.498)
  1181. decimal: '2'
  1182. formula: 100*([411-RBY-1-2001]/0.10912 -1)
  1183. header:
  1184. size: 14
  1185. title: ' '
  1186. weight: '400'
  1187. height: 22.06666
  1188. larger: '0.1'
  1189. left: 1112px
  1190. lesser: '-0.1'
  1191. ref: ''
  1192. top: 525px
  1193. type: calc
  1194. unit:
  1195. size: 14
  1196. title: ' %'
  1197. weight: '400'
  1198. width: 67.06666
  1199. calc_1001521rby012750001472:
  1200. background_color: rgba(0, 0, 0, 0)
  1201. decimal: '2'
  1202. formula: 100*([521-RBY-0-1275-0001]/0.1153 -1)
  1203. header:
  1204. size: 14
  1205. title: ' '
  1206. weight: '400'
  1207. height: 26.06666
  1208. larger: '0.03'
  1209. left: 1762px
  1210. lesser: '-0.03'
  1211. ref: ''
  1212. top: 516px
  1213. type: calc
  1214. unit:
  1215. size: 14
  1216. title: ' %'
  1217. weight: '400'
  1218. width: 60.06666
  1219. calc_1001521rby022750002755:
  1220. background_color: rgba(0, 0, 0, 0)
  1221. decimal: '2'
  1222. formula: 100*([521-RBY-0-2275-0001]/0.17853 -1)
  1223. header:
  1224. size: 14
  1225. title: ' '
  1226. weight: '400'
  1227. height: 25.06666
  1228. larger: '0.1'
  1229. left: 1833px
  1230. lesser: '-0.1'
  1231. ref: ''
  1232. top: 516px
  1233. type: calc
  1234. unit:
  1235. size: 14
  1236. title: ' %'
  1237. weight: '400'
  1238. width: 66.06666
  1239. calc_100200elv1310021586-1:
  1240. background_color: rgba(0, 0, 0, 0)
  1241. decimal: '2'
  1242. formula: 100*([200-ELV-5-3200]/215.86 -1)
  1243. header:
  1244. size: 14
  1245. title: ' '
  1246. weight: '700'
  1247. height: 19.06666
  1248. larger: '0.03'
  1249. left: 408px
  1250. lesser: '-0.03'
  1251. ref: ''
  1252. top: 528px
  1253. type: calc
  1254. unit:
  1255. size: 14
  1256. title: ' %'
  1257. weight: '400'
  1258. width: 64.06666
  1259. calc_100200elv5310021659-1:
  1260. background_color: rgba(0, 0, 0, 0)
  1261. decimal: '2'
  1262. formula: 100*([200-ELV-5-3100]/216.59 -1)
  1263. header:
  1264. size: 14
  1265. title: ' '
  1266. weight: '700'
  1267. height: 20.06666
  1268. larger: '0.03'
  1269. left: 244px
  1270. lesser: '-0.03'
  1271. ref: ''
  1272. top: 527px
  1273. type: calc
  1274. unit:
  1275. size: 14
  1276. title: ' %'
  1277. weight: '400'
  1278. width: 68.06666
  1279. calc_100200elv53300145912-1:
  1280. background_color: rgba(0, 0, 0, 0)
  1281. decimal: '2'
  1282. formula: 100*([200-ELV-5-3300]/145.912 -1)
  1283. header:
  1284. size: 14
  1285. title: ' '
  1286. weight: '700'
  1287. height: 20.06666
  1288. larger: '0.03'
  1289. left: 533px
  1290. lesser: '-0.03'
  1291. ref: ''
  1292. top: 528px
  1293. type: calc
  1294. unit:
  1295. size: 14
  1296. title: ' %'
  1297. weight: '400'
  1298. width: 65.06666
  1299. calc_100311rby11051054-1:
  1300. background_color: rgba(0, 0, 0, 0)
  1301. decimal: '1'
  1302. formula: 100*([311-RBY-1-1051]/0.5395 -1)
  1303. header:
  1304. size: 14
  1305. title: ' '
  1306. weight: '700'
  1307. height: 20.06666
  1308. larger: '0.3'
  1309. left: 628px
  1310. lesser: '-0.3'
  1311. ref: ''
  1312. top: 528px
  1313. type: calc
  1314. unit:
  1315. size: 14
  1316. title: ' %'
  1317. weight: '400'
  1318. width: 49.06666
  1319. calc_100311rby1205106387-1:
  1320. background_color: rgba(0, 0, 0, 0)
  1321. decimal: '1'
  1322. formula: 100*([311-RBY-1-3051]/0.64033 -1)
  1323. header:
  1324. size: 14
  1325. title: ' '
  1326. weight: '700'
  1327. height: 21.06666
  1328. larger: '0.3'
  1329. left: 709px
  1330. lesser: '-0.3'
  1331. ref: ''
  1332. top: 528px
  1333. type: calc
  1334. unit:
  1335. size: 14
  1336. title: ' %'
  1337. weight: '400'
  1338. width: 45.06666
  1339. calc_100311rby120510701-1:
  1340. background_color: rgba(0, 0, 0, 0)
  1341. decimal: '1'
  1342. formula: 100*([311-RBY-1-2051]/0.701 -1)
  1343. header:
  1344. size: 14
  1345. title: ' '
  1346. weight: '700'
  1347. height: 21.06666
  1348. larger: '0.3'
  1349. left: 669px
  1350. lesser: '-0.3'
  1351. ref: ''
  1352. top: 528px
  1353. type: calc
  1354. unit:
  1355. size: 14
  1356. title: ' %'
  1357. weight: '400'
  1358. width: 46.06666
  1359. calc_100311rby1405106795-1:
  1360. background_color: rgba(0, 0, 0, 0)
  1361. decimal: '1'
  1362. formula: 100*([311-RBY-1-4051]/0.6795 -1)
  1363. header:
  1364. size: '14'
  1365. title: ''
  1366. weight: '700'
  1367. height: 23.06666
  1368. larger: '0.5'
  1369. left: 750px
  1370. lesser: '-0.5'
  1371. ref: ''
  1372. top: 528px
  1373. type: calc
  1374. unit:
  1375. size: '14'
  1376. title: '%'
  1377. weight: '400'
  1378. width: 41.06666
  1379. calc_100311rby1505106945-1:
  1380. background_color: rgba(0, 0, 0, 0)
  1381. decimal: '1'
  1382. formula: 100*([311-RBY-1-5051]/0.6945 -1)
  1383. header:
  1384. size: 14
  1385. title: ' '
  1386. weight: '700'
  1387. height: 22.06666
  1388. larger: '0.3'
  1389. left: 787px
  1390. lesser: '-0.3'
  1391. ref: ''
  1392. top: 528px
  1393. type: calc
  1394. unit:
  1395. size: 14
  1396. title: ' %'
  1397. weight: '400'
  1398. width: 45.06666
  1399. calc_100320eca1500014003-1:
  1400. background_color: rgba(0, 0, 0, 0)
  1401. decimal: '2'
  1402. formula: 100*([320-ECA-1-5000]/140.03 -1)
  1403. header:
  1404. size: 14
  1405. title: ' '
  1406. weight: '700'
  1407. height: 20.06666
  1408. larger: '0.1'
  1409. left: 875px
  1410. lesser: '-0.1'
  1411. ref: ''
  1412. top: 530px
  1413. type: calc
  1414. unit:
  1415. size: 14
  1416. title: ' %'
  1417. weight: '400'
  1418. width: 72.06666
  1419. calc_100411rby11001025565-1:
  1420. background_color: rgba(0, 0, 0, 0)
  1421. decimal: '2'
  1422. formula: 100*([411-RBY-1-1001]/0.28422 -1)
  1423. header:
  1424. size: 14
  1425. title: ' '
  1426. weight: '700'
  1427. height: 21.06666
  1428. larger: '0.3'
  1429. left: 1005px
  1430. lesser: '-0.3'
  1431. ref: ''
  1432. top: 528px
  1433. type: calc
  1434. unit:
  1435. size: 14
  1436. title: ' %'
  1437. weight: '400'
  1438. width: 66.06666
  1439. calc_2:
  1440. background_color: rgba(0, 0, 0, 0)
  1441. decimal: '1'
  1442. formula: '[200-ELV-5-3300]*0.02681'
  1443. header:
  1444. size: 28
  1445. title: ' '
  1446. weight: '700'
  1447. height: 35.06666
  1448. larger: ''
  1449. left: 517px
  1450. lesser: ''
  1451. ref: ''
  1452. top: 387px
  1453. type: calc
  1454. unit:
  1455. size: 28
  1456. title: ' T'
  1457. weight: '700'
  1458. width: 129.06666
  1459. calc_3:
  1460. background_color: rgba(255, 255, 255, 0.498)
  1461. decimal: '1'
  1462. formula: '[320-REI-1-5103]*0.0285'
  1463. header:
  1464. size: 28
  1465. title: ' '
  1466. weight: '700'
  1467. height: 35.06666
  1468. larger: ''
  1469. left: 846px
  1470. lesser: ''
  1471. ref: ''
  1472. top: 388px
  1473. type: calc
  1474. unit:
  1475. size: 28
  1476. title: ' T'
  1477. weight: '700'
  1478. width: 129.06666
  1479. calc_4:
  1480. background_color: rgba(255, 255, 255, 0.498)
  1481. decimal: '1'
  1482. formula: '[411-REI-1-1110-0001]*0.0287'
  1483. header:
  1484. size: 28
  1485. title: ' '
  1486. weight: '400'
  1487. height: 35.06666
  1488. larger: ''
  1489. left: 970px
  1490. lesser: ''
  1491. ref: ''
  1492. top: 405px
  1493. type: calc
  1494. unit:
  1495. size: 28
  1496. title: ' T'
  1497. weight: '700'
  1498. width: 135.06666
  1499. calc_433rby173200003433rby173300003433rby173500003433rby1736000034:
  1500. background_color: rgba(200, 200, 200, 0.498)
  1501. decimal: '1'
  1502. formula: ([433-RBY-1-7320-0003]+[433-RBY-1-7330-0003]+[433-RBY-1-7350-0003]+[433-RBY-1-7360-0003])/4
  1503. header:
  1504. size: 24
  1505. title: ' '
  1506. weight: '700'
  1507. height: 35.06666
  1508. larger: ''
  1509. left: 1419px
  1510. lesser: ''
  1511. ref: ''
  1512. top: 468px
  1513. type: calc
  1514. unit:
  1515. size: 24
  1516. title: ' G'
  1517. weight: '700'
  1518. width: 115.06666
  1519. calc_5:
  1520. background_color: rgba(255, 255, 255, 0.498)
  1521. decimal: '1'
  1522. formula: '[411-REI-1-2110-0001]*0.0286'
  1523. header:
  1524. size: 28
  1525. title: ' '
  1526. weight: '400'
  1527. height: 29.06666
  1528. larger: ''
  1529. left: 1104px
  1530. lesser: ''
  1531. ref: ''
  1532. top: 405px
  1533. type: calc
  1534. unit:
  1535. size: 28
  1536. title: ' T'
  1537. weight: '700'
  1538. width: 129.06666
  1539. calc_507:
  1540. background_color: rgba(0, 0, 0, 0)
  1541. decimal: '1'
  1542. formula: -[311-E23-1-3100-MAG-I]*0.07057163
  1543. header:
  1544. size: 28
  1545. title: ' '
  1546. weight: '700'
  1547. height: 39.06666
  1548. larger: ''
  1549. left: 695px
  1550. lesser: ''
  1551. ref: ''
  1552. top: 388px
  1553. type: calc
  1554. unit:
  1555. size: 28
  1556. title: ' T'
  1557. weight: '700'
  1558. width: 130.06666
  1559. calc_6:
  1560. background_color: rgba(255, 255, 255, 0.498)
  1561. decimal: '1'
  1562. formula: '[521-ELV-0-1205-0001]*0.06898'
  1563. header:
  1564. size: 28
  1565. title: ' '
  1566. weight: '400'
  1567. height: 39.06666
  1568. larger: ''
  1569. left: 1750.22px
  1570. lesser: ''
  1571. ref: ''
  1572. top: 404px
  1573. type: calc
  1574. unit:
  1575. size: 28
  1576. title: ' T'
  1577. weight: '700'
  1578. width: 100.06666
  1579. calc_61:
  1580. background_color: rgba(0, 0, 0, 0)
  1581. decimal: '1'
  1582. formula: 6*0
  1583. header:
  1584. size: 24
  1585. title: ' '
  1586. weight: '400'
  1587. height: 34.06666
  1588. larger: ''
  1589. left: 1496px
  1590. lesser: ''
  1591. ref: ''
  1592. top: 744px
  1593. type: calc
  1594. unit:
  1595. size: 24
  1596. title: ' T'
  1597. weight: '400'
  1598. width: 101.06666
  1599. calc_65050:
  1600. background_color: rgba(0, 0, 0, 0)
  1601. decimal: '1'
  1602. formula: 0*50/50
  1603. header:
  1604. size: 24
  1605. title: ' '
  1606. weight: '700'
  1607. height: 35.06666
  1608. larger: ''
  1609. left: 1347px
  1610. lesser: ''
  1611. ref: ''
  1612. top: 744px
  1613. type: calc
  1614. unit:
  1615. size: 24
  1616. title: ' T'
  1617. weight: '400'
  1618. width: 100.06666
  1619. calc_7:
  1620. background_color: rgba(0, 0, 0, 0)
  1621. decimal: '1'
  1622. formula: '[521-ELV-0-2205-0001]*0.064057'
  1623. header:
  1624. size: 28
  1625. title: ' '
  1626. weight: '400'
  1627. height: 39.06666
  1628. larger: ''
  1629. left: 1859.23px
  1630. lesser: ''
  1631. ref: ''
  1632. top: 404px
  1633. type: calc
  1634. unit:
  1635. size: 28
  1636. title: ' T'
  1637. weight: '700'
  1638. width: 100.06666
  1639. header_b-t:
  1640. background_color: rgba(0, 0, 0, 0)
  1641. header:
  1642. size: 24
  1643. title: 'B (T) '
  1644. weight: '700'
  1645. height: 45.06666
  1646. left: 4px
  1647. top: 385px
  1648. type: header
  1649. width: 61.06666
  1650. header_ba:
  1651. background_color: rgba(200, 200, 200, 0.498)
  1652. header:
  1653. size: 24
  1654. title: 'Ba: '
  1655. weight: '700'
  1656. height: 39.06666
  1657. left: 1377px
  1658. top: 466px
  1659. type: header
  1660. width: 40.06666
  1661. header_cl:
  1662. background_color: rgba(0, 0, 0, 0)
  1663. header:
  1664. size: 20
  1665. title: 'CL '
  1666. weight: '400'
  1667. height: 34.06666
  1668. left: 484px
  1669. titlelink: http://katrin.kit.edu/status/wgts-magnets/
  1670. top: 429px
  1671. type: header
  1672. width: 31.06666
  1673. header_click-on-hall-for-signals:
  1674. background_color: rgba(0, 0, 0, 0)
  1675. header:
  1676. size: 14
  1677. title: 'Click on HALL for signals '
  1678. weight: '400'
  1679. height: 20.06666
  1680. left: 1px
  1681. top: 885px
  1682. type: header
  1683. width: 184.06666
  1684. header_cps:
  1685. background_color: rgba(0, 0, 0, 0)
  1686. header:
  1687. size: 28
  1688. title: 'CPS '
  1689. weight: '700'
  1690. height: 34.06666
  1691. left: 854px
  1692. titlelink: http://katrin.kit.edu/status/cps
  1693. top: 338px
  1694. type: header
  1695. width: 51.06666
  1696. header_d:
  1697. background_color: rgba(0, 0, 0, 0)
  1698. header:
  1699. size: 24
  1700. title: 'D '
  1701. weight: '700'
  1702. height: 33.06666
  1703. left: 1510px
  1704. top: 716px
  1705. type: header
  1706. width: 50.06666
  1707. header_det:
  1708. background_color: rgba(0, 0, 0, 0)
  1709. header:
  1710. size: 28
  1711. title: 'DET '
  1712. weight: '700'
  1713. height: 43.06666
  1714. left: 1852px
  1715. titlelink: https://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=fpd__katrin_rep__0__103,fpd__katrin_rep__0__158,fpd__katrin_rep__0__159,fpd__katrin_rep__0__160,fpd__katrin_rep__0__161,fpd__katrin_rep__2__25,fpd__katrin_rep__2__26&infomod=legend&history_id=1508829765350
  1716. top: 355px
  1717. type: header
  1718. width: 56.06666
  1719. header_dfx:
  1720. background_color: rgba(0, 0, 0, 0)
  1721. header:
  1722. size: 22
  1723. title: 'DFx '
  1724. weight: '700'
  1725. height: 38.06666
  1726. left: 502px
  1727. top: 757px
  1728. type: header
  1729. width: 50.06666
  1730. header_dfy:
  1731. background_color: rgba(0, 0, 0, 0)
  1732. header:
  1733. size: 22
  1734. title: 'DFy '
  1735. weight: '700'
  1736. height: 35.06666
  1737. left: 578px
  1738. top: 758px
  1739. type: header
  1740. width: 54.06666
  1741. header_dipole-coil-pairs:
  1742. background_color: rgba(0, 0, 0, 0)
  1743. header:
  1744. size: 24
  1745. title: 'Dipole coil pairs '
  1746. weight: '700'
  1747. height: 39.06666
  1748. left: 322px
  1749. top: 726px
  1750. type: header
  1751. width: 214.06666
  1752. header_dps:
  1753. background_color: rgba(0, 0, 0, 0)
  1754. header:
  1755. size: 28
  1756. title: 'DPS '
  1757. weight: '700'
  1758. height: 45.06666
  1759. left: 702px
  1760. titlelink: http://katrin.kit.edu/status/dps/
  1761. top: 340px
  1762. type: header
  1763. width: 64.06666
  1764. header_drx:
  1765. background_color: rgba(0, 0, 0, 0)
  1766. header:
  1767. size: 22
  1768. title: 'DRx '
  1769. weight: '700'
  1770. height: 34.06666
  1771. left: 195px
  1772. top: 755px
  1773. type: header
  1774. width: 50.06666
  1775. header_dry:
  1776. background_color: rgba(0, 0, 0, 0)
  1777. header:
  1778. size: 22
  1779. title: 'DRy '
  1780. weight: '700'
  1781. height: 30.06666
  1782. left: 294px
  1783. top: 757px
  1784. type: header
  1785. width: 56.06666
  1786. header_emcs:
  1787. background_color: rgba(0, 0, 0, 0)
  1788. header:
  1789. size: 16
  1790. title: 'EMCS '
  1791. weight: '700'
  1792. height: 28.06666
  1793. left: 1147px
  1794. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=aircoils__aircoils_rep__0__2,aircoils__aircoils_rep__0__3&infomod=legend&history_id=1504854293817
  1795. top: 237px
  1796. type: header
  1797. width: 50.06666
  1798. header_hall:
  1799. background_color: rgba(0, 0, 0, 0)
  1800. header:
  1801. size: 20
  1802. title: 'Hall '
  1803. weight: '400'
  1804. height: 27.06666
  1805. left: 710px
  1806. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__15,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__18,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__21,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__24,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__27,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__30,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__33,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__36,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__39,cscryo__ControlSystem_DPS__310_MAG_Magnetbetrieb__42&infomod=legend&history_id=1519377867213
  1807. top: 497px
  1808. type: header
  1809. width: 49.06666
  1810. header_hallc:
  1811. background_color: rgba(0, 0, 0, 0)
  1812. header:
  1813. size: 20
  1814. title: 'Hall_c '
  1815. weight: '400'
  1816. height: 26.06666
  1817. left: 873px
  1818. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=cscps__ControlSystem_CPS__320_MAG_Magnetfeld__3,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__9,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__12,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__15,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__21,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__24,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__27,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__30,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__33,cscps__ControlSystem_CPS__320_MAG_Magnetfeld__36&infomod=legend&history_id=1501142629268
  1819. top: 497px
  1820. type: header
  1821. width: 50.06666
  1822. header_halldet:
  1823. background_color: rgba(0, 0, 0, 0)
  1824. header:
  1825. size: 18
  1826. title: 'Hall_DET '
  1827. weight: '400'
  1828. height: 23.06666
  1829. left: 1820px
  1830. titlelink: https://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=fpd__katrin_rep__2__25,fpd__katrin_rep__2__26&current_axis_range=-4.433198:14.85830&voltage_axis_range=-0.08097166:3.970243&infomod=legend&history_id=1508828719867
  1831. top: 492px
  1832. type: header
  1833. width: 77.06666
  1834. header_hallpch:
  1835. background_color: rgba(0, 0, 0, 0)
  1836. header:
  1837. size: 18
  1838. title: 'Hall_pch '
  1839. weight: '400'
  1840. height: 21.06666
  1841. left: 1736px
  1842. titlelink: https://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=fpd__katrin_rep__2__8,fpd__katrin_rep__2__9&current_axis_range=-4.433198:14.85830&voltage_axis_range=-0.08097166:3.970243&infomod=legend&history_id=1508828434890
  1843. top: 490px
  1844. type: header
  1845. width: 75.06666
  1846. header_hallps1:
  1847. background_color: rgba(0, 0, 0, 0)
  1848. header:
  1849. size: 18
  1850. title: 'Hall_ps1 '
  1851. weight: '400'
  1852. height: 27.06666
  1853. left: 1001px
  1854. titlelink: https://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=aircoils__aircoils_rep__0__123,aircoils__aircoils_rep__0__124&current_axis_range=-4.433198:14.85830&voltage_axis_range=-0.08097166:3.970243&infomod=legend&history_id=1508828932474
  1855. top: 496px
  1856. type: header
  1857. width: 71.06666
  1858. header_hallps2:
  1859. background_color: rgba(0, 0, 0, 0)
  1860. header:
  1861. size: 18
  1862. title: 'Hall_ps2 '
  1863. weight: '400'
  1864. height: 24.06666
  1865. left: 1102px
  1866. titlelink: https://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=aircoils__aircoils_rep__0__121,aircoils__aircoils_rep__0__122&current_axis_range=-4.433198:14.85830&voltage_axis_range=-0.08097166:3.970243&infomod=legend&history_id=1508829101044
  1867. top: 497px
  1868. type: header
  1869. width: 72.06666
  1870. header_hallrs:
  1871. background_color: rgba(0, 0, 0, 0)
  1872. header:
  1873. size: 20
  1874. title: 'Hall_rs '
  1875. weight: '400'
  1876. height: 24.06666
  1877. left: 172px
  1878. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=csrear__ControlSystem_REAR__110_MAG_Magnetbetrieb__3,csrear__ControlSystem_REAR__110_MAG_Magnetbetrieb__6&infomod=legend&history_id=1516286419243
  1879. top: 496px
  1880. type: header
  1881. width: 69.06666
  1882. header_hallw:
  1883. background_color: rgba(0, 0, 0, 0)
  1884. header:
  1885. size: 20
  1886. title: 'Hall_w '
  1887. weight: '400'
  1888. height: 27.06666
  1889. left: 431px
  1890. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__0,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__3,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__6,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__9,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__12,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__15,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__18,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__21,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__24,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__27,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__30,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__33,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__36,cswgts__ControlSystem_WGTS_Magnet__200_MAG_Magnetfeld__39&T_axis_range=-0.2145829:0.2309715&infomod=legend&history_id=1501142225158
  1891. top: 495px
  1892. type: header
  1893. width: 68.06666
  1894. header_hor:
  1895. background_color: rgba(0, 0, 0, 0)
  1896. header:
  1897. size: 16
  1898. title: 'Hor. '
  1899. weight: '700'
  1900. height: 26.06666
  1901. left: 1189px
  1902. top: 269px
  1903. type: header
  1904. width: 49.06666
  1905. header_imag:
  1906. background_color: rgba(0, 0, 0, 0)
  1907. header:
  1908. size: 24
  1909. title: 'I_mag '
  1910. weight: '700'
  1911. height: 36.06666
  1912. left: -1px
  1913. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=21600&module=graph&virtual=srctree&srctree=fpd__katrin_rep__0__153,fpd__katrin_rep__0__158,aircoils__aircoils_rep__0__82,aircoils__aircoils_rep__0__83,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__0,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__27,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__33,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__39,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__69,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__84,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__99,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__114,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__129,cstmagnet__ControlSystem_Magnet__800_MAG_MAG_Control__144&format=xls&mT_axis_range=-407.7465:380.9859&A_axis_range=-54.85924:217.6010&infomod=legend&history_id=1526394348216
  1914. top: 620px
  1915. type: header
  1916. width: 74.06666
  1917. header_ipsu:
  1918. background_color: rgba(0, 0, 0, 0)
  1919. header:
  1920. size: 24
  1921. title: 'I_psu '
  1922. weight: '700'
  1923. height: 33.06666
  1924. left: 0px
  1925. top: 582px
  1926. type: header
  1927. width: 74.06666
  1928. header_l1:
  1929. background_color: rgba(0, 0, 0, 0)
  1930. header:
  1931. size: 16
  1932. title: 'L1 '
  1933. weight: '700'
  1934. height: 26.06666
  1935. left: 1259px
  1936. top: 324px
  1937. type: header
  1938. width: 26.06666
  1939. header_l10:
  1940. background_color: rgba(0, 0, 0, 0)
  1941. header:
  1942. size: 16
  1943. title: 'L10 '
  1944. weight: '700'
  1945. height: 26.06666
  1946. left: 1495px
  1947. top: 324px
  1948. type: header
  1949. width: 35.06666
  1950. header_l11:
  1951. background_color: rgba(0, 0, 0, 0)
  1952. header:
  1953. size: 16
  1954. title: 'L11 '
  1955. weight: '700'
  1956. height: 26.06666
  1957. left: 1516px
  1958. top: 626px
  1959. type: header
  1960. width: 34.06666
  1961. header_l12:
  1962. background_color: rgba(0, 0, 0, 0)
  1963. header:
  1964. size: 16
  1965. title: 'L12 '
  1966. weight: '700'
  1967. height: 34.06666
  1968. left: 1544px
  1969. top: 324px
  1970. type: header
  1971. width: 39.06666
  1972. header_l13:
  1973. background_color: rgba(0, 0, 0, 0)
  1974. header:
  1975. size: 16
  1976. title: 'L13 '
  1977. weight: '700'
  1978. height: 25.06666
  1979. left: 1567px
  1980. top: 626px
  1981. type: header
  1982. width: 44.06666
  1983. header_l14ab:
  1984. background_color: rgba(0, 0, 0, 0)
  1985. header:
  1986. size: 16
  1987. title: 'L14AB '
  1988. weight: '700'
  1989. height: 25.06666
  1990. left: 1610px
  1991. top: 323px
  1992. type: header
  1993. width: 51.06666
  1994. header_l2:
  1995. background_color: rgba(0, 0, 0, 0)
  1996. header:
  1997. size: 16
  1998. title: 'L2 '
  1999. weight: '700'
  2000. height: 26.06666
  2001. left: 1309px
  2002. top: 324px
  2003. type: header
  2004. width: 29.06666
  2005. header_l3:
  2006. background_color: rgba(0, 0, 0, 0)
  2007. header:
  2008. size: 16
  2009. title: 'L3 '
  2010. weight: '700'
  2011. height: 21.06666
  2012. left: 1327px
  2013. top: 626px
  2014. type: header
  2015. width: 29.06666
  2016. header_l4:
  2017. background_color: rgba(0, 0, 0, 0)
  2018. header:
  2019. size: 16
  2020. title: 'L4 '
  2021. weight: '700'
  2022. height: 34.06666
  2023. left: 1356px
  2024. top: 324px
  2025. type: header
  2026. width: 25.06666
  2027. header_l5:
  2028. background_color: rgba(0, 0, 0, 0)
  2029. header:
  2030. size: 16
  2031. title: 'L5 '
  2032. weight: '700'
  2033. height: 26.06666
  2034. left: 1378px
  2035. top: 627px
  2036. type: header
  2037. width: 25.06666
  2038. header_l6:
  2039. background_color: rgba(0, 0, 0, 0)
  2040. header:
  2041. size: 16
  2042. title: 'L6 '
  2043. weight: '700'
  2044. height: 34.06666
  2045. left: 1403px
  2046. top: 324px
  2047. type: header
  2048. width: 28.06666
  2049. header_l7:
  2050. background_color: rgba(0, 0, 0, 0)
  2051. header:
  2052. size: 16
  2053. title: 'L7 '
  2054. weight: '700'
  2055. height: 20.06666
  2056. left: 1425px
  2057. top: 627px
  2058. type: header
  2059. width: 26.06666
  2060. header_l8:
  2061. background_color: rgba(0, 0, 0, 0)
  2062. header:
  2063. size: 16
  2064. title: 'L8 '
  2065. weight: '700'
  2066. height: 40.06666
  2067. left: 1451px
  2068. top: 324px
  2069. type: header
  2070. width: 33.06666
  2071. header_l9:
  2072. background_color: rgba(0, 0, 0, 0)
  2073. header:
  2074. size: 16
  2075. title: 'L9 '
  2076. weight: '700'
  2077. height: 39.06666
  2078. left: 1474px
  2079. top: 627px
  2080. type: header
  2081. width: 25.06666
  2082. header_lfcs:
  2083. background_color: rgba(0, 0, 0, 0)
  2084. header:
  2085. size: 16
  2086. title: 'LFCS '
  2087. weight: '700'
  2088. height: 25.06666
  2089. left: 1416px
  2090. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=aircoils__aircoils_rep__0__4,aircoils__aircoils_rep__0__5,aircoils__aircoils_rep__0__6,aircoils__aircoils_rep__0__7,aircoils__aircoils_rep__0__8,aircoils__aircoils_rep__0__9,aircoils__aircoils_rep__0__10,aircoils__aircoils_rep__0__11,aircoils__aircoils_rep__0__12,aircoils__aircoils_rep__0__13,aircoils__aircoils_rep__0__14,aircoils__aircoils_rep__0__15,aircoils__aircoils_rep__0__16,aircoils__aircoils_rep__0__17&infomod=legend&history_id=1504854617295
  2091. top: 237px
  2092. type: header
  2093. width: 44.06666
  2094. header_m1m2m3m4m5:
  2095. background_color: rgba(0, 0, 0, 0)
  2096. header:
  2097. size: 18
  2098. title: 'M1_M2_M3_M4_M5 '
  2099. weight: '700'
  2100. height: 19.06666
  2101. left: 648px
  2102. top: 551.133px
  2103. type: header
  2104. width: 169.06666
  2105. header_m2m3:
  2106. background_color: rgba(0, 0, 0, 0)
  2107. header:
  2108. size: 18
  2109. title: 'M2+M3 '
  2110. weight: '700'
  2111. height: 20.06666
  2112. left: 398px
  2113. top: 551.133px
  2114. type: header
  2115. width: 75.06666
  2116. header_m5m4m1:
  2117. background_color: rgba(0, 0, 0, 0)
  2118. header:
  2119. size: 18
  2120. title: 'M5+M4+M1 '
  2121. weight: '700'
  2122. height: 20.06666
  2123. left: 231px
  2124. top: 551.133px
  2125. type: header
  2126. width: 110.06666
  2127. header_m7m6:
  2128. background_color: rgba(0, 0, 0, 0)
  2129. header:
  2130. size: 18
  2131. title: 'M7+M6 '
  2132. weight: '700'
  2133. height: 20.06666
  2134. left: 533px
  2135. top: 552.133px
  2136. type: header
  2137. width: 69.06666
  2138. header_mos:
  2139. background_color: rgba(0, 0, 0, 0)
  2140. header:
  2141. size: 28
  2142. title: 'MoS '
  2143. weight: '700'
  2144. height: 40.06666
  2145. left: 1417px
  2146. titlelink: http://ipepc57.ipe.kit.edu:5858/mos/status
  2147. top: 698px
  2148. type: header
  2149. width: 64.06666
  2150. header_pch:
  2151. background_color: rgba(255, 255, 255, 0.498)
  2152. header:
  2153. size: 28
  2154. title: 'PCH '
  2155. weight: '700'
  2156. height: 33.06666
  2157. left: 1763.98px
  2158. titlelink: https://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=fpd__katrin_rep__0__102,fpd__katrin_rep__0__153,fpd__katrin_rep__0__154,fpd__katrin_rep__0__155,fpd__katrin_rep__0__156,fpd__katrin_rep__2__8,fpd__katrin_rep__2__9&infomod=legend&history_id=1508829653806
  2159. top: 357px
  2160. type: header
  2161. width: 58.06666
  2162. header_ps1:
  2163. background_color: rgba(0, 0, 0, 0)
  2164. header:
  2165. size: 28
  2166. title: 'PS1 '
  2167. weight: '700'
  2168. height: 34.06666
  2169. left: 989px
  2170. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=aircoils__aircoils_rep__0__83,aircoils__aircoils_rep__0__103,aircoils__aircoils_rep__0__104,aircoils__aircoils_rep__0__105,aircoils__aircoils_rep__0__106,aircoils__aircoils_rep__0__107,aircoils__aircoils_rep__0__108,aircoils__aircoils_rep__0__109,aircoils__aircoils_rep__0__123,aircoils__aircoils_rep__0__124&V_axis_range=-5.175090:0.1750903&infomod=legend&history_id=1508830549252
  2171. top: 346px
  2172. type: header
  2173. width: 56.06666
  2174. header_ps2:
  2175. background_color: rgba(255, 255, 255, 0.498)
  2176. header:
  2177. size: 28
  2178. title: 'PS2 '
  2179. weight: '700'
  2180. height: 39.06666
  2181. left: 1098px
  2182. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=aircoils__aircoils_rep__0__82,aircoils__aircoils_rep__0__112,aircoils__aircoils_rep__0__113,aircoils__aircoils_rep__0__114,aircoils__aircoils_rep__0__115,aircoils__aircoils_rep__0__116,aircoils__aircoils_rep__0__117,aircoils__aircoils_rep__0__118,aircoils__aircoils_rep__0__121,aircoils__aircoils_rep__0__122&V_axis_range=-5.175090:0.1750903&infomod=legend&history_id=1508830618572
  2183. top: 345px
  2184. type: header
  2185. width: 60.06666
  2186. header_rs:
  2187. background_color: rgba(0, 0, 0, 0)
  2188. header:
  2189. size: 28
  2190. title: 'RS '
  2191. weight: '700'
  2192. height: 34.06666
  2193. left: 152px
  2194. titlelink: http://ipepc57.ipe.kit.edu:5467/rear-side/status
  2195. top: 337px
  2196. type: header
  2197. width: 51.06666
  2198. header_s:
  2199. background_color: rgba(0, 0, 0, 0)
  2200. header:
  2201. size: 24
  2202. title: 'S '
  2203. weight: '700'
  2204. height: 33.06666
  2205. left: 1363px
  2206. top: 717px
  2207. type: header
  2208. width: 51.06666
  2209. header_sds:
  2210. background_color: rgba(0, 0, 0, 0)
  2211. header:
  2212. size: 28
  2213. title: 'SDS '
  2214. weight: '700'
  2215. height: 40.06666
  2216. left: 1412px
  2217. titlelink: https://neutrino.ikp.kit.edu/sdsstatus/
  2218. top: 128px
  2219. type: header
  2220. width: 51.06666
  2221. header_status-of-the-katrin-magnets:
  2222. background_color: rgba(0, 0, 0, 0)
  2223. header:
  2224. size: 40
  2225. title: 'Status of the KATRIN magnets '
  2226. weight: '700'
  2227. height: 61.06666
  2228. left: 602px
  2229. top: 5px
  2230. type: header
  2231. width: 620.06666
  2232. header_tcldps:
  2233. background_color: rgba(0, 0, 0, 0)
  2234. header:
  2235. size: 16
  2236. title: 'T_CL_dps '
  2237. weight: '400'
  2238. height: 23.06666
  2239. left: 695px
  2240. titlelink: http://katrin.kit.edu/adei-katrin/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__0,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__3,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__6,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__9,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__12,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__15,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__18,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__21,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__24,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__27&infomod=legend&history_id=1524258360320
  2241. top: 432px
  2242. type: header
  2243. width: 73.06666
  2244. header_umag:
  2245. background_color: rgba(0, 0, 0, 0)
  2246. header:
  2247. size: 22
  2248. title: 'U_mag '
  2249. weight: '700'
  2250. height: 31.06666
  2251. left: -2px
  2252. top: 655px
  2253. type: header
  2254. width: 75.06666
  2255. header_ver:
  2256. background_color: rgba(0, 0, 0, 0)
  2257. header:
  2258. size: 16
  2259. title: 'Ver. '
  2260. weight: '700'
  2261. height: 26.06666
  2262. left: 1127.23px
  2263. top: 267px
  2264. type: header
  2265. width: 50.06666
  2266. header_wgts:
  2267. background_color: rgba(0, 0, 0, 0)
  2268. header:
  2269. size: 28
  2270. title: 'WGTS '
  2271. weight: '700'
  2272. height: 34.06666
  2273. left: 394px
  2274. titlelink: http://katrin.kit.edu/status/wgts/
  2275. top: 338.983px
  2276. type: header
  2277. width: 98.06666