Line 5 was replaced by line 5 |
- // |
+ // |
Line 8 was replaced by line 8 |
- MA02: {top: 366, bot: 354, base: 7, win: 38, winbase: 53, candia: 21, spacer: 22.6, dia: 21, gapmin:0, gapmax:5}, |
+ MA02: {top: 366, bot: 354, base: 7, win: 38, winbase: 53, candia: "23?", spacer: 22.6, dia: 21, gapmin:0, gapmax:5}, |
Lines 10-11 were replaced by lines 10-11 |
- MA7: {top: 366, bot: 361, base: 8, win: 39, winbase: 46, candia: 35.8, spacer: 35.6, dia: 32, gapmin:0, gapmax:5}, |
- MA10: {top: 532, bot: 0, base: 6, win: 0, winbase: 6, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:2}, |
+ MA7: {top: 366, bot: 361, base:11, win: 39, winbase: 46, candia: 35.8, spacer: 35.6, dia: 32, gapmin:0, gapmax:5}, |
+ MA10: {top: 605, bot: 0, base:11, win: 0, winbase: 6, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:2}, |
Line 14 was replaced by line 14 |
- VARIOX: {top: 473, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5}, |
+ ORI7: {top: 485, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5}, |
Line 17 was replaced by line 17 |
- MA02: {top: 345, bot: 354, base: 7, win: 38, winbase: 53, candia: 21, spacer: 22.6, dia: 21, gapmin:0, gapmax:5}, |
+ MA02: {top: 345, bot: 354, base: 7, win: 38, winbase: 53, candia: "23?", spacer: 22.6, dia: 21, gapmin:0, gapmax:5}, |
Lines 19-20 were replaced by lines 19-20 |
- MA7: {top: 342, bot: 361, base: 8, win: 39, winbase: 46, candia: 35.8, spacer: 35.6, dia: 32, gapmin:0, gapmax:5}, |
- MA10: {top: 532, bot: 0, base: 6, win: 0, winbase: 6, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:2}, |
+ MA7: {top: 342, bot: 361, base:11, win: 39, winbase: 46, candia: 35.8, spacer: 35.6, dia: 32, gapmin:0, gapmax:5}, |
+ MA10: {top: 605, bot: 0, base:11, win: 0, winbase: 6, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:2}, |
Line 23 was replaced by line 23 |
- VARIOX: {top: 473, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5}, |
+ ORI7: {top: 485, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5}, |
At line 25 added 2 lines. |
+ // DIL3/4: VARIOX: {top: 473, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5}, |
+ // DIL2: VARIOX: {top: 473, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5}, |
Line 34 was replaced by line 36 |
- MA10: {motor: 160, sample: 1107, edge: 0, vtibot: 1161}, // this is in fact 1222 but be aware of the nv motor sticking out at the top! |
+ MA10: {motor: 160, sample: 1115, edge: 0, vtibot: 1222}, // if ever we use a shorter can, be aware of the nv motor sticking out at the top! |
Line 37 was replaced by line 39 |
- VARIOX: {motor: 0, sample: 1068, edge: 0, vtibot: 1138}, |
+ ORI7: {motor: 160, sample: 1159, edge: 0, vtibot: 1205}, |
At line 38 added 1 line. |
+ // vtis: VARIOX: {motor: 0, sample: 1068, edge: 0, vtibot: 1138}, |
At line 56 added 4 lines. |
+ .allmeas { display: none; } |
+ .straight { display: none; } |
+ .edged { display: none; } |
+ .withwin { display: none; } |
At line 76 added 3 lines. |
+ for (el of document.getElementsByClassName("allmeas")) { |
+ el.style.display = "block"; |
+ } |
Line 95 was replaced by line 105 |
- for (el of document.getElementsByName("S")) { |
+ for (el of document.getElementsByClassName("straight")) { |
Line 98 was replaced by line 108 |
- for (el of document.getElementsByName("E")) { |
+ for (el of document.getElementsByClassName("edged")) { |
Line 110 was replaced by line 120 |
- |
+ |
Line 120 was replaced by line 130 |
- for (el of document.getElementsByName("W")) { |
+ for (el of document.getElementsByClassName("withwin")) { |
Removed lines 123-125 |
- for (el of document.getElementsByName("A")) { |
- el.style.display = "block"; |
- } |
Line 134 was replaced by lines 141-142 |
- document.getElementById("title_label").innerHTML = dilselect + " in " + vtiselect; |
+ document.getElementById("vti_label").innerHTML = vtiselect; |
+ document.getElementById("dil_label").innerHTML = dilselect; |
Removed lines 183-187 |
- for (nam of ["S", "E", "W", "A"]) { |
- for (el of document.getElementsByName(nam)) { |
- el.style.display = "none"; |
- } |
- } |
Line 190 was replaced by line 193 |
- function list_all() { |
+ function do_print() { |
Lines 195-198 were replaced by lines 198-201 |
- |
- for (dilname in dils) { |
- setdil(dilname); |
- setvti(vtiselect); |
+ |
+ setdil(dilselect); |
+ for (vtiname in cans[dilselect]) { |
+ setvti(vtiname); |
At line 205 added 1 line. |
+ print(); |
Removed line 217 |
- <input type="radio" name=m onClick="setvti('MA7a');">MA7a |
Lines 221-222 were replaced by lines 224-225 |
- <input type="radio" name=m onClick="setvti('VARIOX');">VARIOX |
- <input type="button" name=list onClick="list_all();" value=list> |
+ <input type="radio" name=m onClick="setvti('ORI7');">ORI7 |
+ <input type="button" name=list onClick="do_print();" value="print all vtis for this stick"> |
Line 227 was replaced by line 230 |
- <svg width="1024" height="350" xmlns="http://www.w3.org/2000/svg" id=mainsvg> |
+ <svg width="1170" height="350" xmlns="http://www.w3.org/2000/svg" id=mainsvg> |
Lines 236-237 were replaced by line 239 |
- <text fill="#000" stroke="#000" stroke-width="0" x="0" y="30" id="title_label" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text> |
- <text fill="#000" stroke="#000" stroke-width="0" x="0" y="60" id="motor_label" font-size="18" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text> |
+ <text fill="#000" stroke="#000" stroke-width="0" x="0" y="60" id="vti_label" font-size="60" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text> |
Lines 240-241 were replaced by lines 242-243 |
- <path fill="#cccccc" stroke="#000" stroke-opacity="null" d="m228,102l38,4l400,0l0,22l318,0l0,86l-318,0l0,21l-400,0l-38,2l0,3l445,0l0,-21l182,0l4,-4l99,0l4,4l32,0l0,-98l-32,0l-4,4l-99,0l-4,-4l-182,0l0,-21l-445,0l0,2" id="can" name="E"/> |
- <path fill="#cccccc" stroke="#000" stroke-opacity="null" d="m228,102l38,4l400,0l1,0l318,0l0,130l-318,0l-1,0l-400,0l-38,2l0,3l445,0l1,0l182,0l4,-4l99,0l4,4l32,0l0,-140l-32,0l-4,4l-99,0l-4,-4l-182,0l-1,0l-445,0l0,2" id="can2" name="S"/> |
+ <path fill="#cccccc" stroke="#000" stroke-opacity="null" d="m228,102l38,3l400,0l0,22l318,0l0,86l-318,0l0,22l-400,0l-38,2l0,3l445,0l0,-21l182,0l4,-4l99,0l4,4l32,0l0,-98l-32,0l-4,4l-99,0l-4,-4l-182,0l0,-21l-445,0l0,2" id="can" class="edged"/> |
+ <path fill="#cccccc" stroke="#000" stroke-opacity="null" d="m228,102l38,3l400,0l1,0l318,0l0,130l-318,0l-1,0l-400,0l-38,2l0,3l445,0l1,0l182,0l4,0l99,0l4,0l32,0l0,-140l-32,0l-4,0l-99,0l-4,0l-182,0l-1,0l-445,0l0,2" id="can2" class="straight"/> |
Line 246 was replaced by line 248 |
- <g id="win_gr" name="W"> |
+ <g id="win_gr" class="withwin"> |
Lines 253-255 were replaced by lines 255-257 |
- <g id="cantop_gr" name="A"> |
- <path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m228,261l0,-6l0,12l0,-6l444,0l0,-6l0,12l0,-6" id="cantop_line" name="E"/> |
- <path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m228,261l0,-6l0,12l0,-6l766,0l0,-6l0,12l0,-6" id="cantop_line2" name="S"/> |
+ <g id="cantop_gr" class="allmeas"> |
+ <path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m228,261l0,-6l0,12l0,-6l444,0l0,-6l0,12l0,-6" id="cantop_line" class="edged"/> |
+ <path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m228,261l0,-6l0,12l0,-6l766,0l0,-6l0,12l0,-6" id="cantop_line2" class="straight"/> |
Line 259 was replaced by line 261 |
- <g id="canbot_gr" name="E"> |
+ <g id="canbot_gr" class="edged"> |
Line 262 was replaced by line 264 |
- <text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="bot" y="251" x="837" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f" name="E">000</text> |
+ <text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="bot" y="251" x="837" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f" class="edged">000</text> |
Line 264 was replaced by line 266 |
- <g id="sealmix_gr" name="A"> |
+ <g id="sealmix_gr" class="allmeas"> |
Line 269 was replaced by line 271 |
- <g id="winbase_gr" name="W"> |
+ <g id="winbase_gr" class="withwin"> |
Line 273 was replaced by line 275 |
- <g id="base_gr" name="A"> |
+ <g id="base_gr" class="allmeas"> |
Line 279 was replaced by line 281 |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="flange_line" y2="331" x2="38" y1="200" x1="38" stroke-width="0.5" fill="none"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="flange_line" y2="331" x2="38" y1="200" x1="38" stroke-width="0.5" fill="none" class="allmeas"/> |
Lines 281-283 were replaced by lines 283-285 |
- <line stroke-linecap="null" stroke-linejoin="null" id="svg_4" y2="240" x2="219" y1="101" x1="219" stroke-width="0.5" fill="none" stroke="#000000"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="svg_4" y2="266.99999" x2="228" y1="101" x1="228" stroke-width="0.5" fill="none"/> |
- <g id="gap_gr" name="A"> |
+ <line stroke-linecap="null" stroke-linejoin="null" id="svg_4" y2="240" x2="219" y1="101" x1="219" stroke-width="0.5" fill="none" stroke="#000000" class="allmeas"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="svg_4" y2="266.99999" x2="228" y1="101" x1="228" stroke-width="0.5" fill="none" class="allmeas"/> |
+ <g id="gap_gr" class="allmeas"> |
Lines 288-296 were replaced by lines 290-298 |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="winmin_meas" y2="143" x2="860" y1="0" x1="860" stroke-width="0.5" fill="none" name="W"/> |
- <line stroke-linecap="null" stroke-linejoin="null" id="mix_meas" y2="124" x2="563" y1="10" x1="563" stroke-width="0.5" fill="none" stroke="#000000"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_meas" y2="285" x2="894" y1="57" x1="894" stroke-width="0.5" fill="none"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="winmax_meas" y2="157" x2="958" y1="24" x1="958" stroke-width="0.5" fill="none" name="W"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="ext_meas" y2="299" x2="994" y1="218" x1="994" stroke-width="0.5" fill="none"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="edge_meas" y2="330" x2="672" y1="250" x1="672" stroke-width="0.5" fill="none" name="E"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="base_meas" y2="130" x2="984" y1="68" x1="984" stroke-width="0.5" fill="none"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_dia1" y2="150" x2="936" y1="150" x1="896" stroke-width="0.5" fill="none"/> |
- <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_dia2" y2="190" x2="936" y1="190" x1="896" stroke-width="0.5" fill="none"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="winmin_meas" y2="143" x2="860" y1="0" x1="860" stroke-width="0.5" fill="none" class="withwin"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="mix_meas" y2="124" x2="563" y1="10" x1="563" stroke-width="0.5" fill="none" class="allmeas"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_meas" y2="285" x2="894" y1="57" x1="894" stroke-width="0.5" fill="none" class="allmeas"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="winmax_meas" y2="157" x2="958" y1="24" x1="958" stroke-width="0.5" fill="none" class="withwin"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="ext_meas" y2="299" x2="994" y1="218" x1="994" stroke-width="0.5" fill="none" class="allmeas"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="edge_meas" y2="330" x2="672" y1="250" x1="672" stroke-width="0.5" fill="none" class="edged"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="base_meas" y2="130" x2="984" y1="68" x1="984" stroke-width="0.5" fill="none" class="allmeas"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_dia1" y2="150" x2="936" y1="150" x1="896" stroke-width="0.5" fill="none" class="allmeas"/> |
+ <line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_dia2" y2="190" x2="936" y1="190" x1="896" stroke-width="0.5" fill="none" class="allmeas"/> |
Lines 301-306 were replaced by lines 303-308 |
- <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_7" y="62.5" x="315.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc0000" name="A">make sure stick will fit into vti</text> |
- <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_8" y="29.5" x="233.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00cccc" name="W">make sure sample is within can window</text> |
- <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_9" y="88.5" x="181.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc00cc" name="A">make sure sample does not touch can bottom</text> |
- <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_12" y="316.5" x="181.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00cc00" name="E">verify stick will fit into vti (with closed can)</text> |
- <g id="winmin_gr" name="A"> |
- <path fill="#000" stroke="#0cc" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m563,13l0,-6l0,12l0,-6l297,0l0,-6l0,12l0,-6" id="winmin_line" name="W"/> |
+ <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_7" y="62.5" x="315.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc0000" class="allmeas">make sure stick will fit into vti</text> |
+ <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_8" y="29.5" x="233.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00cccc" class="withwin">make sure sample is within can window</text> |
+ <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_9" y="88.5" x="181.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc00cc" class="allmeas">make sure sample does not touch can bottom</text> |
+ <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_12" y="316.5" x="181.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00cc00" class="allmeas">verify stick will fit into vti (with closed can)</text> |
+ <g id="winmin_gr" class="allmeas"> |
+ <path fill="#000" stroke="#0cc" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m563,13l0,-6l0,12l0,-6l297,0l0,-6l0,12l0,-6" id="winmin_line" class="withwin"/> |
Line 310 was replaced by line 312 |
- <g id="sammin_gr" name="A"> |
+ <g id="sammin_gr" class="allmeas"> |
Line 315 was replaced by line 317 |
- <g id="winmax_gr" name="W"> |
+ <g id="winmax_gr" class="withwin"> |
Line 320 was replaced by line 322 |
- <g id="extmax_gr" name="A"> |
+ <g id="extmax_gr" class="allmeas"> |
Line 325 was replaced by line 327 |
- <g id="sample_gr" name="A"> |
+ <g id="sample_gr" class="allmeas"> |
Line 330 was replaced by line 332 |
- <g id="edge_gr" name="A"> |
+ <g id="edge_gr" class="edged"> |
Lines 335-337 were replaced by lines 337-339 |
- <rect fill="#ffffff" stroke-width="null" x="240.5" y="268.5" width="335.00002" height="27" id="svg_11" stroke="#ffffff" name="A">adjust top flange - center sample in cryo</rect> |
- <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_10" y="285.5" x="245.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc0000" name="A">adjust top flange - center sample in cryo</text> |
- <g id="vtibot_gr" name="A"> |
+ <rect fill="#ffffff" stroke-width="null" x="240.5" y="268.5" width="335.00002" height="27" id="svg_11" stroke="#ffffff" class="allmeas">adjust top flange - center sample in cryo</rect> |
+ <text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_10" y="285.5" x="245.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc0000" class="allmeas">adjust top flange - center sample in cryo</text> |
+ <g id="vtibot_gr" class="allmeas"> |
Lines 342-343 were replaced by lines 344-346 |
- <g id="candia_gr" name="A"> |
- <path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m756,127l-6,0l12,0l-6,0l0,86l-6,0l12,0l-6,0" id="candia_line"/> |
+ <g id="candia_gr" class="allmeas"> |
+ <path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m756,127l-6,0l12,0l-6,0l0,86l-6,0l12,0l-6,0" id="candia_line" class="edged"/> |
+ <path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m756,105l-6,0l12,0l-6,0l0,130l-6,0l12,0l-6,0" id="candia_line2" class="straight"/> |
Lines 347-348 were replaced by lines 350-352 |
- <g id="spacer_gr" name="A"> |
- <path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m816,130l-6,0l12,0l-6,0l0,80l-6,0l12,0l-6,0" id="spacer_line"/> |
+ <g id="spacer_gr" class="allmeas"> |
+ <path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m816,130l-6,0l12,0l-6,0l0,80l-6,0l12,0l-6,0" id="spacer_line" class="edged"/> |
+ <path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m816,108l-6,0l12,0l-6,0l0,124l-6,0l12,0l-6,0" id="spacer_line2" class="straight"/> |
Line 352 was replaced by line 356 |
- <g id="dia_gr" name="A"> |
+ <g id="dia_gr" class="allmeas"> |
Lines 357-358 were replaced by lines 361-365 |
- <path fill="#7f7f7f" stroke="#000000" stroke-width="0.5" stroke-opacity="null" d="m828,129l12,12l0,58l-12,12l0,-82z" id="spacer_shape"/> |
- <text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="173" id="svg_18" font-size="12" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve">sliding top flange</text> |
+ <path fill="#7f7f7f" stroke="#000000" stroke-width="0.5" stroke-opacity="null" d="m828,129l12,12l0,58l-12,12l0,-82z" id="spacer_shape" class="edged"/> |
+ <path fill="#7f7f7f" stroke="#000000" stroke-width="0.5" stroke-opacity="null" d="m828,107l12,12l0,102l-12,12l0,-126z" id="spacer_shape" class="straight"/> |
+ <text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="173" id="svg_18" font-size="14" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve">sliding top flange</text> |
+ <text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="1240" id="dil_label" font-size="48" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve"></text> |
+ <text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="213" id="motor_label" font-size="14" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve"></text> |