Codebase list debianbuttons / upstream/2.2
New upstream version 2.2 Damyan Ivanov 5 years ago
10 changed file(s) with 482 addition(s) and 294 deletion(s). Raw diff Collapse all Expand all
0 2.2 [2018-09-26]
1 * remove leading/trailing white-space before evaluating input's
2 likeliness
3 * extend DSA numbers with an optional trailing -\d+, treat DLA as DSA,
4 add new 'security' color-tag
5 * add support for clipboard.readText(), available in firefox 63
6 * provide light and dark icon variants with standard colors
7 * place openlogo-nd.svg in a square document
8
09 2.1 [2018-08-22]
110 * Allow for and trim leading '#' in bug numbers
211
44
55 ALL_FILES := README TODO Changes manifest.json \
66 icedeb.js icedeb.css icedeb.html icedeb-content.js \
7 $(shell find res -type f) icons/openlogo-nd.svg icons/icedeb-addon.svg
7 $(shell find res -type f) \
8 icons/openlogo-nd.svg \
9 icons/icedeb-addon-light.svg icons/icedeb-addon-dark.svg
810
911 all: $(PKG).xpi
1012 $(PKG).xpi: $(ALL_FILES)
5050 .hints .hint.p { background-color: hsl(120,100%,96%) }
5151 .hints .hint.m { background-color: hsl(240,100%,90%) }
5252 .hints .hint.i { background-color: hsl( 40,100%,96%) }
53 .hints .hint.s { background-color: hsl( 80,100%,96%) }
5354 .like-b .hint.b,
5455 .like-p .hint.p,
5556 .like-m .hint.m,
57 .like-s .hint.s,
5658 .like-i .hint.i { opacity: 1; }
3636 (<a href="https://buildd.debian.org/">site</a>)
3737 </div>
3838 <div><span class="icedeb-button" id="security">Security tracker</span>
39 <span class="hints"><span class="hint p" title="package name">p</span><span class="hint b" title="bug name">b</span></span>
39 <span class="hints"><span class="hint p" title="package name">p</span><span class="hint b" title="bug number">b</span><span class="hint s" title="security id">s</span></span>
4040 (<a href="https://security-tracker.debian.org/">site</a>)
4141 </div>
4242 <div><span class="icedeb-button" id="piuparts">Installation checks</span>
173173 function check_likely_inputs(q) {
174174 let cnt = document.getElementById('button-list-container').classList;
175175
176 cnt.remove('like-b', 'like-p', 'like-m', 'like-i');
176 cnt.remove('like-b', 'like-p', 'like-m', 'like-i', 'like-s');
177177 document.querySelectorAll('.likely')
178178 .forEach((el) => {
179179 el.classList.remove('likely');
180180 });
181181
182 q = q.replace(/^\s+/, '');
183 q = q.replace(/\s+$/, '');
184
182185 if ( /^#?\d+$/.test(q) || /^CVE-/.test(q) )
183186 cnt.add('like-b');
184187
191194 if ( /^<.+@.+>$/.test(q) )
192195 cnt.add('like-i');
193196
194 document.querySelectorAll('.like-b .hint.b, .like-p .hint.p, .like-m .hint.m, .like-i .hint.i')
197 if ( /^d[sl]a[- ]\d+(-\d+)?$/i.test(q) )
198 cnt.add('like-s');
199
200 document.querySelectorAll('.like-b .hint.b, .like-p .hint.p, .like-m .hint.m, .like-i .hint.i, .like-s .hint.s')
195201 .forEach((el) => {
196202 el.parentElement.parentElement.classList.add('likely');
197203 } );
198204 }
199205
206 function react_to_clipboard_text(text) {
207 let clip_input = document.getElementById("clipboard");
208 clip_input.value = text;
209 clip_input.focus();
210 clip_input.setSelectionRange(0, clip_input.value.length);
211
212 check_likely_inputs(text);
213 }
214
200215 function get_clipboard_contents() {
201 let clip_pot = document.getElementById('clip-pot');
202 let clip_input = document.getElementById("clipboard");
203 clip_pot.focus();
204 if (document.execCommand("Paste")) {
205 let q = clip_pot.textContent.trim();
206 clip_input.value = q;
207 clip_input.focus();
208 clip_input.setSelectionRange(0, clip_input.value.length);
209
210 check_likely_inputs(q);
216 if (navigator.clipboard && navigator.clipboard.readText) {
217 navigator.clipboard.readText().then(function(q){
218 react_to_clipboard_text(q);
219 });
220 }
221 else {
222 let clip_pot = document.getElementById('clip-pot');
223 let clip_input = document.getElementById("clipboard");
224 clip_pot.focus();
225 if (document.execCommand("Paste")) {
226 let q = clip_pot.textContent.trim();
227 react_to_clipboard_text(q);
228 }
211229 }
212230 }
213231
233251 window.requestAnimationFrame(get_clipboard_contents);
234252 });
235253 });
254
255 // vim: sw=2
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
2
3 <svg
4 xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
5 xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
6 xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
7 xmlns:dc="http://purl.org/dc/elements/1.1/"
8 xmlns:cc="http://creativecommons.org/ns#"
9 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
10 xmlns:svg="http://www.w3.org/2000/svg"
11 xmlns="http://www.w3.org/2000/svg"
12 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14 ns2:viewOrigin="262 450"
15 ns2:rulerOrigin="0 0"
16 ns2:pageBounds="0 792 612 0"
17 width="64"
18 height="64"
19 viewBox="0 0 64 64"
20 overflow="visible"
21 enable-background="new 0 0 87.041 108.445"
22 xml:space="preserve"
23 version="1.1"
24 id="svg4603"
25 sodipodi:docname="icedeb-addon-dark.svg"
26 style="overflow:visible"
27 inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
28 id="defs4607" /><sodipodi:namedview
29 pagecolor="#ffffff"
30 bordercolor="#666666"
31 borderopacity="1"
32 objecttolerance="10"
33 gridtolerance="10"
34 guidetolerance="10"
35 inkscape:pageopacity="0"
36 inkscape:pageshadow="2"
37 inkscape:window-width="1920"
38 inkscape:window-height="1045"
39 id="namedview4605"
40 showgrid="false"
41 fit-margin-top="0"
42 fit-margin-left="0"
43 fit-margin-right="0"
44 fit-margin-bottom="0"
45 units="px"
46 inkscape:zoom="4.4231634"
47 inkscape:cx="17.663554"
48 inkscape:cy="65.589675"
49 inkscape:window-x="1920"
50 inkscape:window-y="0"
51 inkscape:window-maximized="1"
52 inkscape:current-layer="layer2"
53 inkscape:showpageshadow="false" /><metadata
54 id="metadata4574"><ns3:variableSets><ns3:variableSet
55 varSetName="binding1"
56 locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
57 y="341.555"
58 x="262"
59 width="87.041"
60 height="108.445"
61 bottomLeftOrigin="true" /></ns4:sfw><rdf:RDF><cc:Work
62 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
63 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
64 inkscape:groupmode="layer"
65 id="layer1"
66 inkscape:label="bg"
67 style="display:none"
68 transform="translate(0,-45.606301)"><rect
69 style="overflow:visible;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.51724136;stroke-miterlimit:4;stroke-dasharray:0.51724137, 6.20689645;stroke-dashoffset:0.08858268;stroke-opacity:1"
70 id="rect4609"
71 width="64"
72 height="64"
73 x="0"
74 y="45.6063"
75 ry="12.414209" /></g><g
76 inkscape:groupmode="layer"
77 id="layer2"
78 inkscape:label="swirl"
79 transform="translate(0,-45.606301)"><path
80 inkscape:connector-curvature="0"
81 d="m 6.3404853,66.388016 c 0.332248,-1.01976 0.392443,-1.632325 0.519323,-2.222464 -0.918257,1.173787 -0.42254,1.424006 -0.519323,2.222464 m 1.69488,-7.07931 c 0.165239,1.529641 -1.150772,2.123321 0.291529,1.114774 0.773082,-1.741501 -0.302152,-0.480964 -0.291529,-1.114774 M 33.20775,45.923171 c 0.717019,-0.262612 1.762746,-0.143994 2.523435,-0.316905 -0.991434,0.08321 -1.978146,0.132781 -2.952466,0.258481 l 0.429031,0.05842 m 23.039622,28.550341 -0.155797,0.390672 c -0.285627,2.028898 -0.902322,4.036552 -1.847726,5.897851 1.044547,-1.963983 1.720256,-4.11209 2.003523,-6.288523 m -29.155234,6.336918 c -0.368837,-0.407786 -0.587188,-0.898782 -0.831506,-1.388007 0.233695,0.859832 0.712298,1.598687 1.157853,2.349934 l -0.326347,-0.961927 m -1.647668,0.06491 -0.148716,0.743576 c 0.696955,0.946583 1.249915,1.972245 2.139845,2.71228 -0.640301,-1.249915 -1.115953,-1.766287 -1.991129,-3.455856 m 26.332008,-7.61751 c 0.06314,1.714944 -0.501618,2.54704 -1.010909,4.020027 l -0.916486,0.457948 c -0.750066,1.456464 0.07259,0.924748 -0.464439,2.083192 -1.170836,1.041005 -3.553228,3.257567 -4.315688,3.459985 -0.556501,-0.01239 0.377099,-0.656824 0.499258,-0.909404 -1.567409,1.076414 -1.257586,1.615801 -3.654732,2.269675 l -0.07023,-0.155796 c -5.91201,2.781325 -14.124386,-2.730575 -14.016391,-10.251308 -0.06314,0.477423 -0.179402,0.358215 -0.310413,0.55119 -0.305102,-3.869542 1.786941,-7.756199 5.315383,-9.343082 3.451134,-1.708454 7.497128,-1.007368 9.969221,1.296535 -1.35791,-1.778679 -4.060748,-3.664174 -7.264023,-3.487722 -3.13777,0.04957 -6.073122,2.043652 -7.052753,4.208282 -1.607539,1.012089 -1.794023,3.90141 -2.494518,4.430174 -0.942452,6.926464 1.772778,9.919059 6.365831,13.439239 0.722921,0.487455 0.203598,0.561222 0.301561,0.93242 -1.5261,-0.714659 -2.923549,-1.793433 -4.07255,-3.114164 0.609614,0.89229 1.267619,1.759795 2.118009,2.441405 -1.438759,-0.487455 -3.360842,-3.486542 -3.922065,-3.608701 2.480355,4.440798 10.063053,7.788067 14.033509,6.127415 -1.837103,0.06787 -4.171103,0.03777 -6.23541,-0.725281 -0.866914,-0.446145 -2.046012,-1.370303 -1.835332,-1.543214 5.418657,2.024177 11.016127,1.533182 15.704782,-2.225415 1.192671,-0.928878 2.495698,-2.509271 2.872207,-2.531106 -0.567124,0.852751 0.09678,0.410146 -0.338739,1.163164 1.18854,-1.916772 -0.516372,-0.780164 1.228669,-3.31009 l 0.644432,0.887569 c -0.239596,-1.591015 1.975786,-3.523131 1.750943,-6.039484 0.50811,-0.769541 0.567124,0.827965 0.02774,2.598382 0.748296,-1.963983 0.197107,-2.279707 0.389492,-3.900229 0.207729,0.544698 0.480373,1.123625 0.620236,1.698421 -0.487455,-1.897888 0.500438,-3.196194 0.744756,-4.299164 -0.240777,-0.106815 -0.752428,0.839178 -0.869275,-1.402761 0.01711,-0.97373 0.270874,-0.51047 0.368837,-0.750067 -0.191205,-0.109766 -0.692823,-0.856291 -0.997926,-2.287969 0.221303,-0.33638 0.59132,0.872226 0.892291,0.921797 -0.193565,-1.138379 -0.526994,-2.006473 -0.540568,-2.879879 -0.879307,-1.837693 -0.311003,0.244908 -1.024481,-0.789016 -0.935961,-2.919418 0.776623,-0.67748 0.89229,-2.004112 1.418695,2.055454 2.227775,5.241025 2.598973,6.560576 -0.283267,-1.608719 -0.741215,-3.167276 -1.300077,-4.675082 0.430802,0.181173 -0.694003,-3.31009 0.560042,-0.997925 -1.339615,-4.928842 -5.733201,-9.534288 -9.775064,-11.695378 0.494536,0.452637 1.118904,1.020941 0.894651,1.110052 -2.010014,-1.196802 -1.656521,-1.290044 -1.944509,-1.795793 -1.637636,-0.666267 -1.745041,0.0537 -2.829717,0.0012 -3.086428,-1.637046 -3.681288,-1.462955 -6.521628,-2.488617 l 0.129241,0.603713 c -2.044833,-0.681021 -2.382392,0.25848 -4.592463,0.0024 -0.134552,-0.105045 0.708166,-0.38005 1.40158,-0.480963 -1.976966,0.260841 -1.884314,-0.389492 -3.81879,0.072 0.476832,-0.334609 0.980811,-0.555911 1.489511,-0.840358 -1.61226,0.09796 -3.848888,0.938321 -3.158425,0.174091 -2.62966,1.173196 -7.300021,2.820275 -9.920829,5.277614 l -0.08262,-0.5506 c -1.200934,1.44171 -5.236895,4.305655 -5.558521,6.172856 l -0.321036,0.07495 c -0.624957,1.058119 -1.029202,2.257282 -1.524919,3.346089 -0.817343,1.392729 -1.1979817,0.535846 -1.0817257,0.754198 -1.607538,3.259338 -2.405996,5.998174 -3.095869,8.244244 0.491586,0.734723 0.01181,4.423092 0.197697,7.374969 -0.807311,14.578797 10.2318317,28.733882 22.2984067,32.002072 1.768647,0.63263 4.398897,0.60844 6.636114,0.67335 -2.639692,-0.75479 -2.980792,-0.40011 -5.552028,-1.29653 -1.854808,-0.87341 -2.261414,-1.87075 -3.575063,-3.0109 l 0.519912,0.91885 c -2.576547,-0.91176 -1.498363,-1.12835 -3.594537,-1.79225 l 0.555321,-0.72528 c -0.835047,-0.0632 -2.211842,-1.40749 -2.58835,-2.15166 l -0.913536,0.036 C 19.54308,100.2302 18.958252,99.254113 19.000742,98.498145 l -0.29507,0.525813 C 18.371064,98.44975 14.667351,93.944628 16.588843,94.993305 16.23181,94.666958 15.757337,94.46218 15.242736,93.5274 l 0.391263,-0.447326 c -0.924749,-1.18972 -1.701962,-2.71464 -1.642948,-3.22275 0.493356,0.666267 0.835637,0.790787 1.174377,0.904684 -2.33518,-5.793986 -2.466192,-0.319266 -4.234838,-5.897851 l 0.374148,-0.0301 c -0.286808,-0.431981 -0.460899,-0.901142 -0.691643,-1.36145 l 0.162878,-1.622883 c -1.6813067,-1.943918 -0.470341,-8.265489 -0.227794,-11.732556 0.16819,-1.409843 1.403351,-2.910566 2.342852,-5.264041 l -0.572434,-0.09855 c 1.094118,-1.90851 6.247212,-7.664727 8.633735,-7.368478 1.156083,-1.452332 -0.229564,-0.0053 -0.455587,-0.371197 2.539369,-2.62789 3.337827,-1.856578 5.051591,-2.329279 1.848316,-1.097069 -1.586294,0.427851 -0.709937,-0.418409 3.195013,-0.816163 2.264364,-1.855397 6.432516,-2.269675 0.439654,0.250219 -1.02035,0.386541 -1.386827,0.711117 2.662118,-1.302436 8.424236,-1.006187 12.166899,0.722921 4.342834,2.029489 9.222104,8.028843 9.41449,13.673524 l 0.218941,0.05902 c -0.110946,2.243708 0.343461,4.83855 -0.443785,7.222122 l 0.535847,-1.128346 m -17.647521,-26.511413 -0.400114,0.08262 0.372377,-0.03305 0.02774,-0.04957 M 32.998254,46.43194 c 0.565944,0.101504 1.222769,0.179402 1.130707,0.314544 0.619056,-0.135732 0.759509,-0.260842 -1.130707,-0.314544 M 44.81225,72.533794 c 0.12806,-1.909691 -0.375919,-1.305978 -0.545289,-0.577156 0.197697,0.102684 0.354084,1.346107 0.545289,0.577156 m -2.100896,5.467049 c 0.63145,-0.871636 1.091758,-1.825891 1.254046,-2.812603 -0.141633,0.703446 -0.523453,1.310699 -0.882848,1.95159 -1.982277,1.248144 -0.186484,-0.741215 -0.0012,-1.497183 -2.131583,2.682772 -0.292709,1.608719 -0.370018,2.358196 m -5.691891,1.418694 c -1.06048,0.01475 0.200647,0.546469 1.585113,0.759509 0.382411,-0.29861 0.729413,-0.600762 1.038645,-0.894651 -0.862193,0.21127 -1.73973,0.215991 -2.623758,0.135142"
82 style="fill:#0c0c0c;fill-opacity:0.8;stroke-width:0.69821846;"
83 id="path4598" /></g></svg>
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
2
3 <svg
4 xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
5 xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
6 xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
7 xmlns:dc="http://purl.org/dc/elements/1.1/"
8 xmlns:cc="http://creativecommons.org/ns#"
9 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
10 xmlns:svg="http://www.w3.org/2000/svg"
11 xmlns="http://www.w3.org/2000/svg"
12 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14 ns2:viewOrigin="262 450"
15 ns2:rulerOrigin="0 0"
16 ns2:pageBounds="0 792 612 0"
17 width="64"
18 height="64"
19 viewBox="0 0 64 64"
20 overflow="visible"
21 enable-background="new 0 0 87.041 108.445"
22 xml:space="preserve"
23 version="1.1"
24 id="svg4603"
25 sodipodi:docname="icedeb-addon-light.svg"
26 style="overflow:visible"
27 inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
28 id="defs4607"><filter
29 style="color-interpolation-filters:sRGB"
30 inkscape:label="Drop Shadow"
31 id="filter5963"><feFlood
32 flood-opacity="0.498039"
33 flood-color="rgb(255,255,255)"
34 result="flood"
35 id="feFlood5953" /><feComposite
36 in="flood"
37 in2="SourceGraphic"
38 operator="in"
39 result="composite1"
40 id="feComposite5955" /><feGaussianBlur
41 in="composite1"
42 stdDeviation="3"
43 result="blur"
44 id="feGaussianBlur5957" /><feOffset
45 dx="0"
46 dy="0"
47 result="offset"
48 id="feOffset5959" /><feComposite
49 in="SourceGraphic"
50 in2="offset"
51 operator="over"
52 result="fbSourceGraphic"
53 id="feComposite5961" /><feColorMatrix
54 result="fbSourceGraphicAlpha"
55 in="fbSourceGraphic"
56 values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
57 id="feColorMatrix5965" /><feFlood
58 id="feFlood5967"
59 flood-opacity="0.498039"
60 flood-color="rgb(255,255,255)"
61 result="flood"
62 in="fbSourceGraphic" /><feComposite
63 in2="fbSourceGraphic"
64 id="feComposite5969"
65 in="flood"
66 operator="in"
67 result="composite1" /><feGaussianBlur
68 id="feGaussianBlur5971"
69 in="composite1"
70 stdDeviation="5"
71 result="blur" /><feOffset
72 id="feOffset5973"
73 dx="0"
74 dy="0"
75 result="offset" /><feComposite
76 in2="offset"
77 id="feComposite5975"
78 in="fbSourceGraphic"
79 operator="over"
80 result="fbSourceGraphic" /><feColorMatrix
81 result="fbSourceGraphicAlpha"
82 in="fbSourceGraphic"
83 values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
84 id="feColorMatrix5977" /><feFlood
85 id="feFlood5979"
86 flood-opacity="0.498039"
87 flood-color="rgb(255,255,255)"
88 result="flood"
89 in="fbSourceGraphic" /><feComposite
90 in2="fbSourceGraphic"
91 id="feComposite5981"
92 in="flood"
93 operator="in"
94 result="composite1" /><feGaussianBlur
95 id="feGaussianBlur5983"
96 in="composite1"
97 stdDeviation="4"
98 result="blur" /><feOffset
99 id="feOffset5985"
100 dx="0"
101 dy="0"
102 result="offset" /><feComposite
103 in2="offset"
104 id="feComposite5987"
105 in="fbSourceGraphic"
106 operator="over"
107 result="fbSourceGraphic" /><feColorMatrix
108 result="fbSourceGraphicAlpha"
109 in="fbSourceGraphic"
110 values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
111 id="feColorMatrix5989" /><feFlood
112 id="feFlood5991"
113 flood-opacity="0.498039"
114 flood-color="rgb(255,255,255)"
115 result="flood"
116 in="fbSourceGraphic" /><feComposite
117 in2="fbSourceGraphic"
118 id="feComposite5993"
119 in="flood"
120 operator="in"
121 result="composite1" /><feGaussianBlur
122 id="feGaussianBlur5995"
123 in="composite1"
124 stdDeviation="4"
125 result="blur" /><feOffset
126 id="feOffset5997"
127 dx="0"
128 dy="0"
129 result="offset" /><feComposite
130 in2="offset"
131 id="feComposite5999"
132 in="fbSourceGraphic"
133 operator="over"
134 result="composite2" /></filter><filter
135 style="color-interpolation-filters:sRGB"
136 inkscape:label="Drop Shadow"
137 id="filter6047"><feFlood
138 flood-opacity="0.74902"
139 flood-color="rgb(255,255,255)"
140 result="flood"
141 id="feFlood6037" /><feComposite
142 in="flood"
143 in2="SourceGraphic"
144 operator="in"
145 result="composite1"
146 id="feComposite6039" /><feGaussianBlur
147 in="composite1"
148 stdDeviation="4"
149 result="blur"
150 id="feGaussianBlur6041" /><feOffset
151 dx="0"
152 dy="0"
153 result="offset"
154 id="feOffset6043" /><feComposite
155 in="SourceGraphic"
156 in2="offset"
157 operator="over"
158 result="composite2"
159 id="feComposite6045" /></filter><filter
160 style="color-interpolation-filters:sRGB"
161 inkscape:label="Drop Shadow"
162 id="filter863"><feFlood
163 flood-opacity="0.498039"
164 flood-color="rgb(255,255,255)"
165 result="flood"
166 id="feFlood853" /><feComposite
167 in="flood"
168 in2="SourceGraphic"
169 operator="in"
170 result="composite1"
171 id="feComposite855" /><feGaussianBlur
172 in="composite1"
173 stdDeviation="3"
174 result="blur"
175 id="feGaussianBlur857" /><feOffset
176 dx="0"
177 dy="0"
178 result="offset"
179 id="feOffset859" /><feComposite
180 in="SourceGraphic"
181 in2="offset"
182 operator="over"
183 result="composite2"
184 id="feComposite861" /></filter></defs><sodipodi:namedview
185 pagecolor="#ffffff"
186 bordercolor="#666666"
187 borderopacity="1"
188 objecttolerance="10"
189 gridtolerance="10"
190 guidetolerance="10"
191 inkscape:pageopacity="0"
192 inkscape:pageshadow="2"
193 inkscape:window-width="1920"
194 inkscape:window-height="1045"
195 id="namedview4605"
196 showgrid="false"
197 fit-margin-top="0"
198 fit-margin-left="0"
199 fit-margin-right="0"
200 fit-margin-bottom="0"
201 units="px"
202 inkscape:zoom="7.6282287"
203 inkscape:cx="29.833127"
204 inkscape:cy="26.970185"
205 inkscape:window-x="1920"
206 inkscape:window-y="0"
207 inkscape:window-maximized="1"
208 inkscape:current-layer="layer2"
209 inkscape:snap-global="true"
210 inkscape:pagecheckerboard="false"
211 inkscape:showpageshadow="false" /><metadata
212 id="metadata4574"><ns3:variableSets><ns3:variableSet
213 varSetName="binding1"
214 locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
215 y="341.555"
216 x="262"
217 width="87.041"
218 height="108.445"
219 bottomLeftOrigin="true" /></ns4:sfw><rdf:RDF><cc:Work
220 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
221 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
222 inkscape:groupmode="layer"
223 id="layer1"
224 inkscape:label="bg"
225 style="display:none"
226 transform="translate(0,-45.606301)"><rect
227 style="overflow:visible;opacity:1;fill:#383838;fill-opacity:1;stroke:none;stroke-width:0.51724142;stroke-miterlimit:4;stroke-dasharray:0.51724139, 6.20689657;stroke-dashoffset:0.08858268;stroke-opacity:1"
228 id="rect4609"
229 width="64"
230 height="64"
231 x="0"
232 y="45.6063"
233 ry="12.414209" /></g><g
234 inkscape:groupmode="layer"
235 id="layer2"
236 inkscape:label="swirl"
237 transform="translate(0,-45.606301)"><path
238 id="path4598"
239 style="opacity:1;fill:#f7f7f7;fill-opacity:0.8;stroke:none;stroke-width:2.09465551;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.24637685;paint-order:stroke markers fill;"
240 d="m 6.3404892,66.38803 c 0.332248,-1.019761 0.392442,-1.632326 0.519322,-2.222465 -0.918257,1.173787 -0.42254,1.424007 -0.519322,2.222465 m 1.694879,-7.079309 c 0.165239,1.529641 -1.150771,2.12332 0.291529,1.114773 0.773083,-1.741501 -0.302151,-0.480964 -0.291529,-1.114773 M 33.207752,45.923186 c 0.717019,-0.262612 1.762746,-0.143994 2.523435,-0.316905 -0.991433,0.08321 -1.978146,0.132781 -2.952466,0.258481 l 0.429031,0.05842 m 23.039622,28.550341 -0.155797,0.390672 c -0.285628,2.028898 -0.902323,4.036551 -1.847726,5.89785 1.044546,-1.963983 1.720256,-4.112089 2.003523,-6.288522 M 27.09214,80.810437 c -0.368836,-0.407786 -0.587188,-0.898782 -0.831506,-1.388008 0.233695,0.859834 0.712298,1.598687 1.157853,2.349934 L 27.09214,80.810437 m -1.647668,0.06491 -0.148715,0.743575 c 0.696954,0.946584 1.249915,1.972245 2.139844,2.712279 -0.6403,-1.249914 -1.115952,-1.766286 -1.991129,-3.455854 M 51.77648,73.257833 c 0.06315,1.714945 -0.501619,2.547041 -1.010909,4.020028 l -0.916486,0.457948 c -0.750067,1.456463 0.07259,0.924748 -0.46444,2.08319 -1.170835,1.041006 -3.553227,3.257569 -4.315687,3.459987 -0.556502,-0.0124 0.377099,-0.656826 0.499258,-0.909405 -1.56741,1.076414 -1.257586,1.615802 -3.654732,2.269675 l -0.07023,-0.155797 c -5.912013,2.781327 -14.124389,-2.730573 -14.016393,-10.251306 -0.06315,0.477422 -0.179403,0.358215 -0.310414,0.55119 -0.305101,-3.869542 1.786941,-7.756199 5.315383,-9.343083 3.451134,-1.708453 7.497128,-1.007367 9.96922,1.296536 -1.35791,-1.778679 -4.060747,-3.664174 -7.264021,-3.487722 -3.13777,0.04957 -6.073123,2.043652 -7.052754,4.208282 -1.607539,1.012088 -1.794022,3.901409 -2.494518,4.430174 -0.942452,6.926463 1.772779,9.919059 6.365831,13.439238 0.72292,0.487455 0.203598,0.561223 0.301561,0.93242 -1.5261,-0.714658 -2.923549,-1.793433 -4.07255,-3.114164 0.609614,0.892291 1.267619,1.759795 2.11801,2.441406 -1.438759,-0.487455 -3.360843,-3.486543 -3.922065,-3.608701 2.480355,4.440797 10.063052,7.788066 14.033508,6.127414 -1.837103,0.06787 -4.171103,0.03776 -6.23541,-0.72528 -0.866914,-0.446145 -2.046012,-1.370304 -1.835332,-1.543215 5.418657,2.024178 11.016126,1.533182 15.704782,-2.225414 1.192671,-0.928879 2.495698,-2.509272 2.872207,-2.531106 -0.567124,0.852751 0.09678,0.410146 -0.338741,1.163164 1.188541,-1.916773 -0.516371,-0.780164 1.228671,-3.310091 l 0.644431,0.887569 c -0.239596,-1.591015 1.975786,-3.523131 1.750943,-6.039483 0.50811,-0.769542 0.567124,0.827965 0.02774,2.598382 0.748296,-1.963983 0.197106,-2.279707 0.389492,-3.900229 0.207728,0.544698 0.480373,1.123625 0.620236,1.698421 -0.487455,-1.897888 0.500438,-3.196194 0.744756,-4.299164 -0.240778,-0.106815 -0.752428,0.839177 -0.869276,-1.402761 0.01711,-0.973729 0.270874,-0.51047 0.368837,-0.750067 -0.191205,-0.109765 -0.692823,-0.856292 -0.997925,-2.287969 0.221303,-0.336379 0.591319,0.872226 0.892291,0.921797 -0.193566,-1.138378 -0.526995,-2.006473 -0.540568,-2.879879 -0.879307,-1.837694 -0.311003,0.244908 -1.024481,-0.789016 -0.935961,-2.919418 0.776622,-0.67748 0.89229,-2.004112 1.418694,2.055454 2.227775,5.241025 2.598972,6.560577 -0.283266,-1.60872 -0.741214,-3.167278 -1.300076,-4.675083 0.430802,0.181173 -0.694003,-3.310089 0.560042,-0.997925 -1.339614,-4.928842 -5.733199,-9.534287 -9.775062,-11.695377 0.494537,0.452637 1.118904,1.020941 0.894651,1.110052 -2.010013,-1.196802 -1.656521,-1.290044 -1.944508,-1.795794 -1.637636,-0.666266 -1.745041,0.0537 -2.829718,0.0012 -3.086427,-1.637046 -3.681287,-1.462955 -6.521626,-2.488617 l 0.12924,0.603713 c -2.044832,-0.681021 -2.382392,0.25848 -4.592463,0.0024 -0.134551,-0.105045 0.708168,-0.38005 1.401581,-0.480964 -1.976967,0.260841 -1.884315,-0.389492 -3.818791,0.072 0.476833,-0.334609 0.980812,-0.555911 1.489512,-0.840358 -1.61226,0.09796 -3.848888,0.938322 -3.158426,0.174091 -2.629662,1.173177 -7.300023,2.820256 -9.920831,5.277594 l -0.08262,-0.5506 c -1.200933,1.441711 -5.236896,4.305656 -5.558522,6.172856 l -0.321035,0.07495 c -0.624957,1.058119 -1.029202,2.257282 -1.524919,3.346088 -0.817343,1.392729 -1.1979828,0.535847 -1.0817248,0.754199 -1.607539,3.259338 -2.405997,5.998173 -3.09587,8.244242 0.491586,0.734724 0.0118,4.423093 0.197697,7.374969 C 6.0471872,91.5097 17.08633,105.66478 29.152904,108.93297 c 1.768647,0.63263 4.398897,0.60843 6.636115,0.67335 -2.639692,-0.75479 -2.980793,-0.40012 -5.552029,-1.29654 -1.854808,-0.87341 -2.261413,-1.87074 -3.575063,-3.01089 l 0.519913,0.91885 c -2.576548,-0.91177 -1.498363,-1.12835 -3.594538,-1.79225 l 0.555321,-0.72529 c -0.835047,-0.0631 -2.211841,-1.40748 -2.58835,-2.15164 l -0.913536,0.036 c -1.097658,-1.35437 -1.682486,-2.330462 -1.639996,-3.08643 l -0.29507,0.525814 c -0.334609,-0.574206 -4.038322,-5.079327 -2.116829,-4.03065 -0.357034,-0.326347 -0.831505,-0.531126 -1.346107,-1.465906 l 0.391262,-0.447326 c -0.924748,-1.18972 -1.701961,-2.714639 -1.642947,-3.222749 0.493356,0.666267 0.835637,0.790786 1.174377,0.904683 -2.335181,-5.793986 -2.466192,-0.319265 -4.234839,-5.89785 l 0.374149,-0.0301 c -0.286809,-0.431979 -0.460899,-0.90114 -0.691644,-1.361449 l 0.16288,-1.622882 C 9.0946682,79.905756 10.305634,73.584187 10.548181,70.11712 c 0.168189,-1.409843 1.403351,-2.910567 2.342851,-5.264042 l -0.572434,-0.09855 c 1.094117,-1.908509 6.247213,-7.664726 8.633735,-7.368476 1.156083,-1.452333 -0.229564,-0.0053 -0.455587,-0.371198 2.539368,-2.627889 3.337826,-1.856577 5.05159,-2.329278 1.848316,-1.097069 -1.586293,0.42785 -0.709937,-0.418409 3.195013,-0.816163 2.264364,-1.855398 6.432517,-2.269676 0.439653,0.25022 -1.020351,0.386542 -1.386827,0.711118 2.662117,-1.302436 8.424236,-1.006187 12.166897,0.722921 4.342834,2.029488 9.222104,8.028843 9.41449,13.673523 l 0.218941,0.05901 c -0.110945,2.24371 0.343461,4.838551 -0.443784,7.222123 L 51.77648,73.25784 m -17.64752,-26.511406 -0.400115,0.08262 0.372378,-0.03305 0.02773,-0.04957 m -1.130704,-0.314543 c 0.565944,0.101504 1.222769,0.179402 1.130708,0.314544 0.619055,-0.135732 0.759508,-0.260842 -1.130708,-0.314544 m 11.813998,26.101852 c 0.12806,-1.909689 -0.375919,-1.305978 -0.545289,-0.577155 0.197697,0.102684 0.354084,1.346107 0.545289,0.577155 m -2.100895,5.46705 c 0.631448,-0.871636 1.091757,-1.825892 1.254045,-2.812604 -0.141633,0.703446 -0.523454,1.310699 -0.882848,1.951591 -1.982277,1.248143 -0.186484,-0.741215 -0.0012,-1.497184 -2.131583,2.682773 -0.292709,1.60872 -0.370018,2.358197 m -5.691883,1.418694 c -1.060481,0.01475 0.200646,0.546469 1.585112,0.759509 0.38241,-0.298611 0.729412,-0.600762 1.038646,-0.894651 -0.862194,0.21127 -1.73973,0.215991 -2.623758,0.135142"
241 inkscape:connector-curvature="0" />
242
243 </g></svg>
+0
-190
icons/icedeb-addon.svg less more
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
2
3 <svg
4 xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
5 xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
6 xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
7 xmlns:dc="http://purl.org/dc/elements/1.1/"
8 xmlns:cc="http://creativecommons.org/ns#"
9 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
10 xmlns:svg="http://www.w3.org/2000/svg"
11 xmlns="http://www.w3.org/2000/svg"
12 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14 ns2:viewOrigin="262 450"
15 ns2:rulerOrigin="0 0"
16 ns2:pageBounds="0 792 612 0"
17 width="29mm"
18 height="29mm"
19 viewBox="0 0 109.6063 109.6063"
20 overflow="visible"
21 enable-background="new 0 0 87.041 108.445"
22 xml:space="preserve"
23 version="1.1"
24 id="svg4603"
25 sodipodi:docname="icedeb-addon.svg"
26 style="overflow:visible"
27 inkscape:version="0.92.1 r15371"><defs
28 id="defs4607" /><sodipodi:namedview
29 pagecolor="#ffffff"
30 bordercolor="#666666"
31 borderopacity="1"
32 objecttolerance="10"
33 gridtolerance="10"
34 guidetolerance="10"
35 inkscape:pageopacity="0"
36 inkscape:pageshadow="2"
37 inkscape:window-width="1366"
38 inkscape:window-height="768"
39 id="namedview4605"
40 showgrid="false"
41 fit-margin-top="0"
42 fit-margin-left="0"
43 fit-margin-right="0"
44 fit-margin-bottom="0"
45 units="mm"
46 inkscape:zoom="1"
47 inkscape:cx="58.24744"
48 inkscape:cy="62.143468"
49 inkscape:window-x="0"
50 inkscape:window-y="0"
51 inkscape:window-maximized="1"
52 inkscape:current-layer="layer1" /><metadata
53 id="metadata4574"><ns3:variableSets><ns3:variableSet
54 varSetName="binding1"
55 locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
56 y="341.555"
57 x="262"
58 width="87.041"
59 height="108.445"
60 bottomLeftOrigin="true" /></ns4:sfw><rdf:RDF><cc:Work
61 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
62 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
63 inkscape:groupmode="layer"
64 id="layer1"
65 inkscape:label="bg"
66 style="display:inline"><rect
67 style="overflow:visible;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.88582677;stroke-miterlimit:4;stroke-dasharray:0.88582677, 10.62992120000000007;stroke-dashoffset:0.08858268;stroke-opacity:1"
68 id="rect4609"
69 width="109.6063"
70 height="109.6063"
71 x="0.18505973"
72 y="0.23600203"
73 ry="21.260555" /></g><g
74 inkscape:groupmode="layer"
75 id="layer2"
76 inkscape:label="swirl"
77 sodipodi:insensitive="true"><g
78 style="overflow:visible;stroke-width:1.18314219"
79 id="Layer_1"
80 ns2:layer="yes"
81 ns2:dimmedPercent="50"
82 ns2:rgbTrio="#4F008000FFFF"
83 transform="matrix(0.84520697,0,0,0.84520697,18.053174,8.9722245)"><g
84 id="g4600"
85 style="stroke-width:1.18314219"><path
86 ns2:knockout="Off"
87 d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
88 id="path4576"
89 inkscape:connector-curvature="0"
90 style="fill:#a80030;stroke-width:1.18314219" /><path
91 ns2:knockout="Off"
92 d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
93 id="path4578"
94 inkscape:connector-curvature="0"
95 style="fill:#a80030;stroke-width:1.18314219" /><path
96 ns2:knockout="Off"
97 d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
98 id="path4580"
99 inkscape:connector-curvature="0"
100 style="fill:#a80030;stroke-width:1.18314219" /><path
101 ns2:knockout="Off"
102 d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
103 id="path4582"
104 inkscape:connector-curvature="0"
105 style="fill:#a80030;stroke-width:1.18314219" /><path
106 ns2:knockout="Off"
107 d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
108 id="path4584"
109 inkscape:connector-curvature="0"
110 style="fill:#a80030;stroke-width:1.18314219" /><path
111 ns2:knockout="Off"
112 d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
113 id="path4586"
114 inkscape:connector-curvature="0"
115 style="fill:#a80030;stroke-width:1.18314219" /><path
116 ns2:knockout="Off"
117 d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
118 id="path4588"
119 inkscape:connector-curvature="0"
120 style="fill:#a80030;stroke-width:1.18314219" /><path
121 ns2:knockout="Off"
122 d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
123 id="path4590"
124 inkscape:connector-curvature="0"
125 style="fill:#a80030;stroke-width:1.18314219" /><path
126 ns2:knockout="Off"
127 d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
128 id="path4592"
129 inkscape:connector-curvature="0"
130 style="fill:#a80030;stroke-width:1.18314219" /><path
131 ns2:knockout="Off"
132 d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
133 id="path4594"
134 inkscape:connector-curvature="0"
135 style="fill:#a80030;stroke-width:1.18314219" /><path
136 ns2:knockout="Off"
137 d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
138 id="path4596"
139 inkscape:connector-curvature="0"
140 style="fill:#a80030;stroke-width:1.18314219" /><path
141 ns2:knockout="Off"
142 d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
143 id="path4598"
144 inkscape:connector-curvature="0"
145 style="fill:#a80030;stroke-width:1.18314219" /></g></g></g><g
146 inkscape:groupmode="layer"
147 id="layer3"
148 inkscape:label="btn"
149 style="display:none"
150 sodipodi:insensitive="true"><g
151 id="g4647"
152 transform="matrix(1.2643083,0,0,1.2643083,-35.85778,-26.855389)"
153 style="stroke-width:0.7909463"><rect
154 y="81.6063"
155 x="65.783783"
156 height="20"
157 width="41.216217"
158 id="rect4629"
159 style="opacity:1;fill:#000000;fill-opacity:0.98790325;stroke:none;stroke-width:0.70064139;stroke-miterlimit:4;stroke-dasharray:0.70064142, 8.40769703;stroke-dashoffset:0.08858268;stroke-opacity:1" /><rect
160 style="opacity:1;fill:#ffffff;fill-opacity:0.98790325;stroke:none;stroke-width:0.70064139;stroke-miterlimit:4;stroke-dasharray:0.70064141, 8.4076969;stroke-dashoffset:0.08858268;stroke-opacity:1"
161 id="rect4631"
162 width="40.391891"
163 height="19"
164 x="65.783783"
165 y="81.6063" /><rect
166 y="82.6063"
167 x="66.608109"
168 height="18"
169 width="39.567566"
170 id="rect4635"
171 style="opacity:1;fill:#959595;fill-opacity:0.98790325;stroke:none;stroke-width:0.70064139;stroke-miterlimit:4;stroke-dasharray:0.70064142, 8.40769705;stroke-dashoffset:0.08858268;stroke-opacity:1" /><rect
172 y="82.6063"
173 x="66.608109"
174 height="17"
175 width="38.743244"
176 id="rect4637"
177 style="opacity:1;fill:#dcdcdc;fill-opacity:0.98790325;stroke:none;stroke-width:0.70064139;stroke-miterlimit:4;stroke-dasharray:0.70064142, 8.40769711;stroke-dashoffset:0.08858268;stroke-opacity:1" /></g><text
178 xml:space="preserve"
179 style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.18124962px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
180 x="50.371655"
181 y="104.13356"
182 id="text4641"
183 transform="scale(1.1054998,0.90456821)"><tspan
184 sodipodi:role="line"
185 id="tspan4639"
186 x="50.371655"
187 y="104.13356"
188 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.18124962px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;stroke-width:0.92050439px">btn</tspan></text>
189 </g></svg>
0 <?xml version="1.0" encoding="utf-8"?>
1 <!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
3 <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
4 <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
5 <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
6 <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
7 <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
8 <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
9 <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
10 <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
11 <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
12 <!ENTITY ns_svg "http://www.w3.org/2000/svg">
13 <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
14 ]>
15 <svg
16 xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" i:viewOrigin="262 450" i:rulerOrigin="0 0" i:pageBounds="0 792 612 0"
17 xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
18 width="87.041" height="108.445" viewBox="0 0 87.041 108.445" overflow="visible" enable-background="new 0 0 87.041 108.445"
19 xml:space="preserve">
20 <metadata>
21 <variableSets xmlns="&ns_vars;">
22 <variableSet varSetName="binding1" locked="none">
23 <variables></variables>
24 <v:sampleDataSets xmlns="&ns_custom;" xmlns:v="&ns_vars;"></v:sampleDataSets>
25 </variableSet>
26 </variableSets>
27 <sfw xmlns="&ns_sfw;">
28 <slices></slices>
29 <sliceSourceBounds y="341.555" x="262" width="87.041" height="108.445" bottomLeftOrigin="true"></sliceSourceBounds>
30 </sfw>
31 </metadata>
32 <g id="Layer_1" i:layer="yes" i:dimmedPercent="50" i:rgbTrio="#4F008000FFFF">
33 <g>
34 <path i:knockout="Off" fill="#A80030" d="M51.986,57.297c-1.797,0.025,0.34,0.926,2.686,1.287
35 c0.648-0.506,1.236-1.018,1.76-1.516C54.971,57.426,53.484,57.434,51.986,57.297"/>
36 <path i:knockout="Off" fill="#A80030" d="M61.631,54.893c1.07-1.477,1.85-3.094,2.125-4.766c-0.24,1.192-0.887,2.221-1.496,3.307
37 c-3.359,2.115-0.316-1.256-0.002-2.537C58.646,55.443,61.762,53.623,61.631,54.893"/>
38 <path i:knockout="Off" fill="#A80030" d="M65.191,45.629c0.217-3.236-0.637-2.213-0.924-0.978
39 C64.602,44.825,64.867,46.932,65.191,45.629"/>
40 <path i:knockout="Off" fill="#A80030" d="M45.172,1.399c0.959,0.172,2.072,0.304,1.916,0.533
41 C48.137,1.702,48.375,1.49,45.172,1.399"/>
42 <path i:knockout="Off" fill="#A80030" d="M47.088,1.932l-0.678,0.14l0.631-0.056L47.088,1.932"/>
43 <path i:knockout="Off" fill="#A80030" d="M76.992,46.856c0.107,2.906-0.85,4.316-1.713,6.812l-1.553,0.776
44 c-1.271,2.468,0.123,1.567-0.787,3.53c-1.984,1.764-6.021,5.52-7.313,5.863c-0.943-0.021,0.639-1.113,0.846-1.541
45 c-2.656,1.824-2.131,2.738-6.193,3.846l-0.119-0.264c-10.018,4.713-23.934-4.627-23.751-17.371
46 c-0.107,0.809-0.304,0.607-0.526,0.934c-0.517-6.557,3.028-13.143,9.007-15.832c5.848-2.895,12.704-1.707,16.893,2.197
47 c-2.301-3.014-6.881-6.209-12.309-5.91c-5.317,0.084-10.291,3.463-11.951,7.131c-2.724,1.715-3.04,6.611-4.227,7.507
48 C31.699,56.271,36.3,61.342,44.083,67.307c1.225,0.826,0.345,0.951,0.511,1.58c-2.586-1.211-4.954-3.039-6.901-5.277
49 c1.033,1.512,2.148,2.982,3.589,4.137c-2.438-0.826-5.695-5.908-6.646-6.115c4.203,7.525,17.052,13.197,23.78,10.383
50 c-3.113,0.115-7.068,0.064-10.566-1.229c-1.469-0.756-3.467-2.322-3.11-2.615c9.182,3.43,18.667,2.598,26.612-3.771
51 c2.021-1.574,4.229-4.252,4.867-4.289c-0.961,1.445,0.164,0.695-0.574,1.971c2.014-3.248-0.875-1.322,2.082-5.609l1.092,1.504
52 c-0.406-2.696,3.348-5.97,2.967-10.234c0.861-1.304,0.961,1.403,0.047,4.403c1.268-3.328,0.334-3.863,0.66-6.609
53 c0.352,0.923,0.814,1.904,1.051,2.878c-0.826-3.216,0.848-5.416,1.262-7.285c-0.408-0.181-1.275,1.422-1.473-2.377
54 c0.029-1.65,0.459-0.865,0.625-1.271c-0.324-0.186-1.174-1.451-1.691-3.877c0.375-0.57,1.002,1.478,1.512,1.562
55 c-0.328-1.929-0.893-3.4-0.916-4.88c-1.49-3.114-0.527,0.415-1.736-1.337c-1.586-4.947,1.316-1.148,1.512-3.396
56 c2.404,3.483,3.775,8.881,4.404,11.117c-0.48-2.726-1.256-5.367-2.203-7.922c0.73,0.307-1.176-5.609,0.949-1.691
57 c-2.27-8.352-9.715-16.156-16.564-19.818c0.838,0.767,1.896,1.73,1.516,1.881c-3.406-2.028-2.807-2.186-3.295-3.043
58 c-2.775-1.129-2.957,0.091-4.795,0.002c-5.23-2.774-6.238-2.479-11.051-4.217l0.219,1.023c-3.465-1.154-4.037,0.438-7.782,0.004
59 c-0.228-0.178,1.2-0.644,2.375-0.815c-3.35,0.442-3.193-0.66-6.471,0.122c0.808-0.567,1.662-0.942,2.524-1.424
60 c-2.732,0.166-6.522,1.59-5.352,0.295c-4.456,1.988-12.37,4.779-16.811,8.943l-0.14-0.933c-2.035,2.443-8.874,7.296-9.419,10.46
61 l-0.544,0.127c-1.059,1.793-1.744,3.825-2.584,5.67c-1.385,2.36-2.03,0.908-1.833,1.278c-2.724,5.523-4.077,10.164-5.246,13.97
62 c0.833,1.245,0.02,7.495,0.335,12.497c-1.368,24.704,17.338,48.69,37.785,54.228c2.997,1.072,7.454,1.031,11.245,1.141
63 c-4.473-1.279-5.051-0.678-9.408-2.197c-3.143-1.48-3.832-3.17-6.058-5.102l0.881,1.557c-4.366-1.545-2.539-1.912-6.091-3.037
64 l0.941-1.229c-1.415-0.107-3.748-2.385-4.386-3.646l-1.548,0.061c-1.86-2.295-2.851-3.949-2.779-5.23l-0.5,0.891
65 c-0.567-0.973-6.843-8.607-3.587-6.83c-0.605-0.553-1.409-0.9-2.281-2.484l0.663-0.758c-1.567-2.016-2.884-4.6-2.784-5.461
66 c0.836,1.129,1.416,1.34,1.99,1.533c-3.957-9.818-4.179-0.541-7.176-9.994l0.634-0.051c-0.486-0.732-0.781-1.527-1.172-2.307
67 l0.276-2.75C4.667,58.121,6.719,47.409,7.13,41.534c0.285-2.389,2.378-4.932,3.97-8.92l-0.97-0.167
68 c1.854-3.234,10.586-12.988,14.63-12.486c1.959-2.461-0.389-0.009-0.772-0.629c4.303-4.453,5.656-3.146,8.56-3.947
69 c3.132-1.859-2.688,0.725-1.203-0.709c5.414-1.383,3.837-3.144,10.9-3.846c0.745,0.424-1.729,0.655-2.35,1.205
70 c4.511-2.207,14.275-1.705,20.617,1.225c7.359,3.439,15.627,13.605,15.953,23.17l0.371,0.1
71 c-0.188,3.802,0.582,8.199-0.752,12.238L76.992,46.856"/>
72 <path i:knockout="Off" fill="#A80030" d="M32.372,59.764l-0.252,1.26c1.181,1.604,2.118,3.342,3.626,4.596
73 C34.661,63.502,33.855,62.627,32.372,59.764"/>
74 <path i:knockout="Off" fill="#A80030" d="M35.164,59.654c-0.625-0.691-0.995-1.523-1.409-2.352
75 c0.396,1.457,1.207,2.709,1.962,3.982L35.164,59.654"/>
76 <path i:knockout="Off" fill="#A80030" d="M84.568,48.916l-0.264,0.662c-0.484,3.438-1.529,6.84-3.131,9.994
77 C82.943,56.244,84.088,52.604,84.568,48.916"/>
78 <path i:knockout="Off" fill="#A80030" d="M45.527,0.537C46.742,0.092,48.514,0.293,49.803,0c-1.68,0.141-3.352,0.225-5.003,0.438
79 L45.527,0.537"/>
80 <path i:knockout="Off" fill="#A80030" d="M2.872,23.219c0.28,2.592-1.95,3.598,0.494,1.889
81 C4.676,22.157,2.854,24.293,2.872,23.219"/>
82 <path i:knockout="Off" fill="#A80030" d="M0,35.215c0.563-1.728,0.665-2.766,0.88-3.766C-0.676,33.438,0.164,33.862,0,35.215"/>
83 </g>
84 </g>
85 </svg>
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
2
3 <svg
4 xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
5 xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
6 xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
7 xmlns:dc="http://purl.org/dc/elements/1.1/"
8 xmlns:cc="http://creativecommons.org/ns#"
9 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
10 xmlns:svg="http://www.w3.org/2000/svg"
11 xmlns="http://www.w3.org/2000/svg"
12 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14 ns2:viewOrigin="262 450"
15 ns2:rulerOrigin="0 0"
16 ns2:pageBounds="0 792 612 0"
17 width="108.445"
18 height="108.445"
19 viewBox="0 0 108.445 108.445"
20 overflow="visible"
21 enable-background="new 0 0 87.041 108.445"
22 xml:space="preserve"
23 version="1.1"
24 id="svg31"
25 sodipodi:docname="openlogo-nd.svg"
26 style="overflow:visible"
27 inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
28 id="defs35">
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 </defs><sodipodi:namedview
44 pagecolor="#ffffff"
45 bordercolor="#666666"
46 borderopacity="1"
47 objecttolerance="10"
48 gridtolerance="10"
49 guidetolerance="10"
50 inkscape:pageopacity="0"
51 inkscape:pageshadow="2"
52 inkscape:window-width="1920"
53 inkscape:window-height="1045"
54 id="namedview33"
55 showgrid="false"
56 inkscape:zoom="4.6620869"
57 inkscape:cx="2.3142078"
58 inkscape:cy="50.112568"
59 inkscape:window-x="1920"
60 inkscape:window-y="0"
61 inkscape:window-maximized="1"
62 inkscape:current-layer="svg31" />
63 <metadata
64 id="metadata2">
65 <ns3:variableSets>
66 <ns3:variableSet
67 varSetName="binding1"
68 locked="none">
69 <ns3:variables />
70 <ns3:sampleDataSets />
71 </ns3:variableSet>
72 </ns3:variableSets>
73 <ns4:sfw>
74 <ns4:slices />
75 <ns4:sliceSourceBounds
76 y="341.555"
77 x="262"
78 width="87.041"
79 height="108.445"
80 bottomLeftOrigin="true" />
81 </ns4:sfw>
82 <rdf:RDF><cc:Work
83 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
84 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata>
85 <path
86 id="path26"
87 style="fill:#a80030"
88 d="m 10.742054,35.213 c 0.563,-1.728 0.665,-2.766 0.88,-3.766 -1.556,1.989 -0.716,2.413 -0.88,3.766 m 2.872,-11.996 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889 m 42.655,-22.68200015 c 1.215,-0.445 2.987,-0.244 4.276,-0.537 -1.68,0.141 -3.352,0.225 -5.003,0.438 l 0.727,0.099 m 39.041,48.37900015 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656 m -49.404,10.738 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63 m -2.792,0.11 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856 m 44.62,-12.908 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 l -0.119,-0.264 c -10.018,4.713 -23.934,-4.627 -23.751,-17.371 -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 -2.27,-8.352 -9.715,-16.156 -16.564,-19.8180002 0.838,0.767 1.896,1.73 1.516,1.881 -3.406,-2.028 -2.807,-2.186 -3.295,-3.043 -2.775,-1.129 -2.957,0.091 -4.795,0.002 -5.23,-2.774 -6.238,-2.479 -11.051,-4.217 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.42399995 -2.732,0.166 -6.522,1.58999995 -5.352,0.29499995 -4.456,1.988 -12.37,4.779 -16.811,8.9430002 l -0.14,-0.9330002 C 28.869054,11.519 22.030054,16.372 21.485054,19.536 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 c -1.415,-0.107 -3.748,-2.385 -4.386,-3.646 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 l 0.634,-0.051 c -0.486,-0.732 -0.781,-1.527 -1.172,-2.307 l 0.276,-2.75 c -2.849,-3.294 -0.797,-14.006 -0.386,-19.881 0.285,-2.389 2.378,-4.932 3.97,-8.92 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.2070002 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912 m -29.904,-44.9240002 -0.678,0.14 0.631,-0.056 0.047,-0.084 m -1.916,-0.533 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533 M 75.933054,45.627 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978 m -3.56,9.264 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996 m -9.645,2.404 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
89 inkscape:connector-curvature="0" />
90 </svg>
66 },
77 "author": "Damyan Ivanov",
88 "manifest_version": 2,
9 "version": "2.1",
9 "version": "2.2",
1010 "name": "Debian queries",
1111 "description": "Query Debian-related websites using the text in the clipboard",
1212 "homepage_url": "http://icedeb.ktnx.net/",
1313 "icons": {
14 "48": "icons/icedeb-addon.svg"
14 "48": "icons/openlogo-nd.svg"
1515 },
1616 "permissions": [
1717 "activeTab", "storage", "clipboardRead"
1818 ],
1919 "browser_action": {
2020 "browser_style": true,
21 "default_icon": "icons/openlogo-nd.svg",
21 "default_icon": "icons/icedeb-addon-light.svg",
2222 "default_title": "Query Debian websites",
23 "default_popup": "icedeb.html"
23 "default_popup": "icedeb.html",
24 "theme_icons": [
25 {
26 "light": "icons/icedeb-addon-light.svg",
27 "dark": "icons/icedeb-addon-dark.svg",
28 "size": 16
29 },
30 {
31 "light": "icons/icedeb-addon-light.svg",
32 "dark": "icons/icedeb-addon-dark.svg",
33 "size": 32
34 }
35 ]
2436 }
2537 }