diff --git a/collects/drracket/private/debug.rkt b/collects/drracket/private/debug.rkt
index a0a9c4bb5e..c8758bfe3c 100644
--- a/collects/drracket/private/debug.rkt
+++ b/collects/drracket/private/debug.rkt
@@ -26,6 +26,7 @@ profile todo:
net/url
racket/match
mrlib/include-bitmap
+ icons
(for-syntax racket/base))
(define orig (current-output-port))
@@ -186,10 +187,10 @@ profile todo:
(super-make-object bitmap))])
note%)))
- (define bug-note% (make-note% "stop-multi.png" (include-bitmap (lib "icons/stop-multi.png") 'png/mask)))
+ (define bug-note% (make-note% "stop-multi.png" (stop-signs-icon 24)))
(define mf-note% (make-note% "mf.gif" (include-bitmap (lib "icons/mf.gif") 'gif)))
- (define file-note% (make-note% "stop-22x22.png" (include-bitmap (lib "icons/stop-22x22.png") 'png/mask)))
- (define small-planet-bitmap (include-bitmap (lib "icons/small-planet.png") 'png/mask))
+ (define file-note% (make-note% "stop-22x22.png" (stop-sign-icon 'red 24)))
+ (define small-planet-bitmap (planet-logo #f 24))
(define planet-note% (make-note% "small-planet.png" small-planet-bitmap))
;; display-stats : (syntax -> syntax)
diff --git a/collects/drracket/private/unit.rkt b/collects/drracket/private/unit.rkt
index 6c5de3d15e..206b733e78 100644
--- a/collects/drracket/private/unit.rkt
+++ b/collects/drracket/private/unit.rkt
@@ -4688,7 +4688,7 @@ module browser threading seems wrong.
[(null? l) '()]
[else (cons (car l) (loop (cdr l) (- n 1)))])))
- (define very-small-planet-bitmap (include-bitmap (lib "icons/very-small-planet.png") 'png/mask))
+ (define very-small-planet-bitmap (icons:planet-logo #f 16))
(define saved-bug-reports-window #f)
(define saved-bug-reports-panel #f)
diff --git a/collects/icons/main.rkt b/collects/icons/main.rkt
index 85776debb1..2d5cbcf9b3 100644
--- a/collects/icons/main.rkt
+++ b/collects/icons/main.rkt
@@ -37,6 +37,7 @@
check-syntax-icon-pict
check-syntax-small-icon-pict
plt-logo-pict
+ planet-logo-pict
go-icon
bar-icon
@@ -57,4 +58,5 @@
macro-stepper-icon
check-syntax-icon
check-syntax-small-icon
- plt-logo))
+ plt-logo
+ planet-logo))
diff --git a/collects/icons/private/svg.rkt b/collects/icons/private/svg.rkt
index 3d840036cf..b10a6501cb 100644
--- a/collects/icons/private/svg.rkt
+++ b/collects/icons/private/svg.rkt
@@ -157,6 +157,10 @@
(defproc (plt-logo-pict [height (>=/c 0)] [style icon-style/c (default-icon-style)]) pict?
(load-icon-pict "logo" (format-icon-name "plt-logo" #f style) height))
+(defproc (planet-logo-pict [color icon-color/c] [height (>=/c 0)]
+ [style icon-style/c (default-icon-style)]) pict?
+ (load-icon-pict "logo" (format-icon-name "planet-logo" color style) height))
+
;; ===================================================================================================
;; Common icon contructors
@@ -197,7 +201,8 @@
stop-sign-icon
check-icon
magnifying-glass-icon
- magnifying-glass-left-icon)
+ magnifying-glass-left-icon
+ planet-logo)
(define-wrapped-icon-fun/no-color
stop-signs-icon
diff --git a/collects/icons/private/svg/check/16/black/check-diffuse.png b/collects/icons/private/svg/check/16/black/check-diffuse.png
index dd5d2f8075..8fccd8ca53 100644
Binary files a/collects/icons/private/svg/check/16/black/check-diffuse.png and b/collects/icons/private/svg/check/16/black/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/black/check-shiny.png b/collects/icons/private/svg/check/16/black/check-shiny.png
index 66bb5cb968..eee5f1f636 100644
Binary files a/collects/icons/private/svg/check/16/black/check-shiny.png and b/collects/icons/private/svg/check/16/black/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/blue/check-diffuse.png b/collects/icons/private/svg/check/16/blue/check-diffuse.png
index 1458f09a75..eebbb980c0 100644
Binary files a/collects/icons/private/svg/check/16/blue/check-diffuse.png and b/collects/icons/private/svg/check/16/blue/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/blue/check-shiny.png b/collects/icons/private/svg/check/16/blue/check-shiny.png
index 00f12e391d..c061393146 100644
Binary files a/collects/icons/private/svg/check/16/blue/check-shiny.png and b/collects/icons/private/svg/check/16/blue/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/check-diffuse.png b/collects/icons/private/svg/check/16/check-diffuse.png
index 4ad6f0a0fa..388d7f1787 100644
Binary files a/collects/icons/private/svg/check/16/check-diffuse.png and b/collects/icons/private/svg/check/16/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/check-shiny.png b/collects/icons/private/svg/check/16/check-shiny.png
index bf8efdf3b1..4c60f83a5e 100644
Binary files a/collects/icons/private/svg/check/16/check-shiny.png and b/collects/icons/private/svg/check/16/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/cyan/check-diffuse.png b/collects/icons/private/svg/check/16/cyan/check-diffuse.png
index 36860470ac..74c7cd574b 100644
Binary files a/collects/icons/private/svg/check/16/cyan/check-diffuse.png and b/collects/icons/private/svg/check/16/cyan/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/cyan/check-shiny.png b/collects/icons/private/svg/check/16/cyan/check-shiny.png
index 61d3ca29f9..b89007e056 100644
Binary files a/collects/icons/private/svg/check/16/cyan/check-shiny.png and b/collects/icons/private/svg/check/16/cyan/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/green/check-diffuse.png b/collects/icons/private/svg/check/16/green/check-diffuse.png
index daabb964ae..84c98c16f0 100644
Binary files a/collects/icons/private/svg/check/16/green/check-diffuse.png and b/collects/icons/private/svg/check/16/green/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/green/check-shiny.png b/collects/icons/private/svg/check/16/green/check-shiny.png
index 67346317a9..a4570f1be1 100644
Binary files a/collects/icons/private/svg/check/16/green/check-shiny.png and b/collects/icons/private/svg/check/16/green/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/orange/check-diffuse.png b/collects/icons/private/svg/check/16/orange/check-diffuse.png
index fe4bd63dfd..05f21f6fdb 100644
Binary files a/collects/icons/private/svg/check/16/orange/check-diffuse.png and b/collects/icons/private/svg/check/16/orange/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/orange/check-shiny.png b/collects/icons/private/svg/check/16/orange/check-shiny.png
index 14ef0331e6..a7a430eb21 100644
Binary files a/collects/icons/private/svg/check/16/orange/check-shiny.png and b/collects/icons/private/svg/check/16/orange/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/purple/check-diffuse.png b/collects/icons/private/svg/check/16/purple/check-diffuse.png
index 6049c8ec51..fcce07653a 100644
Binary files a/collects/icons/private/svg/check/16/purple/check-diffuse.png and b/collects/icons/private/svg/check/16/purple/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/purple/check-shiny.png b/collects/icons/private/svg/check/16/purple/check-shiny.png
index 8327a13028..c883fb6d76 100644
Binary files a/collects/icons/private/svg/check/16/purple/check-shiny.png and b/collects/icons/private/svg/check/16/purple/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/red/check-diffuse.png b/collects/icons/private/svg/check/16/red/check-diffuse.png
index 44e0850a01..9e5d8dff46 100644
Binary files a/collects/icons/private/svg/check/16/red/check-diffuse.png and b/collects/icons/private/svg/check/16/red/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/red/check-shiny.png b/collects/icons/private/svg/check/16/red/check-shiny.png
index c549b543ae..18ddd152a3 100644
Binary files a/collects/icons/private/svg/check/16/red/check-shiny.png and b/collects/icons/private/svg/check/16/red/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/16/white/check-diffuse.png b/collects/icons/private/svg/check/16/white/check-diffuse.png
index 7fc0a4b87d..833bbd3fee 100644
Binary files a/collects/icons/private/svg/check/16/white/check-diffuse.png and b/collects/icons/private/svg/check/16/white/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/16/white/check-shiny.png b/collects/icons/private/svg/check/16/white/check-shiny.png
index db01e5d396..0e1f890429 100644
Binary files a/collects/icons/private/svg/check/16/white/check-shiny.png and b/collects/icons/private/svg/check/16/white/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/black/check-diffuse.png b/collects/icons/private/svg/check/32/black/check-diffuse.png
index 540dbc5b16..ae8beb1845 100644
Binary files a/collects/icons/private/svg/check/32/black/check-diffuse.png and b/collects/icons/private/svg/check/32/black/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/black/check-shiny.png b/collects/icons/private/svg/check/32/black/check-shiny.png
index 39a8d330cb..c486d89d6c 100644
Binary files a/collects/icons/private/svg/check/32/black/check-shiny.png and b/collects/icons/private/svg/check/32/black/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/blue/check-diffuse.png b/collects/icons/private/svg/check/32/blue/check-diffuse.png
index be3f9d260b..cd39e37b4f 100644
Binary files a/collects/icons/private/svg/check/32/blue/check-diffuse.png and b/collects/icons/private/svg/check/32/blue/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/blue/check-shiny.png b/collects/icons/private/svg/check/32/blue/check-shiny.png
index ff5153fa55..e6b6bafc7b 100644
Binary files a/collects/icons/private/svg/check/32/blue/check-shiny.png and b/collects/icons/private/svg/check/32/blue/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/check-diffuse.png b/collects/icons/private/svg/check/32/check-diffuse.png
index 6c96686c7f..eb1a9d64fb 100644
Binary files a/collects/icons/private/svg/check/32/check-diffuse.png and b/collects/icons/private/svg/check/32/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/check-shiny.png b/collects/icons/private/svg/check/32/check-shiny.png
index 440b6118bf..0b10e16c40 100644
Binary files a/collects/icons/private/svg/check/32/check-shiny.png and b/collects/icons/private/svg/check/32/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/cyan/check-diffuse.png b/collects/icons/private/svg/check/32/cyan/check-diffuse.png
index 2bd92ca218..7fc652800d 100644
Binary files a/collects/icons/private/svg/check/32/cyan/check-diffuse.png and b/collects/icons/private/svg/check/32/cyan/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/cyan/check-shiny.png b/collects/icons/private/svg/check/32/cyan/check-shiny.png
index 9435cfbe75..20a7f0f545 100644
Binary files a/collects/icons/private/svg/check/32/cyan/check-shiny.png and b/collects/icons/private/svg/check/32/cyan/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/green/check-diffuse.png b/collects/icons/private/svg/check/32/green/check-diffuse.png
index 3d72abfb73..48c6d5e512 100644
Binary files a/collects/icons/private/svg/check/32/green/check-diffuse.png and b/collects/icons/private/svg/check/32/green/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/green/check-shiny.png b/collects/icons/private/svg/check/32/green/check-shiny.png
index 8eded435eb..58bb16933f 100644
Binary files a/collects/icons/private/svg/check/32/green/check-shiny.png and b/collects/icons/private/svg/check/32/green/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/orange/check-diffuse.png b/collects/icons/private/svg/check/32/orange/check-diffuse.png
index b8a893238c..08ef264c4d 100644
Binary files a/collects/icons/private/svg/check/32/orange/check-diffuse.png and b/collects/icons/private/svg/check/32/orange/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/orange/check-shiny.png b/collects/icons/private/svg/check/32/orange/check-shiny.png
index 9b4d245276..ae0322845d 100644
Binary files a/collects/icons/private/svg/check/32/orange/check-shiny.png and b/collects/icons/private/svg/check/32/orange/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/purple/check-diffuse.png b/collects/icons/private/svg/check/32/purple/check-diffuse.png
index 258c9cef9b..65c9fbb627 100644
Binary files a/collects/icons/private/svg/check/32/purple/check-diffuse.png and b/collects/icons/private/svg/check/32/purple/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/purple/check-shiny.png b/collects/icons/private/svg/check/32/purple/check-shiny.png
index 071c1b0894..1a40c948a6 100644
Binary files a/collects/icons/private/svg/check/32/purple/check-shiny.png and b/collects/icons/private/svg/check/32/purple/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/red/check-diffuse.png b/collects/icons/private/svg/check/32/red/check-diffuse.png
index e24e7b76e1..aa141d6bba 100644
Binary files a/collects/icons/private/svg/check/32/red/check-diffuse.png and b/collects/icons/private/svg/check/32/red/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/red/check-shiny.png b/collects/icons/private/svg/check/32/red/check-shiny.png
index 7f12c93f82..67a3afad21 100644
Binary files a/collects/icons/private/svg/check/32/red/check-shiny.png and b/collects/icons/private/svg/check/32/red/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/32/white/check-diffuse.png b/collects/icons/private/svg/check/32/white/check-diffuse.png
index d75895335b..fbe372ad8e 100644
Binary files a/collects/icons/private/svg/check/32/white/check-diffuse.png and b/collects/icons/private/svg/check/32/white/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/32/white/check-shiny.png b/collects/icons/private/svg/check/32/white/check-shiny.png
index d12d0b91c7..fef4fe9ec2 100644
Binary files a/collects/icons/private/svg/check/32/white/check-shiny.png and b/collects/icons/private/svg/check/32/white/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/black/check-diffuse.png b/collects/icons/private/svg/check/64/black/check-diffuse.png
index 85abdc0132..a6e14128ff 100644
Binary files a/collects/icons/private/svg/check/64/black/check-diffuse.png and b/collects/icons/private/svg/check/64/black/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/black/check-shiny.png b/collects/icons/private/svg/check/64/black/check-shiny.png
index 28f3df355b..204663c014 100644
Binary files a/collects/icons/private/svg/check/64/black/check-shiny.png and b/collects/icons/private/svg/check/64/black/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/blue/check-diffuse.png b/collects/icons/private/svg/check/64/blue/check-diffuse.png
index 4c9a5ea9a2..7232ab1767 100644
Binary files a/collects/icons/private/svg/check/64/blue/check-diffuse.png and b/collects/icons/private/svg/check/64/blue/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/blue/check-shiny.png b/collects/icons/private/svg/check/64/blue/check-shiny.png
index 3716e2cfef..51931a3f64 100644
Binary files a/collects/icons/private/svg/check/64/blue/check-shiny.png and b/collects/icons/private/svg/check/64/blue/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/check-diffuse.png b/collects/icons/private/svg/check/64/check-diffuse.png
index e0fa536de1..dc8c278c7c 100644
Binary files a/collects/icons/private/svg/check/64/check-diffuse.png and b/collects/icons/private/svg/check/64/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/check-shiny.png b/collects/icons/private/svg/check/64/check-shiny.png
index 86de7bdd22..39d8341f49 100644
Binary files a/collects/icons/private/svg/check/64/check-shiny.png and b/collects/icons/private/svg/check/64/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/cyan/check-diffuse.png b/collects/icons/private/svg/check/64/cyan/check-diffuse.png
index 02a604a3c7..89a16305fd 100644
Binary files a/collects/icons/private/svg/check/64/cyan/check-diffuse.png and b/collects/icons/private/svg/check/64/cyan/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/cyan/check-shiny.png b/collects/icons/private/svg/check/64/cyan/check-shiny.png
index 3b351b12e5..cfa963b96e 100644
Binary files a/collects/icons/private/svg/check/64/cyan/check-shiny.png and b/collects/icons/private/svg/check/64/cyan/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/green/check-diffuse.png b/collects/icons/private/svg/check/64/green/check-diffuse.png
index dc9aaf21b8..4272fb3919 100644
Binary files a/collects/icons/private/svg/check/64/green/check-diffuse.png and b/collects/icons/private/svg/check/64/green/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/green/check-shiny.png b/collects/icons/private/svg/check/64/green/check-shiny.png
index e37742521e..097609c1d4 100644
Binary files a/collects/icons/private/svg/check/64/green/check-shiny.png and b/collects/icons/private/svg/check/64/green/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/orange/check-diffuse.png b/collects/icons/private/svg/check/64/orange/check-diffuse.png
index 2cbf2c6ba9..12789a1cf4 100644
Binary files a/collects/icons/private/svg/check/64/orange/check-diffuse.png and b/collects/icons/private/svg/check/64/orange/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/orange/check-shiny.png b/collects/icons/private/svg/check/64/orange/check-shiny.png
index cc9a3bdb34..57431b155d 100644
Binary files a/collects/icons/private/svg/check/64/orange/check-shiny.png and b/collects/icons/private/svg/check/64/orange/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/purple/check-diffuse.png b/collects/icons/private/svg/check/64/purple/check-diffuse.png
index eb4e374fe2..06d5706236 100644
Binary files a/collects/icons/private/svg/check/64/purple/check-diffuse.png and b/collects/icons/private/svg/check/64/purple/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/purple/check-shiny.png b/collects/icons/private/svg/check/64/purple/check-shiny.png
index 7d6b493bce..188a8a73bc 100644
Binary files a/collects/icons/private/svg/check/64/purple/check-shiny.png and b/collects/icons/private/svg/check/64/purple/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/red/check-diffuse.png b/collects/icons/private/svg/check/64/red/check-diffuse.png
index e10f4ff260..7b2ee5bffa 100644
Binary files a/collects/icons/private/svg/check/64/red/check-diffuse.png and b/collects/icons/private/svg/check/64/red/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/red/check-shiny.png b/collects/icons/private/svg/check/64/red/check-shiny.png
index 9404edd1dc..155ad1b0f7 100644
Binary files a/collects/icons/private/svg/check/64/red/check-shiny.png and b/collects/icons/private/svg/check/64/red/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/64/white/check-diffuse.png b/collects/icons/private/svg/check/64/white/check-diffuse.png
index aa5acc0eab..9df960232a 100644
Binary files a/collects/icons/private/svg/check/64/white/check-diffuse.png and b/collects/icons/private/svg/check/64/white/check-diffuse.png differ
diff --git a/collects/icons/private/svg/check/64/white/check-shiny.png b/collects/icons/private/svg/check/64/white/check-shiny.png
index 0341fc1658..ad003ff4d4 100644
Binary files a/collects/icons/private/svg/check/64/white/check-shiny.png and b/collects/icons/private/svg/check/64/white/check-shiny.png differ
diff --git a/collects/icons/private/svg/check/check-diffuse.svg b/collects/icons/private/svg/check/check-diffuse.svg
index d0675a1a6e..966af6cb52 100644
--- a/collects/icons/private/svg/check/check-diffuse.svg
+++ b/collects/icons/private/svg/check/check-diffuse.svg
@@ -55,16 +55,6 @@
y2="586.76599"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0924996,0,0,1.0617637,-19.42335,-19.267702)" />
-
+
-
+
+
+
+
diff --git a/collects/icons/private/svg/logo/planet-logo-shiny.svg b/collects/icons/private/svg/logo/planet-logo-shiny.svg
new file mode 100644
index 0000000000..74d97a20ed
--- /dev/null
+++ b/collects/icons/private/svg/logo/planet-logo-shiny.svg
@@ -0,0 +1,748 @@
+
+
+
+
diff --git a/collects/icons/private/svg/logo/plt-logo-shiny.svg b/collects/icons/private/svg/logo/plt-logo-shiny.svg
index 4a894249a4..3dae4e24d4 100644
--- a/collects/icons/private/svg/logo/plt-logo-shiny.svg
+++ b/collects/icons/private/svg/logo/plt-logo-shiny.svg
@@ -189,8 +189,8 @@
showgrid="false"
inkscape:window-width="1024"
inkscape:window-height="719"
- inkscape:window-x="723"
- inkscape:window-y="302"
+ inkscape:window-x="553"
+ inkscape:window-y="296"
inkscape:window-maximized="0" />
@@ -268,13 +268,13 @@
inkscape:export-ydpi="5.23" />
-
-
-
-
-
-
-
+
+
+ style="fill:url(#linearGradient3025);fill-opacity:1;stroke:url(#linearGradient3809);stroke-width:6.45195483999999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ style="fill:url(#linearGradient3029);fill-opacity:1;stroke:url(#linearGradient3809);stroke-width:6.45195483999999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccc" />
+ style="fill:none;stroke:url(#linearGradient3817);stroke-width:6.45195483999999997;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
-
-
-
-
-
+
+
+
+
+
+
+
@@ -311,19 +324,6 @@
style="fill:none;stroke:url(#linearGradient3866);stroke-width:12;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3835)"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss" />
-
-
-
-
+ id="filter3799">
+ stdDeviation="3.2043148"
+ id="feGaussianBlur3801" />
+
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
+ style="stop-color:#ee0b00;stop-opacity:1;" />
+ style="stop-color:#ee0b00;stop-opacity:0;" />
+
+
+
+
+
+ inkscape:transform-center-x="17.515078"
+ inkscape:transform-center-y="-7.7341537"
+ transform="matrix(0.94273312,0,0,0.94297975,51.87593,-7.5068127)" />
+ inkscape:transform-center-x="18.154522"
+ inkscape:transform-center-y="-8.0254371"
+ transform="matrix(0.97715054,0,0,0.97849462,41.561528,-18.965473)" />