===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
munin-2.999.15/Makefile.config-101-#
munin-2.999.15/Makefile.config:102:GOODSH     := $(shell PATH=`getconf PATH 2>/dev/null || echo $(PATH)` LANG=C sh -c 'type sh | sed "s/.* //"')
munin-2.999.15/Makefile.config-103-
##############################################
munin-2.999.15/contrib/rrdcopy-156-	print "rrdtool update $dst_rrd --template " . join(':', @ds_names) . " " . join(" ", @rrd_updates) . "\n" if $ENV{DEBUG};
munin-2.999.15/contrib/rrdcopy:157:	system("rrdtool update $dst_rrd --template " . join(':', @ds_names) . " " . join(" ", @rrd_updates));
munin-2.999.15/contrib/rrdcopy-158-
##############################################
munin-2.999.15/contrib/rrdcopy-162-			print "rrdtool update $dst_rrd --template " . join(':', @ds_names) . " " . join(" ", $rrd_update) . "\n" if $ENV{DEBUG};
munin-2.999.15/contrib/rrdcopy:163:			system("rrdtool update $dst_rrd --template " . join(':', @ds_names) . " " . join(" ", $rrd_update));
munin-2.999.15/contrib/rrdcopy-164-		}
##############################################
munin-2.999.15/doc/develop/data_structures.rst-26-The Node configuration is read from plain text files (e.g. ``/etc/munin/munin-node.conf``).
munin-2.999.15/doc/develop/data_structures.rst:27:Its content is stored in a simple perl object (usually called ``$config``).
munin-2.999.15/doc/develop/data_structures.rst:28:All settings are available as object attributes (e.g. ``$config->{default_plugin_user}``).
munin-2.999.15/doc/develop/data_structures.rst-29-
##############################################
munin-2.999.15/doc/develop/data_structures.rst-41-(including wildcard configurations) for all locally enabled plugins are stored in the hash
munin-2.999.15/doc/develop/data_structures.rst:42:``$config->{sconf}``.
munin-2.999.15/doc/develop/data_structures.rst-43-
munin-2.999.15/doc/develop/data_structures.rst:44:Configuration settings for a specific plugin are accessible as a hash (``$config->{sconf}{$plugin_name}``).
munin-2.999.15/doc/develop/data_structures.rst-45-
##############################################
munin-2.999.15/doc/develop/plugins/advanced-topics.rst-154-
munin-2.999.15/doc/develop/plugins/advanced-topics.rst:155:In order to avoid external tools (e.g. `bc` or `dc`), the shell's arithmetic substitution (e.g. `a=$((b + 3))`) should be used for integer operations and `awk` (e.g. `awk '{print $1/1000}'`) for non-trivial calculations.
munin-2.999.15/doc/develop/plugins/advanced-topics.rst-156-
##############################################
munin-2.999.15/doc/develop/plugins/advanced-topics.rst-177-
munin-2.999.15/doc/develop/plugins/advanced-topics.rst:178:The plugin should figure out the name of the host being monitored by inspecting its own filename, e.g. ``HOST=$(basename "$0" | cut -d_ -f2)``. If that's ``localhost``, it should behave like any other (non-remote) plugin; otherwise it should emit ``host_name $HOST`` before any other configuration data. This lets the node know which plugins collect local metrics and which ones collect metrics from remote hosts -- and, for the latter, which hosts they collect from.
munin-2.999.15/doc/develop/plugins/advanced-topics.rst-179-
##############################################
munin-2.999.15/doc/develop/plugins/advanced-topics.rst-182-
munin-2.999.15/doc/develop/plugins/advanced-topics.rst:183:Nothing special is needed here! Figure out ``$HOST`` as above, then fetch metrics for it and emit them like any other plugin.
munin-2.999.15/doc/develop/plugins/advanced-topics.rst-184-
##############################################
munin-2.999.15/doc/develop/plugins/howto-write-plugins.rst-145-
munin-2.999.15/doc/develop/plugins/howto-write-plugins.rst:146:The :ref:`.warning <fieldname.warning>` and :ref:`.critical <fieldname.critical>` attributes are used to detect unwanted situations.  In the case of load average they're probably set statically by the plugin author.  A plugin may also examine the system on which it runs to determine good values for these.  The best way is for the plugin author provide defaults, and then code the plugin to get defaults from environment variables such as ``$warning`` and ``$critical``.  See :ref:`configurable field thresholds <plugin-field-thresholds>` for implementation hints.
munin-2.999.15/doc/develop/plugins/howto-write-plugins.rst-147-
##############################################
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst-19-
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst:20:``${graph_*}`` in plugin output will be magically replaced with the correct value by Munin.
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst-21-
##############################################
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst-32-
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst:33:To avoid spikes in the graph when counters are reset (as opposed to wrapping), use :ref:`${name}.type <fieldname.type>` DERIVE and :ref:`${name}.min <fieldname.min>` 0. Note that this will cause lost data points when the counter wraps, and should therefore not be used with plugins that are expected to wrap more often than be reset (or sampled). An example of this is the Linux ``if_`` plugin on 32bit machines with a busy (100Mbps) network.
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst-34-
##############################################
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst-38- #. Use DERIVE
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst:39: #. Use :ref:`${name}.min <fieldname.min>` to avoid negative spikes
munin-2.999.15/doc/develop/plugins/plugin-bcp.rst-40-
##############################################
munin-2.999.15/doc/develop/plugins/plugin-concise.rst-135-
munin-2.999.15/doc/develop/plugins/plugin-concise.rst:136:This means that the plugin can be run as ``if_eth0`` and ``if_eth1``. The plugin will then have to examine what's in C is called ``ARGV[0]``, and in perl and shell scripts as ``$0`` to determine what exactly the start command was.
munin-2.999.15/doc/develop/plugins/plugin-concise.rst-137-
##############################################
munin-2.999.15/doc/develop/plugins/plugin-concise.rst-140-
munin-2.999.15/doc/develop/plugins/plugin-concise.rst:141:As stated above a plugin magic marked with *family=snmpauto* and *capabilities=snmpconf* will be invoked with ``snmpconf`` as the sole argument. A SNMP plugin is by definition a wildcard plugin, it may examine any host that supports SNMP. The name convention for a SNMP plugin is examplified by the df plugin: ``snmp__df``.  The hostname goes between the two consecutive underlines (_), and when invoked, the plugin may examine ``$0``, as any wildcard plugin must, to determine the name of the host it is to work with. It may also contain two wildcards as in ``snmp__if_``. Here the index of the network interface appears after the third underline (_) at the end of the string. e.g. ``snmp_foo.example.com_if_1``.
munin-2.999.15/doc/develop/plugins/plugin-concise.rst-142-
##############################################
munin-2.999.15/doc/develop/plugins/plugin-concise.rst-222-
munin-2.999.15/doc/develop/plugins/plugin-concise.rst:223:Example ``/bin/sh`` code.  This adds an environment variable called ``$LOG``, and sets it to the value of ``$logfile`` (from ``env.logfile`` in the Munin plugin configuration), with a default of ``/var/log/syslog`` if ``$logfile`` is empty:
munin-2.999.15/doc/develop/plugins/plugin-concise.rst-224-
##############################################
munin-2.999.15/doc/develop/plugins/requirements-vetted.rst-39-
munin-2.999.15/doc/develop/plugins/requirements-vetted.rst:40:These plugins can go in ``$(DESTDIR)/usr/share/munin/plugins``.
##############################################
munin-2.999.15/doc/others/index.rst-48-
munin-2.999.15/doc/others/index.rst:49:Today, for each plugin, on every run, munin-update first does ``config $plugin``
munin-2.999.15/doc/others/index.rst:50:and then a ``fetch $plugin``.
munin-2.999.15/doc/others/index.rst-51-
##############################################
munin-2.999.15/doc/others/index.rst-56-We could halve the execution time if ``munin-update`` detects that
munin-2.999.15/doc/others/index.rst:57:``config $plugin`` produces .value and from that deducts that the
munin-2.999.15/doc/others/index.rst:58:``fetch $plugin`` is superfluous.  If so the ``fetch`` will not be executed
munin-2.999.15/doc/others/index.rst-59-thus halving the total execution time.  A ``config`` with ``fetch``-time output
##############################################
munin-2.999.15/doc/plugin/env.rst-48-
munin-2.999.15/doc/plugin/env.rst:49:  Default: ``/var/lib/munin-node/$USER``
munin-2.999.15/doc/plugin/env.rst-50-
##############################################
munin-2.999.15/doc/tutorial/alert.rst-172-Generally, all directives recognized in the :ref:`configuration protocol <plugin_attributes_global>`
munin-2.999.15/doc/tutorial/alert.rst:173:and in :ref:`munin.conf <munin.conf>`.conf are available as ``${var:directive}``.
munin-2.999.15/doc/tutorial/alert.rst-174-We list some frequently used in the following section.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-185-:Variable: **group**
munin-2.999.15/doc/tutorial/alert.rst:186::Syntax: ``${var:group}``
munin-2.999.15/doc/tutorial/alert.rst-187-:Reference: Group name as declared in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-191-:Variable: **host**
munin-2.999.15/doc/tutorial/alert.rst:192::Syntax: ``${var:host}``
munin-2.999.15/doc/tutorial/alert.rst-193-:Reference: Host name as declared in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-197-:Variable: **graph_title**
munin-2.999.15/doc/tutorial/alert.rst:198::Syntax: ``${var:graph_title}``
munin-2.999.15/doc/tutorial/alert.rst-199-:Reference: Plugin's title as declared via config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-203-:Variable: **plugin**
munin-2.999.15/doc/tutorial/alert.rst:204::Syntax: ``${var:plugin}``
munin-2.999.15/doc/tutorial/alert.rst-205-:Reference: Plugin's name as declared via config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-209-:Variable: **graph_category**
munin-2.999.15/doc/tutorial/alert.rst:210::Syntax: ``${var:graph_category}``
munin-2.999.15/doc/tutorial/alert.rst-211-:Reference: Plugin's category as declared via config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-215-:Variable: **worst**
munin-2.999.15/doc/tutorial/alert.rst:216::Syntax: ``${var:worst}``
munin-2.999.15/doc/tutorial/alert.rst-217-:Reference: The name of the worst status detected in this run of munin-limits. From best to worst, the statuses are OK, UNKNOWN, WARNING, and CRITICAL.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-221-:Variable: **worstid**
munin-2.999.15/doc/tutorial/alert.rst:222::Syntax: ``${var:worstid}``
munin-2.999.15/doc/tutorial/alert.rst-223-:Reference: A numeric equivalent of **worst**; 0 for OK, 1 for WARNING, 2 for CRITICAL, and 3 for UNKNOWN. Note that this is not the same as the order of severity.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-237-:Variable: **{fieldname}.label**
munin-2.999.15/doc/tutorial/alert.rst:238::Syntax: ``${var:label}``
munin-2.999.15/doc/tutorial/alert.rst-239-:Reference: Label of the data field as declared via plugin's config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-243-:Variable: **{fieldname}.value**
munin-2.999.15/doc/tutorial/alert.rst:244::Syntax: ``${var:value}``
munin-2.999.15/doc/tutorial/alert.rst-245-:Reference: Value of the data field as delivered by data fetch
##############################################
munin-2.999.15/doc/tutorial/alert.rst-249-:Variable: **{fieldname}.extinfo**
munin-2.999.15/doc/tutorial/alert.rst:250::Syntax: ``${var:extinfo}``
munin-2.999.15/doc/tutorial/alert.rst-251-:Reference: Extended info of the field, if declared via plugin's config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-255-:Variable: **{fieldname}.warning**
munin-2.999.15/doc/tutorial/alert.rst:256::Syntax: ``${var:wrange}``
munin-2.999.15/doc/tutorial/alert.rst-257-:Reference: Numeric range for warning alerts of the field, if declared via plugin's config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-261-:Variable: **{fieldname}.critical**
munin-2.999.15/doc/tutorial/alert.rst:262::Syntax: ``${var:crange}``
munin-2.999.15/doc/tutorial/alert.rst-263-:Reference: Numeric range for critical alerts of the field, if declared via plugin's config protocol or set in munin.conf.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-267-:Variable: **ofields**
munin-2.999.15/doc/tutorial/alert.rst:268::Syntax: ``${var:ofields}``
munin-2.999.15/doc/tutorial/alert.rst-269-:Reference: Space separated list of fieldnames with a value inside the warning range (i.e. "ok" values).
##############################################
munin-2.999.15/doc/tutorial/alert.rst-273-:Variable: **fofields**
munin-2.999.15/doc/tutorial/alert.rst:274::Syntax: ``${var:fofields}``
munin-2.999.15/doc/tutorial/alert.rst-275-:Reference: Space separated list of fieldnames with a value inside the warning range, that were *not* ok the last time munin-limits ran (i.e. "freshly ok" values -- on the next run after this they are merely "ok").
##############################################
munin-2.999.15/doc/tutorial/alert.rst-279-:Variable: **wfields**
munin-2.999.15/doc/tutorial/alert.rst:280::Syntax: ``${var:wfields}``
munin-2.999.15/doc/tutorial/alert.rst-281-:Reference: Space separated list of fieldnames with a value outside the warning range as detected by munin-limits.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-285-:Variable: **cfields**
munin-2.999.15/doc/tutorial/alert.rst:286::Syntax: ``${var:cfields}``
munin-2.999.15/doc/tutorial/alert.rst-287-:Reference: Space separated list of fieldnames with a value outside the critical range as detected by munin-limits.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-291-:Variable: **ufields**
munin-2.999.15/doc/tutorial/alert.rst:292::Syntax: ``${var:ufields}``
munin-2.999.15/doc/tutorial/alert.rst-293-:Reference: Space separated list of fieldnames with an unknown value as detected by munin-limit.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-297-:Variable: **numufields**, **numcfields**, **numwfields**, **numfofields**, **numofields**
munin-2.999.15/doc/tutorial/alert.rst:298::Syntax: ``${var:numufields}``, etc
munin-2.999.15/doc/tutorial/alert.rst-299-:Reference: The number of fields that are unknown, critical, warning, freshly OK, and OK, respectively.
##############################################
munin-2.999.15/doc/tutorial/alert.rst-303-
munin-2.999.15/doc/tutorial/alert.rst:304:The ``${var:value}`` variables get the correct values from munin-limits prior to expansion of the variable.
munin-2.999.15/doc/tutorial/alert.rst-305-
munin-2.999.15/doc/tutorial/alert.rst:306:Then, the ``${var:*range}`` variables are set from {fieldname}.warning and {fieldname}.critical.
munin-2.999.15/doc/tutorial/alert.rst-307-
munin-2.999.15/doc/tutorial/alert.rst-308-Based on those, ``{fieldname}.label`` occurrences where warning or critical levels are breached
munin-2.999.15/doc/tutorial/alert.rst:309:or unknown are summarized into the ``${var:*fields}`` variables.
munin-2.999.15/doc/tutorial/alert.rst-310-
##############################################
munin-2.999.15/doc/tutorial/troubleshooting.rst-202-
munin-2.999.15/doc/tutorial/troubleshooting.rst:203:If the plugin works for ``munin-run`` but not through ``netcat``, you might have a ``$PATH`` problem.
munin-2.999.15/doc/tutorial/troubleshooting.rst-204-
##############################################
munin-2.999.15/getversion-28-    # hide stderr (for detached HEADs)
munin-2.999.15/getversion:29:    GB=`LANG='' git branch --points-at HEAD 2>/dev/null | awk '$1 == "*" {print $2}'`
munin-2.999.15/getversion-30-    if echo "$GB" | grep -q "^("; then
##############################################
munin-2.999.15/getversion-52-                if [ -n "$branch_name" ]; then
munin-2.999.15/getversion:53:                    clean_branch_name=`echo "$branch_name" | sed -e 's/[^0-9A-Za-z\.\-\_]/_/g'`
munin-2.999.15/getversion-54-                else
##############################################
munin-2.999.15/getversion-59-                read -r VERSION COMMITS <<EOF
munin-2.999.15/getversion:60:`git describe --long | perl -lne 'print "$1 $2" if m/(.*)-(\d+)-g\w+/'`
munin-2.999.15/getversion-61-EOF
##############################################
munin-2.999.15/lib/Munin/Master/HTML.pm-843-	my $dbh = Munin::Master::Update::get_dbh();
munin-2.999.15/lib/Munin/Master/HTML.pm:844:	my ($value) = $dbh->selectrow_array("SELECT value FROM param WHERE name = ?", undef, ($param));
munin-2.999.15/lib/Munin/Master/HTML.pm-845-	return $value;
##############################################
munin-2.999.15/lib/Munin/Master/Worker.pm-17-
munin-2.999.15/lib/Munin/Master/Worker.pm:18:    $identity = refaddr($self) unless defined $identity;
munin-2.999.15/lib/Munin/Master/Worker.pm-19-    $self->{ID} = $identity;
##############################################
munin-2.999.15/lib/Munin/Master/LimitsOld.pm-782-                close(STDOUT);
munin-2.999.15/lib/Munin/Master/LimitsOld.pm:783:                exec($cmd) or WARN "[WARNING] Failed to exec for contact $c in pid $$";
munin-2.999.15/lib/Munin/Master/LimitsOld.pm-784-                exit;
##############################################
munin-2.999.15/lib/Munin/Node/SNMPConfig.pm-142-            my ($oid, $filter) = @$req;
munin-2.999.15/lib/Munin/Node/SNMPConfig.pm:143:            unless (_snmp_check_require($session, $oid, $filter)) {
munin-2.999.15/lib/Munin/Node/SNMPConfig.pm-144-                DEBUG("Missing requirement.");
##############################################
munin-2.999.15/logo.eps-2633-%@bN"?il.plisZVh$&*]6#CIPcJEH-Q?;Q_0r)(O_s7XprDn^\tjdTI>i9mcAk6,KLqU$#n='T$Fj'!Cb%XMo^.%m/@D*2*Q4<X-a
munin-2.999.15/logo.eps:2634:%noInA4B5]MjT>Bk3oV`;de/)lLFAi>i=WBELe^`d:9aUPH8B[HV^FJfd1NZ/!X_dGTfkelJGpYpR[=?])$3,mU^2bgO<Yl=5a!\`
munin-2.999.15/logo.eps-2635-%P;<gu+AG+kJ33j`\j.GCA-rTBSrd,%Uf]mg!n&Z][*'WkZ:MmkLD=*d0[ZCZ_cDK(l0V3_htGYAG&OH=O=aJoOH*k4?dhB"r/kdd
##############################################
munin-2.999.15/logo.eps-2666-%r%%CTc^<*o0mSMko?kQF<h:)%&%8(Q$-YPGn7f`8%dPSJ2#WL@2.I!43EgqYFT3!HkA)nZ(_,Fo^T,=R%uTFDS/"rK5U7NOHd!qL
munin-2.999.15/logo.eps:2667:%U;247(X8>)@QD6]@CcdkYJ^`g=X_icUE-=Qed"YBn'S"Saa3P93bW._0,`%;Yafms.3DqaMc3$E;aSZ+7dF"3quFkO\3O9JSoY&`
munin-2.999.15/logo.eps-2668-%?f6f^"upO/7N7VDYX>2-7$:f^/>g$3S\#BV(b?KXAq`TErUEF8NQ?pr6phqbhg\=!`0'?sBfJd+[d:F1nh@2)[s\ZQ:EXrkDJ-jm
munin-2.999.15/logo.eps-2669-%P))\Nfd2\bF4^^A+`S),))73Z[Hqpe6q8[c=8h+aW>JR`qZM%8:S0>"A3hk&B/!fo?r&Jt&A0>-68Sc*oE`tY\oH-]#%Hpi34;Au
munin-2.999.15/logo.eps:2670:%5Wko$otX0.$OVJdj[MQT&LdeoWFTOK3jM1G%&^TA/b,>>(R:N_"GKFi`*$u;WcW>o79`7Hi],%5n:do&.@!Jn,Zs[WWD0-I4k7+0
munin-2.999.15/logo.eps-2671-%[f!OF-Or%?dp7.,gi3).Kp6:tT[rj\[I42T^SUAmnp7;lIOqVON_@]&2:N67J=8<pX%/XB93&9%RZ[hC8].kV/O[;+cX-!OYP,=&
##############################################
munin-2.999.15/logo.eps-2677-%Zs8kdX0rE)qK1/CaEhYQ\:]Z#nS5.jgel=%._;1N4".^ilL`mff&Q1!_5l9?MJoQ7/X<j!/2NEZ78E*/aGQg*A$g*3erA(kd9/H+
munin-2.999.15/logo.eps:2678:%Kor-kZT&dlIOpG*>#]EY\C"fA>Ju8fG:7Jh`e@/+6b\R'^K,.gp9;Pg?ECST7@Ql$5Qu6",&1A+FH8e<M"r%-`@$O`m#?mMG(f&M
munin-2.999.15/logo.eps-2679-%,92n:6`3JJl?1?a8R*ui,uT)`Vb3I(4XTHa-9YWY1/[^jb(O8&%n(oudjD4X.e6K`SCfXt5[H51d1_oc:=K@o!](;;Sc8i<*3r32
##############################################
munin-2.999.15/logo.eps-2683-%n?K!&p!57AXqs/'lOaZd>;jN2iRi^X#5qrQB;of%D5hFgg1T%.)*WFSeU`@kC&98AGK9"u4,2)2\N8?K`$_DemIVkPbO,5-G(N_D
munin-2.999.15/logo.eps:2684:%W-CC)SB-@)@l5F;kYJK&ca%;`=nT_f+p-'R_Ra2#c:;&4I&9n*EL^^bGck$km!Hqo3QHN9rbSXSkuL2kjErI%4*&2<d1`\6B3_Q7
munin-2.999.15/logo.eps-2685-%\_9h1P)))<ka\^88QY;LX7PkOX/R+]V)3p@91N&OZ;=HI-W9W:<.1?LMa3jm-0<tkLpHTY&=/eAE'*6g8]r\8Gt=s(('=*4UaiF6
##############################################
munin-2.999.15/logo.eps-2698-%RHYej^qJIqF/OJIQMmXc?fDL:FO[<Tg@T`mIMo9ac)<jh?!k88D9kh7<DjK^Qk9D[O4Ri9_OF-7O:<]4TpXWVNtdkB1/m@NFWeVt
munin-2.999.15/logo.eps:2699:%9+"Zf^&h<XPOLIZF!]7b-os[$7,eo,-?#`Q$bjn6Y237Tb'YML,%#mSYEsKO71<Ue?rFQ\K!5g0<`i"$00eWG'tuG1$-_^l[gcV/
munin-2.999.15/logo.eps-2700-%08]R)hm$p!.[Y<G:Sm``,LBWdl[5m;)c$E3\gqu+!qdV:fh\TIq4RCkHJ82FX!fC(TM-:OPiHBS#6G[=Pp'_nYeRWCXK<qC.c$pE
##############################################
munin-2.999.15/logo.eps-2703-%YU/uJNf"+)*mN;5#o%#$PVZ[cRb$RLNTlACM*V.gj;&%`B@!TNjLXeCf'6C5NkFK7aFf]:M%]73Ks\7\2O8<7\i(&?\#BaRCB8<)
munin-2.999.15/logo.eps:2704:%`2s3R<G!8`+;_q3G:D:D:-3YManDIXdF6UEktP#nWd7Upj!`;uYq$X3P?;Ii2I.Y(F`5EL;r=&Ghc0BR&mhc]2atH[nkGNjl?lOo
munin-2.999.15/logo.eps-2705-%RnD"!rPXl`,=PMF.?^-:On<B"8KT1=%cSl?OKZXND..N#7JBGP<92D?6P(9Wcts@oXAYhkM%9Jjr7hoJ2oNuNM,U7qW=q0+JgLkn
##############################################
munin-2.999.15/logo.eps-2721-%TL=NIn+F,4AP@Z)B3/)gMD5G,L4=crb#PpTScQ*C->I`apTUlEO?&dN5@PXW7_^'Ei:l`5;YO!H4D=Q&Tfa];8,QL)>A>,?c\tk$
munin-2.999.15/logo.eps:2722:%!s#a$!`_KYD'%sm$?QSkl>QH8?Q46NJ$?&cQ*,pWm9Be)UQ1,!]7R@`?-s+ijOXrrLVSr\,O@U+X5`FeO>Ogn,(EA$ZW0T>TanJ*
munin-2.999.15/logo.eps-2723-%8!Tin2SjLg8=u)V2X;o[>h)@D1VQj2Pt?g5kpc\u`++l+W!d7l1&d2-q6^KY_=9m0SD?\P.>r\K_81(QdfdCe'ZB,:M]S%$4$+Z.
##############################################
munin-2.999.15/logo.eps-2727-%aS=.kS1=YBGE:./bOf).0jDa$!@krjkWIIZ!*8$)%/kojM"Q1QrXdAd#C*#em\TeQF"ItVH3dSH3n1:,0;Cb\5ig=AS3<uAH4]k`
munin-2.999.15/logo.eps:2728:%)Hj#^$o:^7qnBZuB4`Kd0KpYXL7'>5iZ"a'?o$*Ddp)KZ^9uHkm`ohr?:0c7"EW0iLTRcB^WS>,BcZjQjIB=`SLe2G%#AQL3+1NS
munin-2.999.15/logo.eps-2729-%0h5E8H:OSo2pciH%FGJ)lVgqI7%T?JhUPB2[6nqp\oOh+nr"L2JqUH)fJ(7(jGa4oGJl7-n"ZB+W+;:dBTm>5JoeqUmq<A(lae[g
##############################################
munin-2.999.15/logo.eps-2732-%Z4mX#'a(-N@&9%;ik:>U..((o#+,P<jNiQ-:*5gLQ!kD*q,XfrC?hKJ(^D^;qCC$7HGBA\`[?fX?Z6)7q(gqNh_Po@eDm.p,P"k,
munin-2.999.15/logo.eps:2733:%n$-eUdZk"8Poc(K8`03q:f-#kIiY.4VkTin!tNa2,8KDn%1C@0L@o=#*kJ/n^orVaE5UlcmB-$1LkB([]pmc#j#VI65`3#KqG`U]
munin-2.999.15/logo.eps-2734-%7#!)3ih'p'l1]XP#ib[c?.WjrSP#^\]NH:4ID;ZFQsV@n+!4g2I7,na9?Ci]N+O6]o,ngn//<:o;&X#?3j(aq@SrXV1Wn#(4TqH%
##############################################
munin-2.999.15/logo.eps-2746-%!PBY>VFWtdb3Qe0[^/rMqDQsgfn.>=BNSJ&Mp[sC/Z:tAbU\7eR>IT]nIjE"B.A=pqhc'a$!eUKWo\gVE\"8m?B/&ZktUWY(FkBa
munin-2.999.15/logo.eps:2747:%<7bLpUYPTNV(ho<Wg]AQ<T;PW2g#1cfr][5j2:`-XcJ!C$0tEIWT^_#n$#&cN$pTU\`1Nl^.1&7&Mhpe]_-PmgEEo="Q=4RqLD/<
munin-2.999.15/logo.eps-2748-%qejG&N42dR,L.I6m^jJg+PsE0]Y'luefZHLXl"p<P6VKV5sn`Dcq-(6(c2L0Xl(/^)Rb!`XW/"f39tE?1]]%V!"/$NmX(BG0V0R$
##############################################
munin-2.999.15/logo.eps-2750-%qjrTLN;#IgY)ih$AJu2s8K*iZaDGe\X2M@QNquK.4KAi?pG&7.j2mIX0FIqNK^e(3)esY*ql[HMcNpW#m4,3fc^ADgSr;A"Pr[<P
munin-2.999.15/logo.eps:2751:%$d@eV`Sp-UL:RcYH[cgT9Q*e\$l00e!*ZNA[pU<$6EuI&`^?[5-rf1;UKu^1;MgUA*e@=U8s)SMk.JF3.-R&^#cr(BR-VHq[dJ9Y
munin-2.999.15/logo.eps:2752:%R#UiVp;?V1ba^[tqlQ'IHo.mNE:h'kdu5DNV38KT`V$T,jH_3MdXqe3Tgo@2B)9]iV_?s+?MaKf05gg"j-uV8aY`J3V_?LALM[EN
munin-2.999.15/logo.eps-2753-%-jIE-"pdr'o:P4,l>J(W]ua8cW+&+)]c!Jc7D*a\Tj8H>^o`Y.34N<j&EX*@'rXB7(.g%4H390S=4Ec'=MYQ/+&K'DE&u1-WY%4e
##############################################
munin-2.999.15/logo.eps-2755-%a8)XZQg`g[IfJrUgJ<=QrNq0*lp/.b*9&?Xs%sN%])K;`?X0,9HhZX9C-QX1ktcJP>9!S!p&B!t5sS-Z[JYIl/UkSkO73ll?pnrh
munin-2.999.15/logo.eps:2756:%1pT0QW8Q2taCjA*h7l]XBJIr`eoB(g>*u)0[FlWi'ndK1*!$GOngsp3;KeO:nF!,"$jH[PPK*4%>$d`&9iTb5RR7>rHOPUh,Tqsh
munin-2.999.15/logo.eps-2757-%#Rn7Y+>i,Do7ULrG&oEtN"qgj*[-W"T&7E((R^`L9P*tYTBuR=T-=.;m.P)iJ".c?f/`=<:a2\k@.X*uKn()[p&M8q#[>*gob0\b
##############################################
munin-2.999.15/logo.eps-2766-%b?RU9>YPrA;l0%+NVmHCVLN9"P6XeuVkFU0D?Z:gArEB]Qt8:YnsGRdahrF.c,r1a$V-s?60L`=mEJfQ0tJ-<7&"\N5mgBJ?!k&V
munin-2.999.15/logo.eps:2767:%]dO#ER("-d&Xj(`&HcKoX075r^M!)j6[Um$0/4A7O=KH:,mB^Z"e%<a,ii1VdROEUjTM_=1b`ZJMn6RB:@#OW_AElaGQ@4[=e<U*
munin-2.999.15/logo.eps-2768-%GU5U_T-5rAks*3QA#o3\5o^_[!VRT)K<%>,$LMX;7#s9=%'u91XCmKFA5h@R"\pD^QXun<N+^6J`\YDas2gm0;;(Fd"JlR.0>"3)
##############################################
munin-2.999.15/logo.eps-2776-%hE-*L,dmE_j0)?^TFQ@gT:*9m>M'[G7NN,j&HNQO;P%!qp/k-o!Y*NQfs8cF2P^[RZN?\U/E5bh]F#T9L.KfI,p$KG5`e<Z+,p4V
munin-2.999.15/logo.eps:2777:%l8lu0)IP]*fgTP`&kjFr0LMKN$Pu(f#SYE;"qo6m%<m=qKN&Fp.a0S!A[8[1/<-*a*W7oVWs/u8mfXTNl;>CKe/'ekO\1KMb.-8`
munin-2.999.15/logo.eps-2778-%@!)WbF<<6)Uf=F.';R(%jCeN*7%c-EHaeupGBH+[IfO'f(q%<2U?Zbd<%fok&[_\f+LT#7$8.b%":\;'XX+:f@4Er=1-,rElE(Cq
munin-2.999.15/logo.eps-2779-%%9<A.Wc^[/ck@)I#s2,ZS3>Z&.\sM('j,DiI'l0$-,K^Mj^L]4"ifWHLp*BRg',4eF9]_%7XToCF#Lp[#[8Z-\?JBRg4;1k`)e$8
munin-2.999.15/logo.eps:2780:%]OX9/8.A+2=J@<*P`mO@^;A_,'H$>iK@t[]97-ms)Ff%#7E7=18rp.j=;B#``)dKXSBE.o!j7rqgVgjNgM".;=%Hf/IYk7iqTjhs
munin-2.999.15/logo.eps-2781-%iG7BGp#m;&3'1/o[=YG!j@46n5SM70da0jZZrC5'CV[Ej"hL^sd:"OVE\T(\/S>s#8VaEjFmFf.`RY#-F\5;C%=jIRd1m=C?,;]q
munin-2.999.15/logo.eps-2782-%Lopd.[qM)k$BFLEG+K1LF8\iHef),O7<Q%VM6:Mso6J:+WhkS2fap&DW;PbC#TFoR@nmDbKoAD:6'&6m%W&$,lOc$?))3("KEZ-$
munin-2.999.15/logo.eps:2783:%g6r8"X^=&O6$,@o2NWt*$Z6M[G+0>Y`)m5I0G_lO5irk"M_5j@D]Qj?$O;nJ`;LH"$eF1!blVImpQb=OAP:(e4-Tp'-)"s=ffC[]
munin-2.999.15/logo.eps-2784-%O<)Vu=Z>Ihb#Tq]PTFDPhbRM1Lq++79M:VPfFG/G"3SVdbShME69#+$'J<3?69#YS!uoBP:-9Ro(1c;VgEk!3:[(aZb!pU;B)JA5
##############################################
munin-2.999.15/logo.eps-2796-%e_'u2R8uEa^KY(M7@J(fet[X1E[%<j0=$BJ-OVgDkr4eSC?^r0^#8$/g.h^_)5%28HbM3Gmc"5Vp$lJ.^B#2sZl:7?<k)f3bV$OX
munin-2.999.15/logo.eps:2797:%=;qTW6"_:Yh-g0^9<MI^In"pR%4#$hYb]'"oR0;86S:*l/f)R`S3WPhTW>q/AR"&uCG:k5b(AH>>[If;#p<*O@$Rm%q`Xi;0VfeG
munin-2.999.15/logo.eps:2798:%2L>c99V;TPX`bP"VDk9`];cD$!K49d`_inZ[b49o(0JrnkmnZ=CbYrX$)m=G;&<ib/g2e"`P+OibSKDGh9=c_YKr<^'*;BDTno3C
munin-2.999.15/logo.eps-2799-%jDZ;W)[\>A$Z9S)O"2oHZ`q_L/6:KU\LsgOR%aW7)=1"VJXB>(D'PJ.:oD.pHj"NqeL2ihjU*X[KUN_L]c&SdCQLB.r!MG3cRN!=
##############################################
munin-2.999.15/logo.eps-2813-%-@D)'oa=Ar"KOV;rLTrM9%-bXdEA?!RfH!1"06t]2NVb[VV$686(ho2k05=Q6@_Mci4PJ$.7W#^!-LZ42I/Re1\"n7Sk<TT))=mi
munin-2.999.15/logo.eps:2814:%/Z,`khI`HX"r;$m5YReo"18S;Q4q(_-G:R7(Ga$.qC9!qgY*is2j+M!-(@LciA-.U:"p4fM4;^trh/=Y!_Uh;Te`mJn8%TA@RQ1$
munin-2.999.15/logo.eps-2815-%*0VCq.!Q;hkU<5d;DpJY!ZM:FPQJp;3=?i2L?N^Ig%'jr(i$)ngb!K9RV^Ug:fN1PJkU9P2e;&aE=?HM3F2b=&_+6%%8uZqfb4+Q
##############################################
munin-2.999.15/logo.eps-2820-%jYf5PDt-iC18Aj4YHj:$OLl_Z]/BT4^0g<7UnSfoaotOt*g8EN:0_G:$VX3(U5UQ?5V;ctQQJ&3kLR]j]tW:"*8=ttYKsmTRo6R+
munin-2.999.15/logo.eps:2821:%-19Wp)(5`IR.B;[^11ZG2dR]P+N=1pe`39;q`sENRCXBi`KDK%K-;0LW\&Rp#mXLHSH$i/?g_tFe1][Kf)'Gji;a`lF`+Y.GdI=6
munin-2.999.15/logo.eps-2822-%Rr+\-g"oplRtP>"=K(6]/@;bn!CPTe3Ok&+B!@dZIi&aZApXl&r_-OCA")/LE&31lh&Se`%@#Q4oqa@A%tJq3.*Ts>&JcE8/o\Zq
##############################################
munin-2.999.15/logo.eps-2830-%X43`?p<,a@(Ot+aCufG]AE`g\9Fd3^&I^!\#SC53HiP^g/4ZSqXqo*W%V@at78,+0>slhZ'KCTW!]s#1L"od_^?`pK9k5JaI;tGH
munin-2.999.15/logo.eps:2831:%:YlE0`PMkBZWAh-l4&)q*G=IJc7X8OXsa@+,j8)6;U0:0et)V)Of^F9muBX8!>7/>#&XaA@$^LBa#M?jLoi_Y^p/.#9)_`oFsOro
munin-2.999.15/logo.eps-2832-%BOg%."8`[9PZhr+PW@[cTY>9?ZsE$`bCbd>>Qj9k67k5P!F;u$$'qk,#9_TCO:KX/NaU/f"(3hrk=Jek_[%+SDH_W@d?ECT9VAZW
##############################################
munin-2.999.15/logo.eps-2857-%GTDR<i.d-++Y#c1F<jN"+V;^poG`F]cn*I]AIu7J^of]k$j+:XjJ8i:6WA#(8"af,-k!#3Mf=IZ/?3&7%T0,(,UH<%M*iDiLs_P+
munin-2.999.15/logo.eps:2858:%"O7`l>fRruCm%n[M*^Y&eohH'@46F1$j+Jl9;^2EQTu5ciXkn`S8d)"#b3E07lh-rZT>"U6W@HVS>qT:+;f`b3t?g,cBAkNJJ]LA
munin-2.999.15/logo.eps-2859-%<K0?W[ZIgk3<\B-%m>iL^d(CC%P4?+'4nm7('2Ds34iG4e3)>o.saT]@hAu!9"0IBi6eTNj:G-iU%kj&&LMZV$F:!tJX;Y1`Zf5p
##############################################
munin-2.999.15/logo.eps-2864-%ZdcU.P02=+Xe+R0AQ&pd,EW-FW1^p@;&Lc#7eC-:e>_35la-\<!:p$hI('/M)L-V\9Q_W$@53kTD4f1_mH6_r>trPTmJ4>gM$usd
munin-2.999.15/logo.eps:2865:%B<Y2t@BTJ2fVkY^U6bd9=rA+@PPO9#+Gm'`D3A2ZTSCIhf*::J8-]Olh$P]GM7/bY9#oc'"A&LV8+^Zq=jUJV;tFmR`jhZpe8sWd
munin-2.999.15/logo.eps-2866-%`XO:3?s4l[#%.4L-K.D;(2`RRg`4mN>;6\2^%O]or%7Eo!\ARZ]M*La0X.ugL6(QP[a4>e>trSUm29E8Zpm3S4]W&#=XMmFb-mto
##############################################
munin-2.999.15/logo.eps-2873-%YUAJ]//]d^+Nat3&ffOiF2K3d'7Et`:I&KT:81nt1,$pDqHikr94+.'ri/YC[uFo&VG6Nf.HqCs"Z>.q&q;>3n"aVF*m!K?THBML
munin-2.999.15/logo.eps:2874:%J`G$%lH%>o'W=K45%0>s&<5_Fc1QI:R;-&+[F>m9fnY2i"A%`YW+L;3(4`JCZsGK!ck_'FqBMtl,`+Z<>43a$OCO^:]8/kj.INGN
munin-2.999.15/logo.eps-2875-%L9RU(H8__.P/RqZ_:("O0YPV+H$jk%*"SObW3R_.Wd31$']hqp.W]XYFs)i\10Re]!@->jA6oBI#=EPbU__C>M.1dE<,ArST_Prt
munin-2.999.15/logo.eps:2876:%PjOoorZmI`MM<I/@g.KajDg$d.9q-:;`Qk'+&3dG,HQ?X!WRg8/mtV+(+#60Jm`*ia8$fX[0Kp=nV'`^9WsV*G;+=un-Mp_2cPeV
munin-2.999.15/logo.eps:2877:%d#./<_P+3p;$R'53,EqL2ZPPn`4-Yc(BHKu/a*QG4:S'^;5;[gFNuXB$:t5fE'>m_BUk9a'oJnl&r`UB+QC=T@9*"O$;g\Y>fXTp
munin-2.999.15/logo.eps-2878-%CSbi$oZCOu_dWo2(i<[8*6\2P*VQtqF&[!DVS@]Tf^lsKZ%lTkA18*]l@$L8]#6iJR,t)&P;mRP8tH$T(]2]J3RN<IlD0MaY&=]u
##############################################
munin-2.999.15/logo.eps-2881-%aj#"d%q,JmUS8J3J/O49+AklG_BZEC9+rXnf!E9#L5=)R)>IgUlbeRUcW0R2YNA&@a\OE5^MGFrCTopNZg&-er9^L:(nP2W4KV6#
munin-2.999.15/logo.eps:2882:%a`[`tD'uRBG(R)<-eJFFF@bY^SR;nEYPd3LI!l`M+#GcUNdX/J^G%I:e#tU9_lt8$7HX&i!KLr/Ad/8`+/FPOM(NV2_Xq*<!^)St
munin-2.999.15/logo.eps-2883-%Uo)@tTcrWfSZ'YTER3c\(-q@lS'K4h@Y6;7$nq[a,hf=.GhaM-QtU&e[KEOp+jFHC<c&(m<L"jAchq&#);o;@>'dM2i$j4HL6_T$
##############################################
munin-2.999.15/logo.eps-2890-%//DCUU((qL82])%MXM=#>_-d(7kdP'qumeGJqn4.nXgZ\hgfH6CDc6IPl@pgbRgnR=+bVt0TsE.&%6XM.B$XZR"Nlp$P]Rn-4;1A
munin-2.999.15/logo.eps:2891:%oPO8/1rr-VQ4&L7k2$[eSS;*C)V@X`SJC:?V?eh?%R1Ta4'!ahX0$=+,l\=u(>c-C=Ar<_&2;`g3.7oWY3ppk'#AO\+4,PJ&T;2l
munin-2.999.15/logo.eps-2892-%g%*SY:EWJbJV!D"/X7Yl_hF"0Z"!HK']?o.i1s<.YlM_`\H^Q/a`CXmob>bBUFJR1+/Q%GU2.a1(=`!<kk/YuO0Z'>PYKnfJ$SGd
##############################################
munin-2.999.15/logo.eps-2901-%MaQ;fZE:N4(1i@\&qJMCPW29c<<m>^AV;fF6=;6k+BDV&L*C>X_M0@WEYrI4e^>%!7)X+r+^Npqdp+V[Ti105:Le/C)[drHG>cja
munin-2.999.15/logo.eps:2902:%7=n^b()9:/R3l<Vdr\W<>4Rs`*;E>@<h9J4'\bE,*e90J"3LVj(cJg>bXqU\<b_t>=B0W$<coT2i7KrB0QQq#W/M._/#<`un']%8
munin-2.999.15/logo.eps:2903:%KRpP2\7A2ZN/V-[>d+2DB6(&/e%`X2L.3j):/lg<$S5J`f#8A+4)'X'HeCj:W3p1t&MNj#BUUmt1h!p.*PIo84!E'sR6-s%g;'9C
munin-2.999.15/logo.eps-2904-%)RS^!-f[\@oc)uNVNc1>Ta[F<@Z3U>O;Fs]aSThIdX/`;<R)\;?"k_CF&#KC)5+!F:sHS>kCBt'IL/(FL'lm"Sf$%%&@Enu]W"=E
##############################################
munin-2.999.15/logo.eps-2912-%pI<A6R&-1o(3k(8S%/W/Gian'1VVRJ$CPM%&0WT%6,<!bl&sA6&\C.AZ*R^[G%MC+MYD`/\UY+PSF%ch]L(`=APMA?Wtu*W?h"l7
munin-2.999.15/logo.eps:2913:%1EYBr_f$)kN:lraptuXMUJtmW?F+2AVM=B<blWKQ)]Rc`0(X8e%!;hKMpu\BC(5ml0!4W(:*k6(C8_Wjo)#o4M#$/YMn/7iL[`Pn
munin-2.999.15/logo.eps:2914:%qku__b"+sELc`IL$P4C-jWV+K^#EM\Lq1:M,Kir]$<@\Xa]-j`T"ujG%YgIP<[@f1M&_on4(-u?.D?ZMDXFi9!HL@C^nTllUAJBj
munin-2.999.15/logo.eps-2915-%rHk]KdQS9n9O!NhJFgusb6*s`hd@a1&qR2**>kDZ$1EN1/aChIl4h*1\VT<]!&?<&i<<okZOm-^;hf!q#fcYU)[=@LfnUgo0*'Gr
munin-2.999.15/logo.eps:2916:%E\[:\$5`ZL(KL\$C3_4.ko.+JY*kYeckfaYKko%D6G^oi-_.E*Y`>'gd5a)g,M7=nn?E`h!H!t-Ths;oZo!nn+lFWuDg*`#_qF*&
munin-2.999.15/logo.eps-2917-%O63Eg#"rt.679ne:eK5)2+X/`/;Rr,3ahI=Si[Ki<V0r>lnqC>4tpS3!hSTi"Zbk8la"]56qSUhYd(jsi/$eFnZ$_0&Y/r9*Cj=3
##############################################
munin-2.999.15/logo.eps-2919-%!!=cCl";SSZ0HM9.$9,VWXX;F#V+riSKYrQJ5Ifn@dRY0Ac\WU=YPF:ITY$KguSOCH;^4teG\_Wb(%/d.)B7=nRHgl4WG&_0An6R
munin-2.999.15/logo.eps:2920:%)a@7p1BK"5%"RC@7j,E`Y]A`pTBGfbERB@XSfX\pF.+QQJ:$c486`rmoseNi6\"6[8B%Ml7QGuc%cGUjbfO!(RTC'm?oUeLBW?MT
munin-2.999.15/logo.eps-2921-%ag@-r5hZ)1Y,%t9,V)ajMZNJ94pTc_EaCYUFam>3q:Lqt,n(6B%rL:<`/HeW#QQolmW4kZn6njY1R&LYmji^uc$K;7V5Zr^qkuXc
##############################################
munin-2.999.15/logo.eps-2924-%'BGs\&/;'UFtC5dpW]9R'_)]&A0(kX8XGN[6NG1I8]nJg2-e&@&^dOgUHQj=6>r#p=HiFQS]0phj@OefTeJbB?*`HD`[E30Y^dt:
munin-2.999.15/logo.eps:2925:%Z@jYu2.WcM_jReP#j0\(!i>%U3%oRk`P$e2(t#$[:0!^MZ=7TCU_b^dAUmPNBG4'98=HsI"IRk-"X@f*e`F/E8,dF(:$O>G>*e?K
munin-2.999.15/logo.eps-2926-%Z-5ma*6CGaIO^Y\bRR*MjMD&_Pf4bF\6"H//K06,:6k<l(,q0#njQaY(7&YElE_^,#n9m+!qriDQ7TaF)"LDd2H94[0^2)n9L*aj
munin-2.999.15/logo.eps-2927-%VT@%V4LmjBl7U856)L'Ai">aSVH+qlbBDoEQK0$Um%\`SZ?rI3b!B:9m>OK8Lql9Xm#C52,N.:XaN!;>.8TaJcmo\5FJi`-:.(#1
munin-2.999.15/logo.eps:2928:%3_3nb*!A6U8\UK`idt-9B'M2Z*K3C.j`0T3V%(U78Kb(c;ULq[!Hael@"e]DK%B5;7_U;ZeIE945n/fS$c`Dr?or0?A,kV83I'"O
munin-2.999.15/logo.eps-2929-%4Zrj90-P.3'%U!U!c':BaI1RIE=L'i"EC6_<XZMRYE%*pF3XXdU:kZqa=r(U">6tR%J$O)(Z3!NR9?`Po9!W[E5\&E>>b7Y1GU`j
##############################################
munin-2.999.15/logo.eps-2937-%6DJ2h'[@jk(nDl^pm9aqZPVq:$spflUYo:;l;2GIW#)k3m9iAm(J_^lL_NkSkL,B"@a?WuRO6?N[8h3T[RP*CTdpN7FG:T>^+^MK
munin-2.999.15/logo.eps:2938:%b*M/`;1jCL=DGiMM\XPPa:H@!2"-)8^eCXE8_Q_$,5I60TIm.4&jDimc@b$lr_0R@&dBL,,S`JjTL>)G@AMRKO`"J;Qmlh3X$VT*
munin-2.999.15/logo.eps:2939:%)QMX$3#4C=6Dl1(Q>#MJFF:;]PC:%GY(MI=N>fhLAPZb%!I7u]nDM`?";Fr$9P-NkZ@\)MQs0f:&^KfsC!db;c%`%6B\>0sDZT[T
munin-2.999.15/logo.eps-2940-%?HUH:b'/W,<MO:D#+bB:L3r,,MAS.Ud2[\TEm`"'q!++R^qOhE0J<Zc^h62l^K.cQr*Vg*b[p17#[tY,CKW.]@-Nt9kjPE*,g[*l
munin-2.999.15/logo.eps:2941:%,rD8%^Tup,*bSW,7LT+WL;EI44%W*^:h@ld?:`ic!7WK6Y[ZCeOb9$PNlm`JQGUmK]Ta@uM&T+pOi>3UO,FUf!R"=?P_2:Y9b.>/
munin-2.999.15/logo.eps:2942:%$\<O-;tN=0%Prb=GUrIF.U`rMQ;=>1Z\D%`P4PIOAn+_`O\E&L1S);]*i-`S$%cBI"#6HjNn,`]k98OPZ<0(oIp&q0"#NA@`fOB8
munin-2.999.15/logo.eps-2943-%Yl?K)%'#K=JKrA=OrJ$_VdcrVA2)$r%Jo>-JcLD6=C8mmVfW=4o+A3DR][]i,hs@/dr5Opbc*3c6(UDTKu?K\nYjC9O5*5HBB(c`
##############################################
munin-2.999.15/logo.eps-2945-%Go3U"%C9li1s<+\'=QTIEd_%DDJ0oF0On)!poA!UW$,sa%^fcH0di>[#@>=T4='D*],RPEf(%.m^r6q["GW#Om)UrQeTstUSQ/]'
munin-2.999.15/logo.eps:2946:%/,ba.i;d'^n`Y6Xb=1DnV+-IW2&jXi*Scj<ck]"cM0smg[@Fa>ZlH<4)SrrB]GFt>0gu#]%[+?:$?JEkV((T;=FkWHC`uM?^-I^m
munin-2.999.15/logo.eps-2947-%80[?JY_!5(KkJ1inI?^fOltDI&PLjt<Y*Z18h*S2#IIO?0bseP,nO!@oD-69QsbV3"n;]>:4UU'%3mQ9NgBi.1=d?%Ubmr-b-Qst
##############################################
munin-2.999.15/logo.eps-2963-%ME:G"Jp<S*>f3@=/0pJ<e9b-62Lp\g8&GB^WgH5.*2lPSBGNN!&=_]WW2);`^?WF,?'5k$c6l3g8qb:m+nseZ9o4H:U05'g<S4Ol
munin-2.999.15/logo.eps:2964:%7acB;VGslNRGCq#Yc!L=mOF#J*@c,&(&JArlMU1/)`#'^_jBjTBQXYnGXkYQW65SW3H<L4i3A$We+6"+`LJ_O3^o035oTek/7hGo
munin-2.999.15/logo.eps-2965-%8tBK34H=(^*C9&ohB/c<5l$(f7NLe=7YhGSTVJ-L(UJ5k3/cj4fuHuEjDAIpPr+$4-[ik)i,1jeqZO=d$rhqFI.RGrrh-\hb]U(m
##############################################
munin-2.999.15/logo.eps-2989-%1G=*GO\Y&-"cE=^X<Zj48L$.S8A.i:aVJKFB&/LG_qVPBfXa(DX<?Sd'^2r^COf9X"Q+2!YXq7Q8uU+S`7pf0W7uVo[=W'BM3C`/
munin-2.999.15/logo.eps:2990:%hJ2`l"!LB%`Y$eS6e.21"-ZHB;`)3F+=!)'m_`uIP@!P3&)BgnTqAA;]iDaJre-tqD3D(.(d,a>V[b(p^e'Yd<Z_PQoe&7SD(/lk
munin-2.999.15/logo.eps-2991-%Ot":1XG!60mj:sheSQ3Y9Pq(k1AE,t<=C[/&U^"V.OoCF,YmKifi4[b&foORI"@S7S?Dqs[IXju9Z<[m)9A9W<&/i6oKl9-=2[d\
##############################################
munin-2.999.15/logo.eps-2994-%)oD"J<SM9V*jdCT\3>]A4;]Tg3<[gZTa#W+l0LB-`LD+S@X(eNp]XY'kQ/tlCt&\BPa-io\:SiUTI;q;V'"3WD(\7n5Bn6IJ79i=
munin-2.999.15/logo.eps:2995:%HC+FO>=YS3B`Nb!X!+GgW`*K%8(n@O<+B!<N>Z/8@(`$2X)-ra]sS0Sn?E3X`U9jgaN$_I6NOI"7gC4>K2WIX[V<Xh=*T>>8Ca7(
munin-2.999.15/logo.eps-2996-%'CEugg6W55k7IkjV9*q%G-DI?![Yh+AF)3<""2Xf_?[+)[q`4UA&:ir+EO)ikr,acO9'g5*Ore]m\Mi")3m-Q`3B@G&LBrE^o7?$
##############################################
munin-2.999.15/logo.eps-3002-%YSGAD#V'5hUl;cOl5)EQQibD)<g;3i!R1PN_h['-e6,(5ULC0fDXbI6iNo)9@EuUVUhLEsfH:6U<Jti>%)>C3_NK1kWn]=)om%WE
munin-2.999.15/logo.eps:3003:%HY#qQY1DUgRC#S?ed7)_+)2RkN>A*L75QM0C`44p`$>if>1rM.a76R_CC#SVMNHcDG/t>[?kl0;OM*l%D?O`i-]KZ+J]LA27>k%i
munin-2.999.15/logo.eps-3004-%=plm=g4S<3%3bTWrmMoj&9]aV%)!(L!l;A$$'(IIU9l=8l(Sf\*#fV=1#VT*kS2dhAHM?--]j6@b-=_Lr,%_4Q9%h[iPUPn4>`sA
munin-2.999.15/logo.eps-3005-%)&HW0H:fmI!jcN>QiYAS+G!!L<e,KGZInYdJ=``2L`e*LSB#7-*@_&WOZGA/9cA2!np&9cbZE)QH61Cc'=20H.*I!*/b!At66%#G
munin-2.999.15/logo.eps:3006:%Qt,&FK2l)bs5>`&%q@lu#'%XZVYPsF+4t10"oSLfN4&7&\:>7,3="bO!<+72H+"_tH>&s;.n;,a]DrdqFU$=uT$Jn.%n26N;h`gJ
munin-2.999.15/logo.eps-3007-%/EY6>s,&aF*uJtkLf<'@I!O@2,j&c+,dE-0N_Pf`XD#SKZ%41l5X]gFLDk"[S98bgj19#(1P"8:(2$s,;A[Zsg/tSX3(Q%0kDTr\
munin-2.999.15/logo.eps:3008:%WmtO0fT:"\R#EpR`4ThN&SpoPHVhnM0eaC@$r:uR(p!$8%MMWUC8IlQI?.d&2OK(6+:'`UTZdRB,+6^df7Cgjkp2X,bpU=9&sh4q
munin-2.999.15/logo.eps-3009-%cE/4$aVLsMVburK(%Y"[e<saX3fm`KeWO)1EV)[dDFMDNq[BfMkk!1Cf.^gFQ-8!M3C!R!kH2QAT9,El.ZAt4.9iR+RH)BcEs"Lm
##############################################
munin-2.999.15/logo.eps-3014-%5djLAM%8!7Li%Z7l:)JB(s/)/6"9G+[)rJ?b(/RXVlM`X0kX7DW^t*8<eZ<S0NnI3XR:BU_-J<ae1M%J36e3a\@9^D1PXe9dGT?S
munin-2.999.15/logo.eps:3015:%(k0`H"[c1FP+baU>AaLZY@_-S@0dXpEj.*&`gZAm?j"2-9`Fnl]-tYj>cTh@6kt8B+Yd&s*gm^*P/p%O',P:`Z%s$*li95ECo7j`
munin-2.999.15/logo.eps:3016:%6W03Z\?I\\(=pc!ZPYJ8Ju_>BEaTO*U`?r<R\iL[[$4Ui#:@D53C?'#JkZV,BQ^PXZG5O*`NUmo#n2+';(V2e<7tFSW+C<@X9B&u
munin-2.999.15/logo.eps-3017-%DGh$plVoo<6Nn/U=[H.U53oMR".b]E']>jZ(gGuO7\_s<):#XOX+sf3[NP^BK>oIT:d`4t9FT,H4c`%,-4uOY$jr/,D;ThX%4_pA
##############################################
munin-2.999.15/logo.eps-3022-%*kA*"695:^<:J`h/(Ls&d_2<*&i'^Rjn1U2E`qKAh:-dt1eHuA9;sb-ahYW!+tt1nZa<>"IQ4YU`ftYa"%U;59jc'5[]TBbbB3RQ
munin-2.999.15/logo.eps:3023:%RDe1#=-STF[5QeA=\>1G"O<Cka=_r4<a'f'Tbo0Sl:FF6X`>!d5+s00Y:8V4Mm$/j-(_YFb8EkHO,-@8bb)u,ZJ3F<<lnP`NOQF#
munin-2.999.15/logo.eps:3024:%j0qVq7QqPQ^@<*nhX%[#7X@%+C/+)g"HT,pY4;9*-g]i?8Io`XNSDVmq$2bRG!`RCjr[iadF>574ZGX[P1)FVoZ"FE4m9kk'8XNu
munin-2.999.15/logo.eps-3025-%dE95Wn/V5-r9g2;]lP@Z]R07)Z0M<C0a7?tGA._W:klQB&(W])cX6W:Uh/P$rs]WKQfai8<aa%1&l67-Y4l!^Wac"C?TiGYgkImK
##############################################
munin-2.999.15/logo.eps-3048-%&8RXsM$`9^@L9Cb0qaA]RZT=J;f<3%dn%QI"fm!P@_Jc(*b[:NjK-"U\Xj&[;G"hip;.uq0P4naA!m=tQZ$%b$F!kFpL.nu+o3o:
munin-2.999.15/logo.eps:3049:%bq\GqNB&,'[`PP#YcSlYL`'H$@X(G3.7J23p?e-L21M8#\@fk+'g4!-UVPQkJ&!k`4qj23r*%&X'G;km[2@7l9M[)6=HUl=MBKsb
munin-2.999.15/logo.eps-3050-%"r@GN6b9'l47rpbW,tq,V$\l_!p5ABQW<N.??WO\]l.^`M^*QX=ZKGQ-4;I!G$#Y:rnT],-235&CD:jfP>jTb^)/j6#DPlXY9Fo%
##############################################
munin-2.999.15/logo.eps-3054-%:9C3r77WOqU=ub9@o%&\9J0:$ku#Tm[e/J`AX#K&j2da.g8-eD\76-aYnX?q(@0Jd3^IMCfSL0h,fufQK41%,h%UdW'VIen7]Z]/
munin-2.999.15/logo.eps:3055:%#)O:`V*t^diK,u*P8c$&<`9B#lkCopo[(fQijeAAn!^`O;%+53keuX0iZV1#(ub8<UiD%qTi!Enl:&'$AYo(0hILFk%^]pqo_nTQ
munin-2.999.15/logo.eps-3056-%g?)DXgrVL[@#\?5i50duV5U%HAi0V=$cgI<Y]:I.5_V=:%5gqu,<H9ga@iEX<K`(C/V=@>')U=%$oQnr7Rg+?c#U[!V.s=R4dGW9
##############################################
munin-2.999.15/logo.eps-3059-%[/5A19Bp^f#@PaJI;-&%ZN)8qA_dmt[X<SBZ$Uju1TROBE't9f"XeV-j0+1LO8)hGCC(]m=G]iVJnU?i[3q5HXUDq1.o<l-%[Qrl
munin-2.999.15/logo.eps:3060:%<Ad]kc/_`EE(t298A7!h=+tmkhIi$a5<+"sluK=h?Bh^$f3o5`ik]f/XtH.?S/C[\9rI&q.V6XEhQ5[$lN[%!g";cQ2/dk,9S"HX
munin-2.999.15/logo.eps-3061-%ZD:GSUq6%uE:Tcqf28MQa?$M8V3HI,Lc[".;R3BaIc:@>U`#eLUEVp);JEC()$P#N.>*_6fp7$:Fs.+^[]u_gqqZA<-TTDbAi-FM
##############################################
munin-2.999.15/logo.eps-3067-%3CCj\m0JcB+"u4CW4Yb5Y07"(^T[fU!fiM5(3*Y\%mlpGXd\E\JkqtkI_m7/UN]QJ#L4H[(.,?peRmH2HC6+&UAL!fa.WqsJt+85
munin-2.999.15/logo.eps:3068:%X4Z>P<*BTFW3iiooBD^14$gBH7r+G3KA3se<se[3l21PhGpQN81$CGD1./-r&\`J'&"IA<)Y6a"9%AYAF;aL?Uckse<'DJ`EB$f`
munin-2.999.15/logo.eps-3069-%H3U?,T\<9f@FR?OC9MB>"Ep\0\I\kWqL>PNSkuP"(L\\*7BHn,_71I'X6h9-.>qtG%k$2/,h@mlA?<]8.Bb*kT,k(FoD'#=N3Etl
##############################################
munin-2.999.15/logo.eps-3071-%=ef+h3XO4'W]D8>W*Q-IX79BCLtKeE(`3jbV'B]kANX>=fhCC-HY*K<::7JV'c$ob/'2I)Src,n#H+hVQ(%1qNaraP..^$sqYD3>
munin-2.999.15/logo.eps:3072:%+-qKm6@PUZ<\_Ze#Bd'N/I"k?`S]XMQou]F,GEIYO>+Ne8JR').1.elI9[-U$$,)d45>WBCRs$C,ja",34W!VAqIg"mU`jMTf#ql
munin-2.999.15/logo.eps-3073-%4K/#([+s_t-EB1*N,l/O&=$45A<7Yc$WDk_BOgB379*UU;HD8i;@<V8KQ443oWif2Xh$\S_VP>1h4ZIrags##JL$bkl)kSQJi5b)
##############################################
munin-2.999.15/logo.eps-3077-%cXJn('#?tnk\DVa.pNN+((pclAKWDbie[QD4".e:3,!A+_&S[S/&@kk",BQ,-)0N\/R!^_(p^kARod_eNK$p/iBaQ'(9e>s]@=g!
munin-2.999.15/logo.eps:3078:%MP6W/Fc`CaC()]E[2nqaFKke9>t=WYU=a.P#,pC1<+iIJC*+6)1>Q$8g$;4!-j_Fb>=_IEJs/keghs&;Ti+`^in9LX*=bUc2E!'8
munin-2.999.15/logo.eps-3079-%%B75]:9f=9=h5:sNN57(Kd>O\UtUB'2NP$GV(X&9kGEg*Ng>6JFs[3'CR"ftNd]FT-8h0Oa2t2&m0YP^8+fGe=h-O_-^g.*<]SKg
munin-2.999.15/logo.eps-3080-%E.U0,)B]:Lkff\lMd%%EnZmd1ki>N>#Y/?7<<qri.[EknC)X#hi)kob#YR]:egV6W?X`Dl<Qj5F&SbdMW7P&bb*`mMU4OMjZ7()H
munin-2.999.15/logo.eps:3081:%1-`?4pe4LYUPJq77U]$1S?"(h7e9-TU'b'^@q\!MPVF*P/Z4^F:+29/cLr/5eK@FhnKq7@0En#XKKPW%\*k`P*R!Q<]\Ib$3b(aO
munin-2.999.15/logo.eps-3082-%"#=!dRj<-XB=D,@=._rF5bpuu,a_*`![TS0OMKubQGGOG13NLi"1W7uG)..]Z$^r&&Z8Kb.PubsMjet'CuI!QeruU.V*[e<S5i#?
munin-2.999.15/logo.eps:3083:%e=]@^/GA2`?G(Tu&'`IO*aoI]fV8?9TqX1D(_8&$0BL`iCR3kOHI*tdE-kg4h4[Na`[=EYWgD#1F2<3Us(Z1D5mn06ECUC[8(>&f
munin-2.999.15/logo.eps-3084-%FVdr+"h.ZY7Yk%m#,PiMF"E8aW77DoPacg(=^A;q%Lnl*1j'!=qjb\=i*ZpDcIRj4?o$7e7&;l=9]?Q</FR,[@TT0'^(FN`P;5D/
##############################################
munin-2.999.15/logo.eps-3104-%qL#SZKA0/oADL*Q618)K5-C+3`_U.[o/_OAJ9+4(K]"+W$qfg\0t+:OmEec9rM!%Mj1:i!3JPH"SZg290N]ld)3L=0hJ)aP.R91p
munin-2.999.15/logo.eps:3105:%$9PYUCDA0K`pjgJqRY+$aC]`$S\5>;&IqUaCY'h_`$2Qn@E%[#9]U`eoc-RmMh`u/#_\\$a#1!OHBR47E0A46>;2=%ZsXX^HaBcj
munin-2.999.15/logo.eps:3106:%X2Gk(O?*m%W_bs>_jE*1.DWkjj5SGi]/ks.M3-%P%i,n]-MV=s`>_=3o?LTZAnj'V0S$=WmAc=$qip2?b`e"?[>NMD6)L5F]S_pu
munin-2.999.15/logo.eps-3107-%b*bOa+fO)b/s8r+%Cs?.E0-2Za(`XDG%i^&WcaiqlJRE"_8rB@WI!$\fWOGmo->(p9&$0+5c1-sP09:[VeGW1b-kk2@X,ZYTs#E^
##############################################
munin-2.999.15/logo.eps-3116-%0l$E=c&`TR+$p."Y9c^X^,)$$1E8EcBTk#UJpg-FYJm*AC,EoVV)t[ZQFZu91X8l#c\F!00+.sFnS2c?KCS:>bYo1k#(oK81XEqL
munin-2.999.15/logo.eps:3117:%K*jFBNLCbRK>rKn3gm*,p#eZ_"HQF]GcbW`6a3;"HFD?;MeQ``/Dt\<S3cEWM38kW$t<50*@D]?bCsk'$`]qs/I,@;=A>neE/P'"
munin-2.999.15/logo.eps-3118-%[im&sU<3f,Wi:$5\4ogd([#IqJ>@+J?EfL!k-U.XMa7LbB1QKcc&o6gCTG%U/VPl_7q642l#O5-Kf@Co#lkKM.$Lem+U-$90XGSg
##############################################
munin-2.999.15/logo.eps-3136-%18]&s;_XVFeFHt*,)([V.k0Zu6FI`E%P!g7fj`I4?-N5i"r^/q!9ho^>9(:R030*lZ90fn0Wc/%UkfRBHoan/#?McT;.!ZD_JFQ3
munin-2.999.15/logo.eps:3137:%'oD03I\Q0P`3$8$M:eokb!4ST>S]YTfgZhUH4_tb]";2M<DHoE77`46@C[*mYFD(k(5nC,J;L01fj0j.G9JLp*=t\UXW'&:48;06
munin-2.999.15/logo.eps-3138-%XB(E,kPB>M2#"e:YAUZO-O'TB58uR/'2l'=%M+!a'mcNacONsZfk)]"6uuZ>C$tX`*!o5aVIH47HR:C4q0J87=fmn0i[!"sE2jWq
munin-2.999.15/logo.eps-3139-%;M*msj`\mf>bF0l63uQV_i2ja_&XL5jr&c_.1Z,Hgl:Q(%c2i,1YS\GFY]pl3:Os0(_C6Xcp"C(E)Api(k6-6(`@t#1;Oe3$kZn$
munin-2.999.15/logo.eps:3140:%>SZNi2=uqMj<\>WZ"sLfol.?MNV-d`[C.4$?#;Z_S$g1:D@@qsfB\DU2jdXE583mB7,/UW[dNNLMm19g8]L.$`>U];Ym<4SYrHg:
munin-2.999.15/logo.eps-3141-%;364dmA)-:o*$V*'4u7Hfo4k@>KSf$>1(.'MrfO?4\i5ba>2H5B%mFD5,/]\k@q_m8#)0kCA_,+&=MY%/l*aW.lC^rVcpp47dS7\
##############################################
munin-2.999.15/logo.eps-3145-%l-WC/TL3AUOQ,iT`^t*7>=n6VV$g]Zs+lunKEa9nq<l)bFfnnjYu,c%[5FQ_9=>#(hMXL"cf,(?&W-0W3>oE3=RNH@&:2ZY(GgXq
munin-2.999.15/logo.eps:3146:%`9Lr?$IrNR[;)dbO`VpNJJ`$TZBR=T@\ac?1]Y7JA3Rj$auu;\3uS;K9rYu@O(<u6FoTl)4M_Z4Q[i<F/oMB'Y?A,.0TK2A_%\U3
munin-2.999.15/logo.eps-3147-%6**R66K9L.#[?M_Q>MLT,Fb/j:?<r8(j)O2JK-"hQ\&-"@#Tnc:7Wp#\QV65#pkK`PuU^E)?lQ#.Kg!$(Ih;p8$r?3=//,+U!WIo
##############################################
munin-2.999.15/logo.eps-3154-%.'(I_Em=9Z9M,&cZ-h"FSZjeuk6`!C9<ZKjA'bPKR`,/$!k"ai]@:45a"<.KPuUf)U'jh<:P64e@ZiSrRNBJdM.N+rFDtSAbtdK=
munin-2.999.15/logo.eps:3155:%P10r@4c"O%r.#]0&L>4r%g`i6$,f1)P=&HDp3NcU`A_iD&N"[J0aC48+?iS#!+_sU`RZ[Q78WUPnD]G>FM$^E1[Gnj%@4b`3$8KV
munin-2.999.15/logo.eps:3156:%hT2N+@gjTUJlmWdV'BEWj(Ua0.uf&b2=!%q").%#5[lj5RB`-`i/+sgO@mXj5J8HkS;Cihf<cZaJ`:\B-'9$W1<h7<[gIMS*f`go
munin-2.999.15/logo.eps-3157-%&Pjddj<U6%7j2R;Q9rbG*'c@(_+_GTHf;K:EZl*+CEQL^>dBaF7\4hnmS`X6#)\';2^f/E&trL&P,-UHo2,9TZLXSQlu8plk^@D8
##############################################
munin-2.999.15/logo.eps-3160-%'Z;B2X;1/B*<T9f`P/iG@N$l+&LZ)@(uJs"=uDVn-_B./(q\?q+Z,/,pp_O!a/+YAk0]ibW]\I];*:'!M7Pqi++FK/#,;Gt8"gl3
munin-2.999.15/logo.eps:3161:%Q9s&Tc(a=?C.gt1gHlo!(+Y2`6e45bSjWj:L8NP1C)&(W"a[$\8A#p`U.iq3.ub$=T8^NgK<)-u7Tp$N<JQ5q=2jaD#7CMXs2tQ.
munin-2.999.15/logo.eps-3162-%etU`m`gVu?/I[>ekoOAdSOmg,Vcj,6=GmBZ!<6;q9Xs@Qho(2'K4F"1[64q[:#@nsJ?rb391gsN*q]V%T4Xg4]K^5;<2Y&H]s2pG
munin-2.999.15/logo.eps-3163-%Y^nJk^hjpIQBkIUMck"%'OPQ.n<+mAV1`5q/oR>o5X#USSJi:=ZMt8g-66dF#X1R\Wu(u/HDXZtR`;)%R?sgFkZ`3";2i@+9K/FP
munin-2.999.15/logo.eps:3164:%GthD!"05/2]i[-b`RmUuVBh[MCR]($!-1rQU0U+iPX<g`Xb[ZhgHat-h2<FY%G.S=UFKnG'a/10fYs&+:e7PAbBBV]CVa.u38(oO
munin-2.999.15/logo.eps-3165-%HKLc"YaEtF7_r6q^d0q'V(%'qJOLNSC3K.j_+)>s-Z$Cgn89&[aZq&p(`]MEKgIUX-sMD]cO_Z*MLc.]Vk)%/hN[c"l;JBd)f^!6
##############################################
munin-2.999.15/logo.eps-3170-%0Al4Dn3_m=ITEnPUB3Eq():AuD^-0RA6pL_HTJ[Uj"+LFi:?],@+/YE#qG/?^38h6N8KO5Y-fjJ$\q]:rkZBKgL!FN:]aOnCrGq9
munin-2.999.15/logo.eps:3171:%W6uQM7K6nsW"C_G=L.:f\I`6Z]JV3^<b+oJd<C-6]/9#'Ql%;7)0a,sqs:7eW_q/?"VIOt6Wlj41$N\r#QV%`NKsZu"+eTC9sq--
munin-2.999.15/logo.eps-3172-%4'B5q<kmm=_3]_YOW?@3.S^c5?8[5B0?C7j[W-HhOq>RI`T-M`eTN92%G`/#0b.j2Q)+W6[s/W$/#lE?p9Y]^#W75<$/J^7&JW#6
##############################################
munin-2.999.15/logo.eps-3178-%==m)TM4ome!F<?pG9.Lq\8ggEeZ)gg_pW%#PkB&o'YFe&r!EW5Dg0W<"B9cW&L53E0SEatX6Z+OX$Xc+?B'c$oqhedgP9?^U\\ME
munin-2.999.15/logo.eps:3179:%_<s$`oDg$P$XkoQ'sCKP,1bLh?S/rcJjNX*S]k+P7"\u\_UphoFo&$&79qR]XahgV5n=*T*l,rU-R_!``#;G*"V__[Kcif`n2T>)
munin-2.999.15/logo.eps-3180-%TZN9F=iIDt)MhHTH9q5!!'H[%`:_@TC9p"Q8AdC]0p0tW[Kmm*IFSLE'6>(m&V>o*f.t)k-ejX)B>%sYG-4#0McXVOaQ!$`F/H&Q
##############################################
munin-2.999.15/logo.eps-3183-%1*KI'&Xg`uB@QX\!0D6,i;D)MX:._H1^"8tH!*K`8`hUi=h]/nGrjKr@H'WMMJ16%'^7e=#[rrnicW3"dARB8RKYCU%Le&`S'd'R
munin-2.999.15/logo.eps:3184:%+?-:i?$`au*WnZqa2bf?18]WE^op&u,QgA[4]!!233Y1aLHHt*'i*#23"BatT34$DW^L^l?u^h(;`+bl*MpS/3[_1JgTi0mA740D
munin-2.999.15/logo.eps-3185-%FZ_E10hIT>E4("0,dAQVK12=YA)8LT7_-F7KA8jFdpePtP%oeT$&u-@q2VNXKka*a\H&]Ikt@e613Am<&T_>LJL;dR$$2]"e;-Aq
##############################################
munin-2.999.15/logo.eps-3188-%nt'Oo?kVa-,b!VVKSKN$"_5al#ZNPb4@P_AnCj4Q*k6QOO"T1p/d>DrdFdR?erd3E[,*&^CD@&t37;.c^@.ZYMR%@oBQp6.$:k>m
munin-2.999.15/logo.eps:3189:%bV$PQIL,/A9E:H#HqDBmQVMi;oUALJ`=?XRY$I0!9fJI*Ps._@oAR,7[+`#23'GDA`"ia;F+l6bSMt^r$.]#.O4s#S%sS'IYD^0o
munin-2.999.15/logo.eps-3190-%m,MI)5Q0m0fdD!ImU(?frp[/,]+O!Lqra;)$h4K%EcZ;N]mmI@+$Q-:+$Y)ELk5dUB].eI1B6i>o3_KD(B&LpGJDu4a+$gqB=%6f
##############################################
munin-2.999.15/logo.eps-3205-%]O"3t%p+hh]]B9&habVhU+U2FU[Vo<J4oM.8):"_+0PhT@%.tST+A^/>&0`H7QKs9'ltje7(HP<Q#uP[7mHn"7j$VOr:9F<iUZ^)
munin-2.999.15/logo.eps:3206:%r9c5M^RIY60[!+irkmP^:EJpVDk?D]puIX"0.pR:Is1^.:.7D&rHp6mMtt+X19:!Rf0`?%]0&$6f!ui0k=$;r>CQ<B`u\?=3="\/
munin-2.999.15/logo.eps-3207-%-L7NN(+7WW-<:D?epYO'k-)F#[;WC'kVSu0LuOi!J6.jX'II2R<I2*<ZF@2M5-9\e@]SODg\/6jYW2G7U;aqRjEVr1JuJ^NfAFVX
##############################################
munin-2.999.15/logo.eps-3209-%'BJWa;,GXo0HQX.8?=Z5AGK9hE#j7U(][US7U0=<#J,Vd\gaZQ0YTDI"'3ZrMaKje?*"Rs(gr:A=r]Vq:._'ukPY!p[%;@R(k3$S
munin-2.999.15/logo.eps:3210:%=DtJMHDOcQ`agOl2@Xo3dlsCeYkX.afMhcD`%jajD^Ss[2dE!!"tBl5AsYhi]?DrN\$AAb?D>@#W">Kpr[-=,8Z"D^A)g`EcEj"Y
munin-2.999.15/logo.eps-3211-%]O`.[%`&[`l25`[YXhEL$p[W8F@Wd7^;uk*9Z'/a5<Ol+'%-8/<j]IB0Ud4=1BOP6qm?#1KjJc;/4GL"$,%mbC7['[QUWYYF;K+f
##############################################
munin-2.999.15/logo.eps-3213-%4i0WXD?#!2::=t[$;)AeZFMVSM30h=$t-"p"MPFL5Y5RD]:o;X!,YUq"sd'ELXSPoa;"b1f_`oD:(RI0S[FIbW#F?c$%@"-e67dW
munin-2.999.15/logo.eps:3214:%oLYZ%SZ:DWb3S`lp6MSNTuEqUc>d!VFMFcSPr4>LVd+$=@BHolrl@MGm0]s:--!l%VTc^P`9&S*O,/@p+R`GQSORf@8D)Ap'&g9_
munin-2.999.15/logo.eps-3215-%NX_\&Z3H(=Noj:[:c-O)3J(80K1h3+<l'I7Ejc6QJ,mT*8JsWXfi3dS/Cu-RNKc9b#%rmP'Lj#&-;),T*<koPG.?Gp<!"qF"i,iP
##############################################
munin-2.999.15/logo.eps-3252-%r=uQdaTogg\knRn6;?1r1jN6Fpre]hY'X<nBRY+Znb@n%LlpTJU@HOZn2C.eWd(4kQZKF9[RmB+R3]4r@_VUsT%Ktil\YNmo0LQj
munin-2.999.15/logo.eps:3253:%GhEUub_=8rht`s)o,W%$D/\:.p,Sq\kH88qO^@MC,G%*QiL_BfkkqpcJ$S@`h"WJai^dR(ZWX[]pP+K-iRYM_eHF_F=&!AcD%h0g
munin-2.999.15/logo.eps-3254-%?8WmR[nR^KFD].pFo*qs%VX=:D7Ff#3p>M+)O@aD#I>_d6qdp'1"L;QI]F*iCDRof]DDGc*D>N)agkqEP,pmff)P0onFpYlHPlbM
##############################################
munin-2.999.15/logo.eps-3256-%So<Du\%2-k>f*E]G/N?8c2Y/]5Q#Gepcnd[%HVB^gb5H#lM6NFFtqCZ][+?ffD9'6k9&emnta3<=688qr]L%G2q&4=0#o`ur'G]_
munin-2.999.15/logo.eps:3257:%rV%rA4C#;ic1>_W]Q(YN`/)m`>CUQt]lmJVe+:>6s*]OfIcHK^a`$>?j2o2GY4hUN55NOKm@S=lLY^k49n)qd:K+Ki&$N`.^Nl1W
munin-2.999.15/logo.eps-3258-%Hh4Lbr`jY3J+V./(Cuj>mSW\Qe(a2T[r^5P\@eP7j8AQ6Mt>,]SJ2Y"LU-McOe3_AkfLa<`>@G(Tf75F-g15j(]=Z.N6eGkh<F=_
##############################################
munin-2.999.15/logo.eps-3273-%GaFkZh5/O=gng%dDEn1!IfDZq"#%CEeb28%2]@=h?)N+"s0*>nl`84p%qQ'RpA+0HLR6m71,ham2TZ39qjrp)5CU$;l&5/&LUh&I
munin-2.999.15/logo.eps:3274:%UR/`f>Zos<lXG3gAWKk9688@FjK(.!ighai#O&pAmTk4WIuC@:asB\[4cu9mU'dLON`$,3+6'kV-`[+MF]nZ^LC=,XDQIca7t7ss
munin-2.999.15/logo.eps-3275-%^;"r>49+jAlMU3i"'GTcGNp9(C-DFL[<M?'^#Q:j@a2Y<`VH8a&,rAEs%8:J7*UgCIWbD\:[7X:\JW"qb<sHH(4g.q,.'Z^r9eD5
munin-2.999.15/logo.eps-3276-%n)pPn]&\2TNJ!P(J%48%GJCf'J%-dts2pQas713FqZFZamd:5UZSeRV+YolkR;WXJ1K?4YhH`g6(aiLe61uUo'^ITsgjsK@at;oM
munin-2.999.15/logo.eps:3277:%>`Nh)&$c<1K`gE<QYZRG;>(l03:@rbNBX]_8%C4,?V&-fbfehQi>:q7':U>pZ;$NS[VkXegGG=/?[aZ;Z?L]-pm]nZs*R"[34o3+
munin-2.999.15/logo.eps-3278-%8"k&.f"*+nY.r*'ns]iJ)1'U(*tOWg/\gO?m(`Q,IeK)Xa;:1MIJ$o[NOS*"Hua4Nq=NqLd.odk^]3p)r/3-JiX7@/WY[[KM)\K$
##############################################
munin-2.999.15/logo.eps-3281-%=*L#&=_</u41i.MnaJ`@je)HEn#,L5K2;MfGCFt^<+)J2=8r#V_9;^_]9hEeHfj^alI3B?9&F!"4soq.7P9o93NWQu&"b7S-'LQh
munin-2.999.15/logo.eps:3282:%'1^`N*SI"$:JUq.WKdG349+U6]s(!*Ukmo,7=9D=0:DF$kBE8bJ,YWaI`o=t4e2#N'<YIu>-i7Lhj@2K%%4&"VYWZUDXr9])tJ!K
munin-2.999.15/logo.eps-3283-%*_J:^WD=qo1\2Wrdb[jf_N03@rKj"crU^!<2/U4Kf_a7e<:<ibiKh.4f"s?go6u2Upi#%phg^'8%_ar(m_(_k#tfkR^Ji>DCJc;E
munin-2.999.15/logo.eps:3284:%L7.*#0s!6)[RQ)m4U6AWOMpn:cLrJ[Y5_*6B`%[tYb;#,DYgWoEdeS$oC(GMmV=@*/ng?HO3FpjV6YFfl:DCQi`+aGB3P,9OKM[d
munin-2.999.15/logo.eps-3285-%OKMD(]+sXh\J1'%Y5I\^#QA46Si?8V4Su<J9g?2$IX,L>\g-db2>-?E"1!K,3pW8jTf&>]moMHo5.9Ns?^kKme+9X=]S<p.T0@ZK
##############################################
munin-2.999.15/logo.eps-3294-%^qO(eEOejBj5'+'QbU91r:Xp4'^>&sA1.6J=81kg?X;PQHUYn[QbM[kDa'VL*O#J0X8BHC_3]UkH1gMC]keb*j"D<cq^Z%FjFTI9
munin-2.999.15/logo.eps:3295:%kTs#2m_>3uqn`"XJ+pt#2g:!o0_b:$O)LUsdF+Odk5JucNlCHNI*Ek`DtKC*(U(")S+SG\+3ku,lq\_^kP6l#57Q5Mq<+8G8:$2a
munin-2.999.15/logo.eps-3296-%CY6n`Vl.#q(VRGj]t1nHQ,h^PDjG<<o(h*jJ+JD+kPOLMMC'En4^QY4#(1:0T`JM)[PtuB/LJ7,_s\]0PN2Vbo=OtG`F%cZ>s@#Z
munin-2.999.15/logo.eps-3297-%dI=J,RGi](^-$m*0;eWilW:E1R"nn'KROl<6GIm?nFG,Im^%!2>%[0DGLb%5%.pl=>Zs8]g\ncI?iS'si.#.bF@1>]rngf?=-jGI
munin-2.999.15/logo.eps:3298:%fq%NFgg<XpojY_$c+V`S(K<;B9dcujcILaS7+^Vr?YELMGPLb,R82ZnW(jmb?Tm1J&$Q<dCU9KYY8B-C*l'iip@ui0`PXfR:X?5i
munin-2.999.15/logo.eps-3299-%D_AK9]m/U=ZPksms6&@c9&?o%ESZm[iJXb[Qh.4"bJ=/%9Chm@C1$SNbId_#p&9!H]DZd$L%M(q@i.BJ9HgH>=BeBulg!W@=1>fS
##############################################
munin-2.999.15/logo.eps-3306-%H)MbtngY2nioVtVaW2,)\]'-?gsu3nX78&6*Xrb-b:PUO)PK;hCGb1K_K7Qp"<l+@0d3N^bh[AT*cC/$$"l+lU>qqgnYG=Fs#5+=
munin-2.999.15/logo.eps:3307:%]5cRj(k)P"_qkN0"*i#,n8t(oD%IgYMl')3X2*B!8H:gYCo?[\p]$!]-.uhU46*XqnM$L/B;jX/,KMXoC`M$DTYuk`,]![c)r3Ol
munin-2.999.15/logo.eps:3308:%WQ5@^1<!4&!&Q.9`E`!t[[@YQZr6<fr!Ln-,E+$-c#Il7J<fC$Rt=Mi0Ok#`kL[KYkE6&U::Sek)a(5n(rCFB-M#?HndrZXVke4J
munin-2.999.15/logo.eps-3309-%i(rC]&Ajr2FTr&>DmnsaCtm:G\n_LDWe"2a9:;K@i:g'#?[W:IWhkcB.4\N-;E]p\VJ<p'YdQn+!i7Vk^^uQTe=a-'==nnI-`3\L
##############################################
munin-2.999.15/logo.eps-3312-%9EDmF%1FbTV2m;;bAZ_&+=V]aQ0+XBN0LAk"qsgc"+pi$+cb47(4hFFo99h1-14nu`o=?QH<)[Deg*iLa!tmDZ,JYt6EaZ!W4B*b
munin-2.999.15/logo.eps:3313:%&1B`'(pm3SNZu;"jXTeIX>s$0mq:)bYMj7cf[EkQ4!>i10^fA!69A4Odf@#So,qXb^L8"0"`903Y8ujM9!i+Z1>]PR6]b#3R;IP^
munin-2.999.15/logo.eps:3314:%a)GNchieKBEF#+VZi%$87tJCPD#Af,:NAL=F:^@.5$F-hY#C-b`*/54-8+\^kD&*;0/,Y:'1].k0l3UoHlb$;):;:)m:Lb$`/p6L
munin-2.999.15/logo.eps-3315-%%aM,7s-]nd431goC.l#ajW=$7FG^EOc>-I[gLJSc\U&JpH-'@s9TqWc\O/UjU%Y>'p`aig>Q2+Cc\EpsbGtld&7%04%U(dRQHZZC
munin-2.999.15/logo.eps-3316-%SS[LW"tVFL@GiV'5A$"2q?Yu3EK@N;'@_6(!FlXTVAf4UPT^MRU5W2KF5]SUZsgbs;cD.RjNX(W4CX+t2,[iL,agJsG_SND7#('>
munin-2.999.15/logo.eps:3317:%ApM`(F"Y'[,`>enY7$9'lS8<KW/8<_Z"c2J@r#UC&!AuZ%Z:0D"Xb!iJo]$:KRR;I/+Xq,L^@lQkl^^GDRPL+PEqg6('^`5#nQo(
munin-2.999.15/logo.eps-3318-%5*&eZnsD(D><cT!a2l)F%R\h.5'3?:96KJB>G$I(Y1>C:o56kf*b-WDeolW-V^2,7[6lR,9L"NiXBZdPgEiEYZ)'$'Vdq_uF)I&G
##############################################
munin-2.999.15/plugins/node.d.aix/df-64-	df -P -k | sed 1d | grep -v "//" | grep -v "nfs" | while read i; do
munin-2.999.15/plugins/node.d.aix/df:65:		name=`echo "$i" | sed 's/[\/.-]/_/g'| awk '{ print $6 }'`
munin-2.999.15/plugins/node.d.aix/df-66-		devName="$name.label "
munin-2.999.15/plugins/node.d.aix/df:67:		fsLabel=`echo "$i" | awk '{ print $6 }'`
munin-2.999.15/plugins/node.d.aix/df-68-		echo "$devName$fsLabel"
##############################################
munin-2.999.15/plugins/node.d.aix/df-75-df -P -k | sed 1d | grep -v "//" | grep -v "nfs" | while read i; do
munin-2.999.15/plugins/node.d.aix/df:76:	name=`echo "$i" | sed 's/[\/.-]/_/g'| awk '{ print $6 ".value " }'`
munin-2.999.15/plugins/node.d.aix/df:77:	name2=`echo "$i" | awk '{ print $5 }' | cut -f1 -d%`
munin-2.999.15/plugins/node.d.aix/df-78-        echo "$name $name2"
##############################################
munin-2.999.15/plugins/node.d.aix/iostat-110-          @lineArray = split(/ +/,$line);
munin-2.999.15/plugins/node.d.aix/iostat:111:          $diskLine = `/usr/bin/iostat|grep $lineArray[0]`;
munin-2.999.15/plugins/node.d.aix/iostat-112-          @lineArray = split(/ +/,$diskLine);
##############################################
munin-2.999.15/plugins/node.d.aix/iostat-138-          my($hdisk) = substr($hdiskInfo[2],index($hdiskInfo[2],"/")+1);
munin-2.999.15/plugins/node.d.aix/iostat:139:          my($diskLine) = `/usr/bin/iostat|grep $hdisk`;
munin-2.999.15/plugins/node.d.aix/iostat-140-          my(@lineArray) = split(/ +/,$diskLine);
##############################################
munin-2.999.15/plugins/node.d.aix/iostat.hd_only-100-          @lineArray = split(/ +/,$line);
munin-2.999.15/plugins/node.d.aix/iostat.hd_only:101:          $diskLine = `/usr/bin/iostat|grep $lineArray[0]`;
munin-2.999.15/plugins/node.d.aix/iostat.hd_only-102-          @lineArray = split(/ +/,$diskLine);
##############################################
munin-2.999.15/plugins/node.d.aix/iostat.vp_only-109-          my($hdisk) = substr($hdiskInfo[2],index($hdiskInfo[2],"/")+1);
munin-2.999.15/plugins/node.d.aix/iostat.vp_only:110:          my($diskLine) = `/usr/bin/iostat|grep $hdisk`;
munin-2.999.15/plugins/node.d.aix/iostat.vp_only-111-          my(@lineArray) = split(/ +/,$diskLine);
##############################################
munin-2.999.15/plugins/node.d.aix/netstat-76-foreach $item (keys(%toFind)) {
munin-2.999.15/plugins/node.d.aix/netstat:77:    $line = `/usr/bin/netstat -s|grep '$toFind{$item}'`;
munin-2.999.15/plugins/node.d.aix/netstat-78-    @lineArray = split(/ +/,$line);
##############################################
munin-2.999.15/plugins/node.d.aix/processes-83-  {
munin-2.999.15/plugins/node.d.aix/processes:84:    $procNum = `/usr/bin/ps -ef|grep $item|grep -v grep |wc -l`;
munin-2.999.15/plugins/node.d.aix/processes-85-    chomp($procNum);
##############################################
munin-2.999.15/plugins/node.d.darwin/df_inode-20-		case $i in
munin-2.999.15/plugins/node.d.darwin/df_inode:21:		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.darwin/df_inode:22:		*) name=`echo "$i" | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.darwin/df_inode-23-		esac
##############################################
munin-2.999.15/plugins/node.d.freebsd/cpu-37-
munin-2.999.15/plugins/node.d.freebsd/cpu:38:	OSV=`$SYSCTL_BIN -n kern.osrelease | cut -f1 -d.`
munin-2.999.15/plugins/node.d.freebsd/cpu-39-	if [ "$OSV" = "4" ]; then
munin-2.999.15/plugins/node.d.freebsd/cpu:40:		STATUNITS=`$SYSCTL_BIN -n kern.clockrate | cut -f16 -d' '`
munin-2.999.15/plugins/node.d.freebsd/cpu-41-	elif [ "$OSV" -ge "5" ]; then
munin-2.999.15/plugins/node.d.freebsd/cpu:42:		STATUNITS=`$SYSCTL_BIN -n kern.clockrate | cut -f13 -d' '`
munin-2.999.15/plugins/node.d.freebsd/cpu-43-	fi
munin-2.999.15/plugins/node.d.freebsd/cpu:44:	PERCENT=`$SYSCTL_BIN -n hw.ncpu | awk '{print ($1)*100}'`
munin-2.999.15/plugins/node.d.freebsd/cpu:45:	NCPU=`$SYSCTL_BIN -n hw.ncpu`
munin-2.999.15/plugins/node.d.freebsd/cpu-46-	if [ "$scaleto100" = yes ]; then
##############################################
munin-2.999.15/plugins/node.d.freebsd/df-41-		case $i in
munin-2.999.15/plugins/node.d.freebsd/df:42:		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.freebsd/df:43:		*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.freebsd/df-44-		esac
##############################################
munin-2.999.15/plugins/node.d.freebsd/df-55-	case $i in
munin-2.999.15/plugins/node.d.freebsd/df:56:	mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.freebsd/df:57:	*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.freebsd/df-58-	esac
##############################################
munin-2.999.15/plugins/node.d.freebsd/df_inode-28-		case $i in
munin-2.999.15/plugins/node.d.freebsd/df_inode:29:		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.freebsd/df_inode:30:		*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.freebsd/df_inode-31-		esac
##############################################
munin-2.999.15/plugins/node.d.hp-ux/df-89-	(my $fs, my $mount) = (split(/\s+/))[0,8]; # See top comment for array slice description.
munin-2.999.15/plugins/node.d.hp-ux/df:90:	chomp(my $fs_type = `/sbin/fstyp $fs`);
munin-2.999.15/plugins/node.d.hp-ux/df-91-	(my $name = $fs) =~ s|/|_|g;
##############################################
munin-2.999.15/plugins/node.d.hp-ux/df_inode-88-	(my $fs, my $mount) = (split(/\s+/))[0,8]; # See top comment for array slice description.
munin-2.999.15/plugins/node.d.hp-ux/df_inode:89:	chomp(my $fs_type = `/sbin/fstyp $fs`);
munin-2.999.15/plugins/node.d.hp-ux/df_inode-90-	(my $name = $fs) =~ s|/|_|g;
##############################################
munin-2.999.15/plugins/node.d.hp-ux/mw_cpu-66-if (-f $datafile) {
munin-2.999.15/plugins/node.d.hp-ux/mw_cpu:67:    $last=`tail -1 $datafile`;
munin-2.999.15/plugins/node.d.hp-ux/mw_cpu-68-}
##############################################
munin-2.999.15/plugins/node.d.hp-ux/mw_globalutilization-61-if (-f $datafile) {
munin-2.999.15/plugins/node.d.hp-ux/mw_globalutilization:62:    $last=`tail -1 $datafile`;
munin-2.999.15/plugins/node.d.hp-ux/mw_globalutilization-63-}
##############################################
munin-2.999.15/plugins/node.d.hp-ux/mw_memory-64-if (-f $datafile) {
munin-2.999.15/plugins/node.d.hp-ux/mw_memory:65:    $last=`tail -1 $datafile`;
munin-2.999.15/plugins/node.d.hp-ux/mw_memory-66-}
##############################################
munin-2.999.15/plugins/node.d.linux/cps_-71-$address = inet_aton($vip);
munin-2.999.15/plugins/node.d.linux/cps_:72:$name = gethostbyaddr($address,AF_INET);
munin-2.999.15/plugins/node.d.linux/cps_-73-
##############################################
munin-2.999.15/plugins/node.d.linux/df-193-# Assemble a filtered list of array references (each: fieldname, mountpoint, usage_percentage).
munin-2.999.15/plugins/node.d.linux/df:194:my @df_output = grep(defined($_), map(split_and_skip, split("\n", `df $dfopts 2>/dev/null`)));
munin-2.999.15/plugins/node.d.linux/df-195-
##############################################
munin-2.999.15/plugins/node.d.linux/fw_conntrack-116-        if ( -r $_) {
munin-2.999.15/plugins/node.d.linux/fw_conntrack:117:            chomp($max = `cat $_`);
munin-2.999.15/plugins/node.d.linux/fw_conntrack-118-            last;
##############################################
munin-2.999.15/plugins/node.d.linux/proc-353-    STATLINE:
munin-2.999.15/plugins/node.d.linux/proc:354:        foreach my $line(`fgrep -h '($procname[$i])' /proc/[0-9]*/stat`) {
munin-2.999.15/plugins/node.d.linux/proc-355-            my ($pid) = $line =~ /^(\d+)/;
##############################################
munin-2.999.15/plugins/node.d.linux/proc-663-################################
munin-2.999.15/plugins/node.d.linux/proc:664:# Execution starts here        #
munin-2.999.15/plugins/node.d.linux/proc-665-################################
##############################################
munin-2.999.15/plugins/node.d.linux/vlan_inetuse_-30-
munin-2.999.15/plugins/node.d.linux/vlan_inetuse_:31:my $INTERFACE=`basename $0 | sed 's/^vlan_inetuse_//g' | tr '_' '-'` ;
munin-2.999.15/plugins/node.d.linux/vlan_inetuse_-32-#my $INTERFACE="eth1-200";
##############################################
munin-2.999.15/plugins/node.d.linux/vlan_linkuse_-22-
munin-2.999.15/plugins/node.d.linux/vlan_linkuse_:23:my $INTERFACE=`basename $0 | sed 's/^vlan_linkuse_//g' | tr '_' '-'` ;
munin-2.999.15/plugins/node.d.linux/vlan_linkuse_-24-#my $INTERFACE="eth1-200";
##############################################
munin-2.999.15/plugins/node.d.netbsd/cpu-52-    STATUNITS=`/sbin/sysctl -n kern.clockrate | cut -f15 -d' '`
munin-2.999.15/plugins/node.d.netbsd/cpu:53:    PERCENT=`/sbin/sysctl -n hw.ncpu | awk '{print ($1)*100}'`
munin-2.999.15/plugins/node.d.netbsd/cpu-54-    NCPU=`/sbin/sysctl -n hw.ncpu`
##############################################
munin-2.999.15/plugins/node.d.netbsd/df-41-		case $i in
munin-2.999.15/plugins/node.d.netbsd/df:42:		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.netbsd/df:43:		*) name=`echo "$i" | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.netbsd/df-44-		esac
##############################################
munin-2.999.15/plugins/node.d.netbsd/df-55-	case $i in
munin-2.999.15/plugins/node.d.netbsd/df:56:	mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.netbsd/df:57:	*) name=`echo "$i" | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.netbsd/df-58-	esac
##############################################
munin-2.999.15/plugins/node.d.netbsd/df_inode-23-	case $i in
munin-2.999.15/plugins/node.d.netbsd/df_inode:24:	    mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.netbsd/df_inode-25-	    *) name=`echo "$i" | awk '{
##############################################
munin-2.999.15/plugins/node.d.netbsd/if_-32-
munin-2.999.15/plugins/node.d.netbsd/if_:33:INTERFACE=`basename $0 | sed 's/^if_//g'`
munin-2.999.15/plugins/node.d.netbsd/if_-34-
##############################################
munin-2.999.15/plugins/node.d.netbsd/if_errcoll_-33-
munin-2.999.15/plugins/node.d.netbsd/if_errcoll_:34:INTERFACE=`basename $0 | sed 's/^if_errcoll_//g'`
munin-2.999.15/plugins/node.d.netbsd/if_errcoll_-35-
##############################################
munin-2.999.15/plugins/node.d.netbsd/irqstats-66-#	echo 'intr_'${i}'.draw LINE'
munin-2.999.15/plugins/node.d.netbsd/irqstats:67:	echo 'intr_'${i}'.label' `echo $i | sed -e 's/_/ /g'`
munin-2.999.15/plugins/node.d.netbsd/irqstats:68:	echo 'intr_'${i}'.info Interrupt' `echo $i | sed -e 's/_/ /g'`
munin-2.999.15/plugins/node.d.netbsd/irqstats-69-	echo 'intr_'${i}'.type DERIVE'
##############################################
munin-2.999.15/plugins/node.d.netbsd/memory-47-PAGESIZE=`/sbin/sysctl -n hw.pagesize`
munin-2.999.15/plugins/node.d.netbsd/memory:48:MEMSIZE=`vmstat -s | awk '/pages managed/ { print $1 }'`
munin-2.999.15/plugins/node.d.netbsd/memory:49:MEMMAX=`echo 2k $PAGESIZE $MEMSIZE '*p' | dc`
munin-2.999.15/plugins/node.d.netbsd/memory-50-
##############################################
munin-2.999.15/plugins/node.d.netbsd/memory_types-46-PAGESIZE=`/sbin/sysctl -n hw.pagesize`
munin-2.999.15/plugins/node.d.netbsd/memory_types:47:MEMSIZE=`vmstat -s | awk '/pages managed/ { print $1 }'`
munin-2.999.15/plugins/node.d.netbsd/memory_types:48:MEMMAX=`echo 2k $PAGESIZE $MEMSIZE '*p' | dc`
munin-2.999.15/plugins/node.d.netbsd/memory_types-49-
##############################################
munin-2.999.15/plugins/node.d.openbsd/cpu-38-	STATUNITS=`/sbin/sysctl -n kern.clockrate | cut -f15 -d' '`
munin-2.999.15/plugins/node.d.openbsd/cpu:39:	PERCENT=`$SYSCTL_BIN -n hw.ncpu | awk '{print ($1)*100}'`
munin-2.999.15/plugins/node.d.openbsd/cpu:40:	NCPU=`$SYSCTL_BIN -n hw.ncpu`
munin-2.999.15/plugins/node.d.openbsd/cpu-41-	if [ "$scaleto100" = yes ]; then
##############################################
munin-2.999.15/plugins/node.d.openbsd/df-43-		case $i in
munin-2.999.15/plugins/node.d.openbsd/df:44:		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.openbsd/df:45:		*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.openbsd/df-46-		esac
##############################################
munin-2.999.15/plugins/node.d.openbsd/df-57-	case $i in
munin-2.999.15/plugins/node.d.openbsd/df:58:	mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.openbsd/df:59:	*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.openbsd/df-60-	esac
##############################################
munin-2.999.15/plugins/node.d.openbsd/df_inode-23-		case $i in
munin-2.999.15/plugins/node.d.openbsd/df_inode:24:		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
munin-2.999.15/plugins/node.d.openbsd/df_inode:25:		*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
munin-2.999.15/plugins/node.d.openbsd/df_inode-26-		esac
##############################################
munin-2.999.15/plugins/node.d.openbsd/memory-47-PAGESIZE=`/sbin/sysctl -n hw.pagesize`
munin-2.999.15/plugins/node.d.openbsd/memory:48:MEMSIZE=`vmstat -s | awk '/pages managed/ { print $1 }'`
munin-2.999.15/plugins/node.d.openbsd/memory:49:MEMMAX=`echo 2k $PAGESIZE $MEMSIZE '*p' | dc`
munin-2.999.15/plugins/node.d.openbsd/memory-50-
##############################################
munin-2.999.15/plugins/node.d.sunos/cpu-43-	echo 'graph_category system'
munin-2.999.15/plugins/node.d.sunos/cpu:44:	ncpu=`kstat -p -c misc -n system_misc -s '/^ncpus$/' | cut -f2 -d'	'`
munin-2.999.15/plugins/node.d.sunos/cpu:45:	cpumax=`expr "$ncpu" '*' 100`
munin-2.999.15/plugins/node.d.sunos/cpu-46-	if [ "$scaleto100" = "yes" ]; then
##############################################
munin-2.999.15/plugins/node.d.sunos/io_busy_-30-
munin-2.999.15/plugins/node.d.sunos/io_busy_:31:FUNCTION=`basename $0 | sed -e 's/io_//' -e 's/_.*//'`
munin-2.999.15/plugins/node.d.sunos/io_busy_:32:MODULE=`basename $0 | sed 's/^.*_//g'`
munin-2.999.15/plugins/node.d.sunos/io_busy_-33-CLASS=disk
##############################################
munin-2.999.15/plugins/node.d.sunos/io_busy_-135-	else
munin-2.999.15/plugins/node.d.sunos/io_busy_:136:		for dev in `kstat -p -c $CLASS -m $REGEX -s "/^$IN\$/" | $PERL -n -a -F':|\t' -e "$IGNORE"'print $F[2], "\n";'`; do
munin-2.999.15/plugins/node.d.sunos/io_busy_-137-			echo "${dev}_$IN.label ${dev}_$INNAME"
##############################################
munin-2.999.15/plugins/node.d.sunos/io_bytes_-30-
munin-2.999.15/plugins/node.d.sunos/io_bytes_:31:FUNCTION=`basename $0 | sed -e 's/io_//' -e 's/_.*//'`
munin-2.999.15/plugins/node.d.sunos/io_bytes_:32:MODULE=`basename $0 | sed 's/^.*_//g'`
munin-2.999.15/plugins/node.d.sunos/io_bytes_-33-CLASS=disk
##############################################
munin-2.999.15/plugins/node.d.sunos/io_bytes_-135-	else
munin-2.999.15/plugins/node.d.sunos/io_bytes_:136:		for dev in `kstat -p -c $CLASS -m $REGEX -s "/^$IN\$/" | $PERL -n -a -F':|\t' -e "$IGNORE"'print $F[2], "\n";'`; do
munin-2.999.15/plugins/node.d.sunos/io_bytes_-137-			echo "${dev}_$IN.label ${dev}_$INNAME"
##############################################
munin-2.999.15/plugins/node.d.sunos/io_ops_-30-
munin-2.999.15/plugins/node.d.sunos/io_ops_:31:FUNCTION=`basename $0 | sed -e 's/io_//' -e 's/_.*//'`
munin-2.999.15/plugins/node.d.sunos/io_ops_:32:MODULE=`basename $0 | sed 's/^.*_//g'`
munin-2.999.15/plugins/node.d.sunos/io_ops_-33-CLASS=disk
##############################################
munin-2.999.15/plugins/node.d.sunos/io_ops_-135-	else
munin-2.999.15/plugins/node.d.sunos/io_ops_:136:		for dev in `kstat -p -c $CLASS -m $REGEX -s "/^$IN\$/" | $PERL -n -a -F':|\t' -e "$IGNORE"'print $F[2], "\n";'`; do
munin-2.999.15/plugins/node.d.sunos/io_ops_-137-			echo "${dev}_$IN.label ${dev}_$INNAME"
##############################################
munin-2.999.15/plugins/node.d.sunos/uptime-43-} else {
munin-2.999.15/plugins/node.d.sunos/uptime:44:        my $uptime = `$KSTAT $STATISTIC`;
munin-2.999.15/plugins/node.d.sunos/uptime-45-
##############################################
munin-2.999.15/plugins/node.d/apache-216-	chomp($pid);
munin-2.999.15/plugins/node.d/apache:217:	$threads = `awk '/^Threads:/ {print \$2}' /proc/$pid/status`;
munin-2.999.15/plugins/node.d/apache-218-	chomp($threads);
##############################################
munin-2.999.15/plugins/node.d/bind9_rndc-77-if ( ! -r $querystats ) {
munin-2.999.15/plugins/node.d/bind9_rndc:78:    system("$rndc $rndc_options stats");
munin-2.999.15/plugins/node.d/bind9_rndc-79-}
##############################################
munin-2.999.15/plugins/node.d/bind9_rndc-85-# call rdnc and go directly to the correct offset
munin-2.999.15/plugins/node.d/bind9_rndc:86:system("$rndc $rndc_options stats");
munin-2.999.15/plugins/node.d/bind9_rndc-87-seek($stats , $size, 0);
##############################################
munin-2.999.15/plugins/node.d/cmc_tc_sensor_-174-			my $filename = "/etc/munin/plugins/cmc-tc_sensor_" . $key . "_" . $key2;
munin-2.999.15/plugins/node.d/cmc_tc_sensor_:175:			`ln -s $Bin\/$Script $filename`;
munin-2.999.15/plugins/node.d/cmc_tc_sensor_-176-		    }
##############################################
munin-2.999.15/plugins/node.d/exim_mailstats-147-    else {
munin-2.999.15/plugins/node.d/exim_mailstats:148:        my $logfilespec = `$EXIM -bP log_file_path 2>/dev/null`;
munin-2.999.15/plugins/node.d/exim_mailstats-149-
##############################################
munin-2.999.15/plugins/node.d/exim_mailstats-186-else {
munin-2.999.15/plugins/node.d/exim_mailstats:187:    $logfilespec = `$EXIM -bP log_file_path 2>/dev/null`;
munin-2.999.15/plugins/node.d/exim_mailstats-188-    $logfile = get_exim_logfile($logfilespec, 'main');
##############################################
munin-2.999.15/plugins/node.d/hddtemp2-53-  # Now see if "hddtemp" can run
munin-2.999.15/plugins/node.d/hddtemp2:54:  my $text = `$HDDTEMP`;
munin-2.999.15/plugins/node.d/hddtemp2-55-  if ($?) {
##############################################
munin-2.999.15/plugins/node.d/hddtemp2-77-  print "graph_category sensors\n";
munin-2.999.15/plugins/node.d/hddtemp2:78:  my $text = `$HDDTEMP`;
munin-2.999.15/plugins/node.d/hddtemp2-79-  while ($text =~ /$config{regex}/g) {
##############################################
munin-2.999.15/plugins/node.d/hddtemp2-89-
munin-2.999.15/plugins/node.d/hddtemp2:90:my $text = `$HDDTEMP`;
munin-2.999.15/plugins/node.d/hddtemp2-91-while ($text =~ /$config{regex}/g) {
##############################################
munin-2.999.15/plugins/node.d/hddtemp_smartctl-145-my $use_nocheck = 0;
munin-2.999.15/plugins/node.d/hddtemp_smartctl:146:if ($smartctl and `$smartctl --version` =~ / release (\d+\.\d+) /i) {
munin-2.999.15/plugins/node.d/hddtemp_smartctl-147-    $use_nocheck = $1 >= 5.37;
##############################################
munin-2.999.15/plugins/node.d/hddtemp_smartctl-205-                                         device_for_drive($drives[0]));
munin-2.999.15/plugins/node.d/hddtemp_smartctl:206:      if (`$cmd` =~ /Temperature/) {
munin-2.999.15/plugins/node.d/hddtemp_smartctl-207-        print "yes\n";
##############################################
munin-2.999.15/plugins/node.d/hddtemp_smartctl-241-  if (!$use_nocheck && $hdparm && $fulldev =~ /\/dev\/[sh]d?/) {
munin-2.999.15/plugins/node.d/hddtemp_smartctl:242:    if (`$hdparm -C $fulldev 2>/dev/null` =~ /standby/) {
munin-2.999.15/plugins/node.d/hddtemp_smartctl-243-      warn "[DEBUG] Drive $fulldev is in standby mode, not checking\n"
##############################################
munin-2.999.15/plugins/node.d/hddtemp_smartctl-251-
munin-2.999.15/plugins/node.d/hddtemp_smartctl:252:  my $output = `$cmd`;
munin-2.999.15/plugins/node.d/hddtemp_smartctl-253-  my $cmd_exit = $?;
##############################################
munin-2.999.15/plugins/node.d/hddtemp_smartctl-333-
munin-2.999.15/plugins/node.d/hddtemp_smartctl:334:    my $output = `$cmd`;
munin-2.999.15/plugins/node.d/hddtemp_smartctl-335-
##############################################
munin-2.999.15/plugins/node.d/mhttping-78-
munin-2.999.15/plugins/node.d/mhttping:79:-d $resultsdir or `mkdir -p $resultsdir` ;
munin-2.999.15/plugins/node.d/mhttping-80-opendir (RESULTSDIR, $resultsdir)
##############################################
munin-2.999.15/plugins/node.d/mhttping-93-	}
munin-2.999.15/plugins/node.d/mhttping:94:	$avg = `cat $resultsdir/$file ` ;
munin-2.999.15/plugins/node.d/mhttping-95-	chomp $avg ;
##############################################
munin-2.999.15/plugins/node.d/mhttping-110-
munin-2.999.15/plugins/node.d/mhttping:111:-d $resultsdir or `mkdir -p $resultsdir` ;
munin-2.999.15/plugins/node.d/mhttping-112-opendir (RESULTSDIR, $resultsdir)
##############################################
munin-2.999.15/plugins/node.d/mhttping-140-
munin-2.999.15/plugins/node.d/mhttping:141:-d $resultsdir or `mkdir -p $resultsdir` ;
munin-2.999.15/plugins/node.d/mhttping-142--d $resultsdir or die "Unable to create results dir $resultsdir: $!" ;
##############################################
munin-2.999.15/plugins/node.d/mhttping-145-
munin-2.999.15/plugins/node.d/mhttping:146:@results = ` cat $datafile `
munin-2.999.15/plugins/node.d/mhttping-147-	or die "Unable to read data file $datafile: $!" ;
##############################################
munin-2.999.15/plugins/node.d/mhttping-174-
munin-2.999.15/plugins/node.d/mhttping:175:	$result= `$command` ;
munin-2.999.15/plugins/node.d/mhttping-176-	$debug && print "$result\n" ;
##############################################
munin-2.999.15/plugins/node.d/nomadix_users_-62-
munin-2.999.15/plugins/node.d/nomadix_users_:63:my $target=`basename $0 | sed 's/^nomadix_users_//g'`;
munin-2.999.15/plugins/node.d/nomadix_users_-64-exit 2 unless defined $target;
##############################################
munin-2.999.15/plugins/node.d/nomadix_users_-73-        if(-x ${snmpwalk}){
munin-2.999.15/plugins/node.d/nomadix_users_:74:                my ${test}=`${snmpwalk} -v 1 -c ${community} -t ${timeout} ${target} ${oid_users} -Cp -OQv 2>/dev/null`;
munin-2.999.15/plugins/node.d/nomadix_users_-75-                if($?==0){
##############################################
munin-2.999.15/plugins/node.d/nomadix_users_-84-if($ARGV[0] and $ARGV[0] eq "config") {
munin-2.999.15/plugins/node.d/nomadix_users_:85:        my ${sysname}=`${snmpwalk} -v 1 -c ${community} -t ${timeout} ${target} ${oid_name} -OQv 2>/dev/null`;
munin-2.999.15/plugins/node.d/nomadix_users_-86-        chomp(${sysname});
##############################################
munin-2.999.15/plugins/node.d/nomadix_users_-106-# Let's see if we are able to talk to the SNMP host
munin-2.999.15/plugins/node.d/nomadix_users_:107:my @{users}=split("\n",`${snmpwalk} -v 1 -c ${community} -t ${timeout} ${target} ${oid_users} -Cp -OQv 2>/dev/null`);
munin-2.999.15/plugins/node.d/nomadix_users_-108-
##############################################
munin-2.999.15/plugins/node.d/nomadix_users_-123-{
munin-2.999.15/plugins/node.d/nomadix_users_:124:        @{users}=split("\n",`${snmpwalk} -v 1 -c ${community} -t ${timeout} ${target} ${oid_users_2} -Cp -OQv 2>/dev/null`);
munin-2.999.15/plugins/node.d/nomadix_users_-125-}
##############################################
munin-2.999.15/plugins/node.d/nomadix_users_-130-{
munin-2.999.15/plugins/node.d/nomadix_users_:131:        @{users}=split("\n",`${snmpwalk} -v 1 -c ${community} -t ${timeout} ${target} ${oid_users_3} -Cp -OQv 2>/dev/null`);
munin-2.999.15/plugins/node.d/nomadix_users_-132-}
##############################################
munin-2.999.15/plugins/node.d/ntp_-87-                        my (undef, undef, $assid, undef, undef, undef, undef, undef, undef, undef) = split(/\s+/, $line);
munin-2.999.15/plugins/node.d/ntp_:88:                        chomp(my $peerinfo = `ntpq -n -c "readvar $assid srcadr"`);
munin-2.999.15/plugins/node.d/ntp_-89-                        $peerinfo =~ s/\R/ /g;
##############################################
munin-2.999.15/plugins/node.d/ntp_-124-                my (undef, undef, $assid, undef, undef, undef, undef, undef, undef, undef) = split(/\s+/, $line);
munin-2.999.15/plugins/node.d/ntp_:125:                chomp(my $peerinfo = `ntpq -n -c "readvar $assid srcadr,delay,offset,jitter"`);
munin-2.999.15/plugins/node.d/ntp_-126-                $peerinfo =~ s/\R/ /g;
##############################################
munin-2.999.15/plugins/node.d/ntp_-164-                        my (undef, undef, $assid, undef, undef, undef, undef, undef, undef, undef) = split(/\s+/, $line);
munin-2.999.15/plugins/node.d/ntp_:165:                        chomp(my $peerinfo = `ntpq -n -c "readvar $assid srcadr,delay,offset,jitter"`);
munin-2.999.15/plugins/node.d/ntp_-166-                        $peerinfo =~ s/\R/ /g;
##############################################
munin-2.999.15/plugins/node.d/ntp_-172-
munin-2.999.15/plugins/node.d/ntp_:173:                        ADDRS: foreach my $addr (@addresses) {
munin-2.999.15/plugins/node.d/ntp_-174-                                if (defined($srcadr->overlaps($addr)) and $srcadr->overlaps($addr) == $IP_IDENTICAL) {
##############################################
munin-2.999.15/plugins/node.d/ntp_states-102-                        my (undef, undef, $assid, undef, undef, undef, undef, $condition_str, undef, undef) = split(/\s+/, $line);
munin-2.999.15/plugins/node.d/ntp_states:103:                        chomp(my $peerinfo = `ntpq -n -c "readvar $assid srcadr"`);
munin-2.999.15/plugins/node.d/ntp_states-104-                        $peerinfo =~ s/\s//g;
##############################################
munin-2.999.15/plugins/node.d/ntp_states-118-                        if ($condition_str eq "sys.peer" and exists $ENV{"show_syspeer_stratum"}) {
munin-2.999.15/plugins/node.d/ntp_states:119:                                chomp(my $stratum = `ntpq -n -c "readvar $assid stratum"`);
munin-2.999.15/plugins/node.d/ntp_states-120-                                $stratum =~ s/\s//g;
##############################################
munin-2.999.15/plugins/node.d/ntp_states-170-
munin-2.999.15/plugins/node.d/ntp_states:171:        foreach my $addr (keys %peers_condition) {
munin-2.999.15/plugins/node.d/ntp_states-172-                my ($fieldname, $hostname) = &make_names($addr);
##############################################
munin-2.999.15/plugins/node.d/ntp_states-185-
munin-2.999.15/plugins/node.d/ntp_states:186:foreach my $addr (keys %peers_condition) {
munin-2.999.15/plugins/node.d/ntp_states-187-        my ($fieldname, $hostname) = &make_names($addr);
##############################################
munin-2.999.15/plugins/node.d/nut_misc-91-sub fetch_values {
munin-2.999.15/plugins/node.d/nut_misc:92:	my $data = `$config{upsc} $config{upsname}`;
munin-2.999.15/plugins/node.d/nut_misc-93-	while ($data =~ /([a-z.]+): (.+)\b/g) {
##############################################
munin-2.999.15/plugins/node.d/nut_volts-57-sub fetch_values {
munin-2.999.15/plugins/node.d/nut_volts:58:	my $data = `$config{upsc} $config{upsname}`;
munin-2.999.15/plugins/node.d/nut_volts-59-	while ($data =~ /([a-z.]+): (.+)\b/g) {
##############################################
munin-2.999.15/plugins/node.d/slapd_bdb_cache_-142-
munin-2.999.15/plugins/node.d/slapd_bdb_cache_:143:my @output = `$dbstat -h $dbdir -m`;
munin-2.999.15/plugins/node.d/slapd_bdb_cache_-144-my $file = ""; # "Total";
##############################################
munin-2.999.15/plugins/node.d/varnish_-1079-		print "no (missing perl module XML::Parser)\n";
munin-2.999.15/plugins/node.d/varnish_:1080:	} elsif (`sh -c 'command -v "$varnishstatexec"'` =~ m{^/}) {
munin-2.999.15/plugins/node.d/varnish_-1081-		print "yes\n";
##############################################
munin-2.999.15/plugins/node.d/varnish_-1168-################################
munin-2.999.15/plugins/node.d/varnish_:1169:# Execution starts here        #
munin-2.999.15/plugins/node.d/varnish_-1170-################################
##############################################
munin-2.999.15/t/munin_master_update.t-26-
munin-2.999.15/t/munin_master_update.t:27:system("mkdir", "-p", $config->{dbdir});
munin-2.999.15/t/munin_master_update.t-28-
##############################################
munin-2.999.15/t/munin_master_update.t-44-# cleanup the update dir
munin-2.999.15/t/munin_master_update.t:45:system("rm", "-Rvf", $config->{dbdir});
munin-2.999.15/t/munin_master_update.t-46-
##############################################
munin-2.999.15/t/munin_master_update_spoolfetch.t-26-
munin-2.999.15/t/munin_master_update_spoolfetch.t:27:system("mkdir", "-p", $config->{dbdir});
munin-2.999.15/t/munin_master_update_spoolfetch.t-28-
##############################################
munin-2.999.15/xt/plugins.t-170-    my ( $stdout, $stderr, $exit ) = capture {
munin-2.999.15/xt/plugins.t:171:        system( @{$check_command} );
munin-2.999.15/xt/plugins.t-172-    };
##############################################
munin-2.999.15/.pc/limitsold-load-config.patch/lib/Munin/Master/LimitsOld.pm-782-                close(STDOUT);
munin-2.999.15/.pc/limitsold-load-config.patch/lib/Munin/Master/LimitsOld.pm:783:                exec($cmd) or WARN "[WARNING] Failed to exec for contact $c in pid $$";
munin-2.999.15/.pc/limitsold-load-config.patch/lib/Munin/Master/LimitsOld.pm-784-                exit;