Result:
found more than 846 distributions - search limited to the first 2001 files matching your query ( run in 1.673 )


Apache-AppSamurai

 view release on metacpan or  search on metacpan

lib/Apache/AppSamurai/Util.pm  view on Meta::CPAN

sub _expire_calc {
    my($time) = @_;
    my(%mult) = ('s'=>1,
                 'm'=>60,
                 'h'=>60*60,
                 'd'=>60*60*24,
                 'M'=>60*60*24*30,
                 'y'=>60*60*24*365);
    # format for time can be in any of the forms...
    # "now" -- expire immediately
    # "+180s" -- in 180 seconds
    # "+2m" -- in 2 minutes
    # "+12h" -- in 12 hours

 view all matches for this distribution


Apache-Auth-UserDB

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 f9b7e307ce49426f84d99f3ccf4903bffed42446 debian/control
SHA1 1d56e19fdb0eb5cae1dfa8b7e48238920d7b12b8 debian/copyright
SHA1 e7ef40e521b2c50f9f696d2d26a8b11167ec4119 debian/rules
SHA1 dd0c636583831e0f477d585d15e494de36d73073 lib/Apache/Auth/User.pm
SHA1 ff8abe300319807b4b42f3066786981a82aa8a9b lib/Apache/Auth/User/Basic.pm
SHA1 466602e9a8618aa02a000248cf874afba6d338f3 lib/Apache/Auth/User/Digest.pm
SHA1 d546cd506aac8daf25f781d81e97004e14661dae lib/Apache/Auth/UserDB.pm
SHA1 1e3dee18e7e07aab0028f40957b5f0677bdeaaf3 lib/Apache/Auth/UserDB/File.pm
SHA1 3b09b49a220fa73ed173bb4c16da0c4266cab30c lib/Apache/Auth/UserDB/File/Basic.pm
SHA1 db27f869f3208cd1940c1dda74094e2b7fd1a886 lib/Apache/Auth/UserDB/File/Digest.pm
SHA1 5e43e380f493a5cd3c08db823bb0d60d451a8e08 t/00-user-basic.t

 view all matches for this distribution


Apache-AuthCookie

 view release on metacpan or  search on metacpan

lib/Apache/AuthCookie/Util.pm  view on Meta::CPAN

sub expire_calc {
    my($time) = @_;
    my(%mult) = ('s'=>1,
                 'm'=>60,
                 'h'=>60*60,
                 'd'=>60*60*24,
                 'M'=>60*60*24*30,
                 'y'=>60*60*24*365);
    # format for time can be in any of the forms...
    # "now" -- expire immediately
    # "+180s" -- in 180 seconds
    # "+2m" -- in 2 minutes
    # "+12h" -- in 12 hours

 view all matches for this distribution


Apache-AuthCookieDBI

 view release on metacpan or  search on metacpan

AuthCookieDBI.pm  view on Meta::CPAN

	PerlSetVar WhatEverDBI_CryptType "none"
	PerlSetVar WhatEverDBI_GroupsTable "groups"
	PerlSetVar WhatEverDBI_GroupField "grp"
	PerlSetVar WhatEverDBI_GroupUserField "user"
	PerlSetVar WhatEverDBI_EncryptionType "none"
	PerlSetVar WhatEverDBI_SessionLifetime 00-24-00-00

	# Protected by AuthCookieDBI.
	<Directory /www/domain.com/authcookiedbi>
		AuthType Apache::AuthCookieDBI
		AuthName WhatEver

AuthCookieDBI.pm  view on Meta::CPAN

However, if you wish to force people to log in again sooner than that, set
this value.  This can be 'forever' or a life time specified as:

	DD-hh-mm-ss -- Days, hours, minute and seconds to live.

This is not required and defaults to '00-24-00-00' or 24 hours.

=cut

    $c{DBI_sessionlifetime} = _dir_config_var( $r, 'DBI_SessionLifetime' )
      || '00-24-00-00';

    return %c;
}

#-------------------------------------------------------------------------------

 view all matches for this distribution


Apache-AuthCookieDBIRadius

 view release on metacpan or  search on metacpan

AuthCookieDBIRadius.pm  view on Meta::CPAN

	PerlSetVar PortalDBI_User "database_user"
	PerlSetVar PortalDBI_Password "database_password"
	PerlSetVar PortalDBI_UsersTable "users"
	PerlSetVar PortalDBI_UserField "userid"
	PerlSetVar PortalDBI_PasswordField "password"
	PerlSetVar PortalDBI_SessionLifeTime 00-24-00-00

	<FilesMatch "\.pl">
 	 AuthType Apache::AuthCookieDBIRadius
 	 AuthName Portal
 	 SetHandler perl-script

AuthCookieDBIRadius.pm  view on Meta::CPAN

However, if you wish to force people to log in again sooner than that, set
this value.  This can be 'forever' or a life time specified as:

	DD-hh-mm-ss -- Days, hours, minute and seconds to live.

This is not required and defaults to '00-24-00-00' or 24 hours.

=back

=head1 DATABASE SCHEMAS

 view all matches for this distribution


Apache-AuthCookieLDAP

 view release on metacpan or  search on metacpan

AuthCookieLDAP.pm  view on Meta::CPAN

	PerlSetVar WhatEverDBI_GroupField "grp"
	PerlSetVar WhatEverDBI_GroupUserField "user"

	PerlSetVar WhatEverLDAP_host ldap.bank.com
	PerlSetVar WhatEverLDAP_EncryptionType "none"
	PerlSetVar WhatEverLDAP_SessionLifetime 00-24-00-00

	# Protected by AuthCookieLDAP.
	<Directory /www/domain.com/authcookieldap>
		AuthType Apache::AuthCookieLDAP
		AuthName WhatEver

AuthCookieLDAP.pm  view on Meta::CPAN

However, if you wish to force people to log in again sooner than that, set
this value.  This can be 'forever' or a life time specified as:

	DD-hh-mm-ss -- Days, hours, minute and seconds to live.

This is not required and defaults to '00-24-00-00' or 24 hours.

=cut

	$c{ LDAP_sessionlifetime }
	   = _dir_config_var( $r, 'LDAP_SessionLifetime' ) || '00-24-00-00';





 view all matches for this distribution


Apache-AuthCookiePAM

 view release on metacpan or  search on metacpan

AuthCookiePAM.pm  view on Meta::CPAN

	# Optional, to share tickets between servers.
	PerlSetVar WhatEverDomain .domain.com
	PerlSetVar WhatEverChangePwdScript /changepwd.pl
	
	# These are optional, the module sets sensible defaults.
	PerlSetVar WhatEverPAM_SessionLifetime 00-24-00-00

	# Protected by AuthCookiePAM.
	<Directory /www/domain.com/authcookiepam>
		AuthType Apache::AuthCookiePAM
		AuthName WhatEver

AuthCookiePAM.pm  view on Meta::CPAN

However, if you wish to force people to log in again sooner than that, set
this value.  This can be 'forever' or a life time specified as:

	DD-hh-mm-ss -- Days, hours, minute and seconds to live.

This is not required and defaults to '00-24-00-00' or 24 hours.

=cut

	$c{ PAM_sessionlifetime }
	   = _dir_config_var( $r, 'PAM_SessionLifetime' ) || '00-24-00-00';

=item C<WhatEverPAM_EncryptionType>

What kind of encryption to use to prevent the user from looking at the fields
in the ticket we give them.  This is almost completely useless, so don't

 view all matches for this distribution


Apache-AuthNetLDAP

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


0.23  Wed Jun 12 06:33:30 2003
	- Fix the chmod on the files so that the installation will be able to manipulate
	  the files.  

0.24  Sat Jun 21 06:33:30 2003	
	- Fix the Makefile.PL, to make sure that the module can not be made 
	  without Net::LDAP

0.25  Sun Jun 22 06:33:30 2003	
	- Fix the Makefile.PL, to make sure that the module can not be made 

 view all matches for this distribution


Apache-AuthTicket

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 1b5e3e88012610655b52c94f97fd40432998662c lib/Apache2/AuthTicket.pm
SHA1 5c582e555b7a769a5426c9594986503204db047c sample/apache.conf
SHA1 43aa0abcaeb4b81a674bf4fe1e86283f11a1fa2b sample/apache2.conf
SHA1 bfed0aca630ec73296e56764a3f8f0e95976e2a4 sample/mysql.sql
SHA1 9b9c1209bcb8dab96718617324684794cc000e2a sample/pgsql.sql
SHA1 cf09a993ef33cb3f9c7d00245a3ea81c3f5799f2 scripts/perlbrew-smoke
SHA1 a0fa4c757db0157b9b19260dd492b329444b35aa t/01-sqlite.t
SHA1 adcfc1165110741fad1398210055ba6692debfba t/TEST.PL
SHA1 3facbcb313bdca60feb6b5edf06bc059b82ae8b7 t/auth.t
SHA1 8efad25309730a4d501fb40fc03eda4697303372 t/author-pod-syntax.t
SHA1 ca3a7959764fddc5878ec251796e7a38344e75fc t/author-signature.t

 view all matches for this distribution


Apache-AuthenNTLM

 view release on metacpan or  search on metacpan

smb/smbval/.svn/text-base/smbdes.c.svn-base  view on Meta::CPAN

	}
}

void E_P16(unsigned char *p14,unsigned char *p16)
{
	unsigned char sp8[8] = {0x4b, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25};
	smbhash(p16, sp8, p14);
	smbhash(p16+8, sp8, p14+7);
}

void E_P24(unsigned char *p21, unsigned char *c8, unsigned char *p24)

 view all matches for this distribution


Apache-AuthenSecurID

 view release on metacpan or  search on metacpan

RCS/AuthenSecurID.pm,v  view on Meta::CPAN

date	2001.06.22.19.08.36;	author root;	state Exp;
branches;
next	1.3;

1.3
date	2001.06.21.14.50.24;	author root;	state Exp;
branches;
next	1.2;

1.2
date	2001.06.19.19.05.42;	author root;	state Exp;

RCS/AuthenSecurID.pm,v  view on Meta::CPAN

@documentation
@
text
@d1 1
a1 1
# $Id: AuthenSecurID.pm,v 1.3 2001/06/21 14:50:24 root Exp root $
d96 1
a96 1
 PerlSetVar AuthCookieHandler /path/of/authentication/handler
d146 1
a146 1

 view all matches for this distribution


Apache-AutoLogin

 view release on metacpan or  search on metacpan

AutoLogin.pm  view on Meta::CPAN

    my $auth_name=$r->dir_config('AutoLoginAuthName');
    my $log=$r->server->log;

    my $auth_cookie = Apache::Cookie->new ($r,
                                       -name => $auth_name,
                                       -value => {Basic => encode_base64(encrypt_aes(join (":",$user,$password,$client_identifier,(time()+60*60*24*$cookie_lifetime)),$encryption_key))},
                                       -path => "/",
                                       -expires => "+".$cookie_lifetime."d"
                                      );
    $auth_cookie->bake;
       

 view all matches for this distribution


Apache-AxKit-Language-Svg2AnyFormat

 view release on metacpan or  search on metacpan

examples/batik3D.svg  view on Meta::CPAN

			<stop  offset="0.3427" style="stop-color:#472EBF"/>
			<stop  offset="0.6124" style="stop-color:#262044"/>
			<stop  offset="1" style="stop-color:#000000"/>
		</radialGradient>
		<path style="opacity:0.65;fill:url(#aigrd2);stroke:none;" d="M749.703,397.511c1.24,0.401,2.216,0.707,2.915,0.915l40.395,12.747v-44.336L674.499,256.921v50.999l52.212,41.323c4.589,3.624,8.786,6.791,12.591,9.505c3.806,2.72,7.38,5.111,10.726,7.173v1.15...
			c-4.639-2.553-10.819-5.13-18.541-7.732c-0.753-0.241-1.29-0.423-1.617-0.55l-55.371-18.614v35.84l55.292,45.42c0.433,0.383,1.001,0.837,1.701,1.37c7.662,6.304,13.839,10.877,18.536,13.721v1.158c-3.346-1.805-6.919-3.55-10.726-5.24
			c-3.805-1.684-8.001-3.371-12.591-5.066l-52.212-19.1v41.781v9.076v41.924l52.212,41.324c4.589,3.622,8.786,6.791,12.591,9.504c3.806,2.721,7.38,5.111,10.726,7.174v1.158c-4.639-2.553-10.819-5.13-18.541-7.733c-0.753-0.24-1.29-0.423-1.617-0.55l-55.371-18...
			v35.839l55.292,45.422c0.433,0.381,1.001,0.837,1.701,1.367c7.662,6.306,13.839,10.88,18.536,13.723v1.154c-3.346-1.803-6.919-3.549-10.726-5.237c-3.805-1.684-8.001-3.372-12.591-5.065l-52.212-19.099v41.775v9.078v41.922l52.212,41.323
			c4.589,3.622,8.786,6.791,12.591,9.505c3.806,2.718,7.38,5.113,10.726,7.174v1.156c-4.639-2.554-10.819-5.128-18.541-7.732c-0.753-0.24-1.29-0.422-1.617-0.549l-55.371-18.615v35.841l55.292,45.42c0.433,0.384,1.001,0.839,1.701,1.371
			c7.662,6.304,13.839,10.878,18.536,13.72v1.159c-3.346-1.805-6.919-3.551-10.726-5.238c-3.805-1.685-8.001-3.375-12.591-5.067l-52.212-19.101v50.855l118.513,27.38v-44.338l-40.395-34c-0.698-0.595-1.647-1.4-2.835-2.411c-7.283-6.146-12.863-10.438-16.753-1...
			v-1.832c3.89,2.063,9.444,4.207,16.674,6.457c1.24,0.4,2.216,0.704,2.915,0.915l40.395,12.746v-44.336l-105.479-97.827l105.479,24.366V635.33l-40.395-33.998c-0.698-0.595-1.647-1.402-2.835-2.412c-7.283-6.148-12.863-10.439-16.753-12.886v-1.833
			c3.89,2.06,9.444,4.207,16.674,6.456c1.24,0.4,2.216,0.706,2.915,0.915l40.395,12.747v-44.335L687.53,462.153l105.482,24.367v-44.336l-40.395-33.999c-0.698-0.594-1.647-1.403-2.835-2.412c-7.283-6.148-12.863-10.439-16.753-12.886v-1.833
			c3.89,2.061,9.444,4.207,16.674,6.457z"/>
		<g>

examples/batik3D.svg  view on Meta::CPAN

			<stop  offset="0" style="stop-color:#FFFFFF"/>
			<stop  offset="0.3427" style="stop-color:#472EBF"/>
			<stop  offset="0.6124" style="stop-color:#262044"/>
			<stop  offset="1" style="stop-color:#000000"/>
		</radialGradient>
		<path style="opacity:0.65;fill:url(#aigrd6);stroke:none;" d="M418.683,154.229l52.211,41.323c4.59,3.624,8.786,6.791,12.59,9.505c3.807,2.72,7.381,5.111,10.726,7.173v1.157c-4.638-2.553-10.819-5.129-18.54-7.732c-0.753-0.24-1.29-0.424-1.617-0.55
			l-55.371-18.614v35.84l55.292,45.42c0.432,0.383,1,0.838,1.701,1.37c7.662,6.304,13.84,10.877,18.535,13.721v1.158c-3.345-1.805-6.919-3.55-10.726-5.241c-3.804-1.683-8-3.371-12.59-5.065l-52.211-19.1v41.781v9.075v41.924l52.211,41.324
			c4.59,3.622,8.786,6.791,12.59,9.504c3.807,2.72,7.381,5.11,10.726,7.174v1.157c-4.638-2.553-10.819-5.13-18.54-7.733c-0.753-0.24-1.29-0.423-1.617-0.549l-55.371-18.613v35.841l55.292,45.419c0.432,0.382,1,0.837,1.701,1.369
			c7.662,6.305,13.84,10.879,18.535,13.722v1.155c-3.345-1.804-6.919-3.549-10.726-5.238c-3.804-1.685-8-3.373-12.59-5.065l-52.211-19.1v41.777v9.079v41.921l52.211,41.324c4.59,3.622,8.786,6.79,12.59,9.504c3.807,2.719,7.381,5.113,10.726,7.173v1.156
			c-4.638-2.551-10.819-5.126-18.54-7.73c-0.753-0.241-1.29-0.425-1.617-0.55l-55.371-18.614v35.84l55.292,45.421c0.432,0.383,1,0.838,1.701,1.369c7.662,6.306,13.84,10.879,18.535,13.722v1.157c-3.345-1.804-6.919-3.55-10.726-5.236
			c-3.804-1.685-8-3.375-12.59-5.068l-52.211-19.102v50.857l118.513,27.378v-44.337l-40.394-34c-0.699-0.595-1.647-1.401-2.836-2.41c-7.283-6.146-12.863-10.438-16.752-12.887v-1.832c3.889,2.061,9.443,4.206,16.674,6.457c1.24,0.399,2.215,0.704,2.915,0.914
			l40.394,12.746v-44.336L431.718,501.61l105.477,24.366V481.64l-40.394-33.999c-0.699-0.594-1.647-1.401-2.836-2.411c-7.283-6.148-12.863-10.44-16.752-12.886v-1.834c3.889,2.061,9.443,4.208,16.674,6.458c1.24,0.399,2.215,0.706,2.915,0.915l40.394,12.747v-4...
			l-105.482-97.831l105.482,24.367v-44.336l-40.394-33.999c-0.699-0.594-1.647-1.403-2.836-2.412c-7.283-6.148-12.863-10.44-16.752-12.886v-1.833c3.889,2.061,9.443,4.207,16.674,6.457c1.24,0.401,2.215,0.707,2.915,0.915l40.394,12.747v-44.335L418.683,103.23...
			v50.999z"/>
		<g>

examples/batik3D.svg  view on Meta::CPAN

				c-0.907-0.949-1.711-2.039-2.414-3.272c-0.741-1.308-1.305-2.636-1.694-3.979c-0.389-1.343-0.583-2.642-0.583-3.898c0-0.87,0.095-1.66,0.285-2.372c0.188-0.71,0.474-1.325,0.854-1.844c0.72-0.981,1.64-1.521,2.755-1.62s2.366,0.254,3.754,1.057
				c0.61,0.353,1.251,0.8,1.921,1.344c0.671,0.542,1.386,1.193,2.144,1.952v6.925z"/>
			<path style="fill:url(#aigrd9);stroke:none;" d="M626.125,181.467v-25.648l6.87,3.976v7.097c0,0.97-0.01,1.72-0.028,2.25c-0.019,0.529-0.046,1.031-0.083,1.505c0.601-0.632,1.266-0.977,1.994-1.035c0.731-0.056,1.553,0.18,2.466,0.708
				c1.525,0.882,2.733,2.131,3.624,3.748c0.892,1.617,1.337,3.379,1.337,5.285v11.477l-6.98-4.039v-8.634c0-0.86-0.072-1.488-0.214-1.885c-0.143-0.397-0.396-0.701-0.757-0.909c-0.406-0.235-0.715-0.226-0.927,0.025c-0.213,0.251-0.32,0.747-0.32,1.486v8.633
				l-6.98-4.04z"/>
			<path style="fill:url(#aigrd9);stroke:none;" d="M661.357,194.623l-9.913-5.72v0.267c0,0.881,0.133,1.614,0.397,2.195c0.267,0.583,0.668,1.031,1.208,1.343c0.325,0.188,0.609,0.239,0.851,0.149c0.243-0.088,0.433-0.311,0.573-0.666l6.466,4.26
				c-0.564,1.529-1.536,2.396-2.917,2.602c-1.38,0.205-3.069-0.27-5.068-1.426c-1.111-0.644-2.149-1.445-3.118-2.408c-0.968-0.962-1.836-2.051-2.604-3.266c-0.862-1.391-1.524-2.803-1.985-4.238c-0.465-1.436-0.695-2.798-0.695-4.087c0-1.3,0.234-2.402,0.7-3.3...
				c0.468-0.902,1.126-1.542,1.978-1.919c0.767-0.338,1.632-0.427,2.594-0.267c0.963,0.16,2.002,0.563,3.123,1.211c1.534,0.888,2.913,2.051,4.134,3.487c1.221,1.438,2.238,3.088,3.053,4.954c0.417,0.955,0.729,1.923,0.936,2.905c0.209,0.983,0.313,1.983,0.313,...
				c0,0.264-0.001,0.461-0.007,0.59c-0.004,0.128-0.01,0.24-0.019,0.334z M651.501,185.214l3.167,1.85c-0.027-0.685-0.17-1.261-0.425-1.726c-0.255-0.465-0.635-0.844-1.136-1.134c-0.448-0.26-0.809-0.3-1.084-0.125c-0.273,0.176-0.447,0.555-0.522,1.136z"/>
			<path style="fill:url(#aigrd9);stroke:none;" d="M662.929,199.324c0-1.091,0.38-1.805,1.144-2.14c0.764-0.336,1.695-0.186,2.797,0.452c1.102,0.637,2.036,1.566,2.803,2.788c0.769,1.222,1.154,2.379,1.154,3.47c0,1.092-0.383,1.805-1.147,2.141
				c-0.763,0.335-1.7,0.182-2.81-0.461c-1.111-0.643-2.044-1.572-2.804-2.788c-0.759-1.216-1.137-2.37-1.137-3.461z"/>
			<path style="fill:url(#aigrd9);stroke:none;" d="M689.375,209.565c0,1.288-0.233,2.383-0.695,3.282c-0.462,0.9-1.124,1.548-1.984,1.942c-0.75,0.338-1.607,0.428-2.574,0.271c-0.966-0.157-2.008-0.56-3.128-1.207c-1.119-0.647-2.159-1.448-3.121-2.401
				c-0.961-0.953-1.827-2.043-2.594-3.269c-0.851-1.352-1.51-2.754-1.977-4.209c-0.467-1.454-0.701-2.825-0.701-4.114c0-1.3,0.233-2.402,0.701-3.305c0.467-0.902,1.125-1.543,1.977-1.92c0.768-0.337,1.633-0.426,2.594-0.267c0.961,0.16,2.002,0.563,3.121,1.21
				c1.12,0.647,2.162,1.452,3.128,2.413c0.967,0.961,1.833,2.05,2.602,3.265c0.841,1.347,1.493,2.743,1.956,4.188c0.462,1.446,0.695,2.82,0.695,4.121z M680.995,207.043c0.501,0.291,0.908,0.311,1.222,0.063c0.315-0.247,0.474-0.717,0.474-1.41
				c0-0.705-0.156-1.358-0.467-1.962c-0.31-0.603-0.718-1.052-1.229-1.348c-0.518-0.299-0.932-0.327-1.242-0.083s-0.464,0.719-0.464,1.423c0,0.705,0.154,1.359,0.464,1.962c0.31,0.603,0.724,1.054,1.242,1.354z"/>
			<path style="fill:url(#aigrd9);stroke:none;" d="M691.708,219.417v-17.11l6.759,3.91v2.402c0.6-0.63,1.269-0.977,2.007-1.038c0.739-0.061,1.555,0.167,2.451,0.687c0.138,0.079,0.242,0.142,0.311,0.187c0.07,0.046,0.132,0.089,0.187,0.132v8.298
				c-0.387-0.478-0.743-0.872-1.064-1.179c-0.323-0.309-0.619-0.54-0.887-0.694c-0.884-0.513-1.571-0.623-2.055-0.33c-0.485,0.293-0.727,0.958-0.727,1.994v6.781l-6.981-4.04z"/>
			<path style="fill:url(#aigrd9);stroke:none;" d="M715.233,231.489v-1.49c-0.649,0.475-1.333,0.708-2.056,0.699c-0.722-0.01-1.518-0.266-2.388-0.77c-1.677-0.969-3.061-2.523-4.152-4.661c-1.094-2.138-1.639-4.387-1.639-6.748c0-2.736,0.528-4.623,1.589-5.65...
				c1.06-1.037,2.46-1.051,4.201-0.043c0.898,0.52,1.71,1.212,2.437,2.075c0.726,0.865,1.395,1.941,2.007,3.229v-2.203l6.655,3.851v14.643c0,1.506-0.057,2.597-0.167,3.275c-0.111,0.678-0.291,1.251-0.542,1.723c-0.601,1.125-1.648,1.632-3.141,1.521
				c-1.493-0.111-3.399-0.838-5.719-2.181c-1.295-0.749-2.5-1.581-3.614-2.495c-1.115-0.917-2.133-1.905-3.057-2.97l1.497-4.619c0.797,1.042,1.578,1.926,2.341,2.655c0.765,0.728,1.521,1.308,2.271,1.742c1.13,0.653,1.991,0.846,2.585,0.58
				c0.592-0.271,0.889-0.987,0.889-2.155z M711.891,222.15c0,0.663,0.156,1.282,0.474,1.856c0.313,0.574,0.737,1.016,1.266,1.321c0.538,0.311,0.968,0.364,1.289,0.157c0.32-0.207,0.479-0.641,0.479-1.305c0-0.652-0.163-1.276-0.487-1.873

examples/batik3D.svg  view on Meta::CPAN

				c0.674-0.311,1.6-0.126,2.776,0.555c1.167,0.675,2.083,1.556,2.75,2.644c0.667,1.087,1,2.239,1,3.453z M788.637,275.502v-17.111l6.951,4.023v17.11l-6.951-4.022z"/>
			<path style="fill:url(#aigrd18);stroke:none;" d="M798.736,281.346v-25.648l6.893,3.988v15.074l2.928-4.842l8.164,4.725l-5.095,5.276l5.361,11.988l-8.239-4.767l-3.12-8.209v6.404l-6.893-3.988z"/>
		</g>
	</g>
	<g id="Flying_x0020_Text" style="fill-rule:nonzero;clip-rule:nonzero;fill:#6C54DE;stroke:#000000;stroke-miterlimit:4;">
		<path style="fill:none;stroke:#FFFFFF;" d="M819.707,951.325l-430-248.26L389,54.891l430,248.261l0.707,648.173z"/>
		<path style="fill:none;stroke:#FFFFFF;stroke-width:1.1556;" d="M369.666,53.265v713.131l-265.503,153.63V206.893L369.666,53.265z"/>
		<g id="_x0033_rdBatik" style="fill:#000000;stroke:none;">
			<path d="M278.538,798.678l-39.375-21.227l15.759-9.764c3.365-2.085,6.936-3.201,10.709-3.352c3.775-0.149,7.346,0.685,10.712,2.499c2.149,1.158,3.489,2.397,4.022,3.718c0.531,1.32,0.197,2.602-1.006,3.845c2.79-1.084,5.504-1.55,8.142-1.396
				c2.639,0.156,5.26,0.934,7.861,2.335c3.681,1.986,5.422,4.126,5.225,6.422c-0.198,2.294-2.31,4.689-6.335,7.184l-15.715,9.735z M259.608,775.643l5.502,2.966l1.564-0.969c0.966-0.599,1.465-1.182,1.497-1.751s-0.399-1.095-1.295-1.576
				c-0.895-0.483-1.828-0.691-2.798-0.63c-0.971,0.063-1.94,0.393-2.906,0.99l-1.563,0.97z M273.536,783.15l6.362,3.431l1.993-1.236c1.184-0.733,1.819-1.445,1.902-2.139c0.083-0.692-0.38-1.313-1.396-1.86c-1.033-0.558-2.141-0.784-3.322-0.683

examples/batik3D.svg  view on Meta::CPAN

				c1.892-1.171,3.947-1.784,6.167-1.839c2.22-0.056,4.317,0.449,6.292,1.513z M360.781,747.724l-27.769-14.971l11.29-6.994l27.769,14.971l-11.29,6.994z"/>
			<path d="M377.172,737.568l-41.61-22.433l11.146-6.904l24.449,13.181l-5.861-8.66l13.231-8.198l5.089,12.313l23.11,2.392l-13.352,8.271l-15.45-2.468l10.392,5.603l-11.145,6.905z"/>
		</g>
		<g id="SVGCode" style="stroke:none;">
			<path d="M194.431,886.701l10.864-1.622c0.548-0.086,0.961-0.116,1.239-0.092c0.277,0.025,0.546,0.109,0.805,0.253c0.329,0.179,0.511,0.398,0.548,0.654c0.038,0.254-0.078,0.464-0.346,0.628c-0.176,0.107-0.557,0.204-1.144,0.292l-16.097,2.402l3.312-9.426
				c0.129-0.338,0.278-0.559,0.449-0.662c0.274-0.167,0.632-0.248,1.071-0.241c0.439,0.006,0.824,0.1,1.151,0.28c0.261,0.142,0.419,0.293,0.476,0.453c0.058,0.16,0.026,0.397-0.095,0.72l-2.234,6.36z"/>
			<path d="M209.826,876.195c-0.564,0.066-1.085,0.176-1.563,0.326c-0.478,0.154-0.912,0.348-1.302,0.586c-0.776,0.472-1.242,0.931-1.396,1.374c-0.068,0.195-0.027,0.334,0.128,0.419c0.177,0.1,0.488,0.112,0.933,0.038c0.332-0.059,0.918-0.275,1.756-0.653
				c1.546-0.691,2.689-1.135,3.431-1.335c0.974-0.263,1.932-0.354,2.869-0.27c0.94,0.084,1.723,0.297,2.349,0.642c0.852,0.465,1.247,1.052,1.187,1.751c-0.081,1.007-0.847,1.953-2.297,2.837c-0.582,0.354-1.178,0.649-1.789,0.884
				c-0.612,0.236-1.236,0.416-1.875,0.542c0.005,0.117-0.021,0.225-0.076,0.322c-0.055,0.1-0.143,0.185-0.261,0.256c-0.313,0.191-0.688,0.279-1.119,0.257c-0.432-0.021-0.935-0.188-1.51-0.504l-0.802-0.442c-0.574-0.315-0.891-0.596-0.949-0.844
				c-0.058-0.248,0.064-0.464,0.366-0.648c0.243-0.147,0.524-0.228,0.846-0.24c0.322-0.015,0.721,0.058,1.196,0.214c0.615-0.018,1.216-0.115,1.804-0.29c0.587-0.175,1.162-0.433,1.721-0.774c0.919-0.56,1.463-1.089,1.631-1.582c0.071-0.242,0.014-0.414-0.172-0...
				c-0.309-0.17-0.737-0.205-1.284-0.106c-0.546,0.102-1.43,0.44-2.652,1.023c-1.81,0.87-3.272,1.312-4.387,1.327c-1.108,0.021-2.076-0.198-2.904-0.651c-0.852-0.469-1.256-1.043-1.213-1.722c0.048-0.926,0.738-1.793,2.07-2.604c0.463-0.281,0.96-0.526,1.49-0....
				c0.529-0.204,1.097-0.368,1.703-0.487c0.014-0.138,0.047-0.254,0.1-0.349c0.054-0.095,0.125-0.172,0.217-0.227c0.274-0.167,0.625-0.239,1.051-0.216c0.427,0.023,0.928,0.191,1.502,0.509l0.583,0.318c0.52,0.285,0.82,0.513,0.902,0.678
				c0.147,0.324,0.041,0.594-0.319,0.813c-0.243,0.148-0.543,0.229-0.904,0.242c-0.36,0.016-0.713-0.044-1.058-0.169z"/>
			<path d="M224.618,872.843l-3.122-4.239c-0.504,0.308-0.888,0.463-1.154,0.467c-0.583,0.006-1.054-0.089-1.41-0.284c-0.357-0.195-0.542-0.417-0.553-0.663c-0.014-0.244,0.232-0.52,0.735-0.826l2.569-1.563c0.504-0.309,0.971-0.465,1.395-0.471
				c0.425-0.006,0.816,0.089,1.172,0.287c0.356,0.193,0.541,0.416,0.554,0.66c0.012,0.246-0.234,0.523-0.74,0.831l-0.335,0.203l4.821,6.546l-2.094,1.275l-11.552-2.449l-0.293,0.178c-0.506,0.311-0.971,0.465-1.396,0.471c-0.425,0.006-0.816-0.089-1.172-0.285
				c-0.357-0.196-0.542-0.416-0.553-0.662c-0.013-0.245,0.233-0.522,0.74-0.829l2.525-1.539c0.504-0.308,0.968-0.463,1.393-0.467c0.424-0.005,0.815,0.09,1.172,0.285c0.356,0.195,0.543,0.458,0.56,0.785c0.008,0.162-0.24,0.399-0.742,0.705l7.479,1.585z"/>
			<path d="M231.928,860.331l-0.721-0.396l2.346-1.428c0.509-0.31,0.976-0.468,1.401-0.473c0.425-0.005,0.814,0.09,1.171,0.285s0.542,0.417,0.554,0.662c0.012,0.245-0.237,0.523-0.745,0.832l-0.335,0.206l8.689,4.772c0.839,0.461,1.422,0.953,1.749,1.477
				c0.328,0.525,0.408,1.099,0.244,1.721c-0.165,0.621-0.633,1.167-1.404,1.637l-2.277,1.387c-0.484,0.296-0.939,0.443-1.366,0.449c-0.428,0.002-0.815-0.091-1.163-0.281c-0.357-0.196-0.542-0.419-0.555-0.666c-0.016-0.245,0.221-0.518,0.706-0.813l2.223-1.352
				c0.615-0.377,0.895-0.774,0.839-1.197c-0.057-0.422-0.388-0.8-0.991-1.131l-1.16-0.637c-0.107,0.456-0.306,0.872-0.598,1.246c-0.293,0.374-0.681,0.709-1.165,1.003c-1.369,0.834-3.055,1.233-5.062,1.2c-2.006-0.032-3.806-0.485-5.398-1.36
				c-1.599-0.879-2.479-1.896-2.639-3.055c-0.161-1.156,0.443-2.151,1.812-2.984c0.51-0.312,1.084-0.558,1.722-0.742c0.638-0.184,1.345-0.307,2.125-0.362z M236.504,862.845c-0.881-0.485-1.919-0.737-3.114-0.76c-1.195-0.021-2.176,0.201-2.945,0.668
				c-0.767,0.468-1.102,1.047-1.002,1.736c0.098,0.688,0.589,1.275,1.469,1.757c0.89,0.488,1.929,0.744,3.121,0.764c1.191,0.02,2.17-0.204,2.938-0.672c0.767-0.467,1.105-1.044,1.009-1.731c-0.095-0.688-0.587-1.276-1.476-1.762z"/>
			<path d="M247.004,854.697l-10.87,1.619c-0.547,0.085-0.96,0.116-1.239,0.093c-0.278-0.027-0.548-0.112-0.806-0.255c-0.328-0.181-0.509-0.396-0.543-0.65c-0.034-0.253,0.086-0.464,0.361-0.631c0.17-0.103,0.544-0.2,1.123-0.293l16.108-2.395l-3.323,9.416
				c-0.121,0.345-0.267,0.567-0.437,0.671c-0.275,0.169-0.632,0.249-1.072,0.241c-0.439-0.006-0.827-0.101-1.164-0.286c-0.259-0.144-0.417-0.293-0.476-0.454c-0.057-0.159-0.025-0.396,0.095-0.721l2.243-6.355z"/>
			<path d="M259.198,880.368l10.864-1.62c0.548-0.085,0.96-0.115,1.238-0.092c0.278,0.026,0.547,0.11,0.806,0.252c0.329,0.18,0.511,0.398,0.549,0.653c0.036,0.257-0.078,0.465-0.347,0.629c-0.176,0.107-0.558,0.205-1.145,0.292l-16.095,2.403l3.311-9.427
				c0.128-0.336,0.279-0.557,0.448-0.663c0.274-0.166,0.633-0.246,1.071-0.239c0.439,0.006,0.824,0.1,1.153,0.279c0.259,0.143,0.417,0.293,0.475,0.452c0.057,0.159,0.025,0.401-0.095,0.72l-2.234,6.36z"/>
			<path d="M272.569,868.685l-0.72-0.396l2.345-1.427c0.509-0.31,0.977-0.467,1.4-0.473c0.425-0.006,0.816,0.09,1.173,0.285c0.356,0.196,0.541,0.418,0.554,0.662c0.012,0.246-0.236,0.523-0.746,0.835l-0.334,0.202l8.688,4.773c0.838,0.461,1.422,0.954,1.749,1....
				c0.327,0.526,0.408,1.1,0.244,1.721c-0.164,0.621-0.632,1.167-1.405,1.638l-2.276,1.385c-0.484,0.295-0.939,0.446-1.367,0.45c-0.427,0.002-0.813-0.09-1.162-0.28c-0.357-0.195-0.542-0.418-0.557-0.666c-0.014-0.246,0.221-0.517,0.707-0.814l2.223-1.354
				c0.615-0.374,0.896-0.771,0.838-1.194c-0.057-0.423-0.387-0.799-0.99-1.13l-1.16-0.639c-0.108,0.457-0.306,0.873-0.599,1.248c-0.292,0.373-0.68,0.709-1.165,1.004c-1.368,0.832-3.055,1.231-5.062,1.198c-2.006-0.032-3.805-0.486-5.397-1.359
				c-1.6-0.879-2.479-1.898-2.64-3.057c-0.16-1.156,0.443-2.15,1.812-2.983c0.511-0.311,1.085-0.559,1.722-0.742c0.638-0.184,1.346-0.306,2.125-0.363z M277.146,871.199c-0.882-0.484-1.919-0.738-3.115-0.761c-1.194-0.021-2.177,0.201-2.943,0.67
				c-0.768,0.468-1.103,1.045-1.004,1.733c0.099,0.689,0.589,1.276,1.47,1.76c0.888,0.486,1.929,0.743,3.12,0.763s2.169-0.205,2.938-0.673c0.768-0.467,1.104-1.045,1.009-1.729c-0.095-0.688-0.586-1.275-1.475-1.763z"/>
			<path d="M294.761,854.343l8.187,4.495l2.409-1.465c0.509-0.312,0.975-0.468,1.4-0.473c0.424-0.006,0.815,0.09,1.172,0.285c0.356,0.196,0.541,0.416,0.553,0.662c0.012,0.245-0.235,0.523-0.744,0.833l-6.826,4.155c-0.51,0.312-0.978,0.469-1.402,0.473
				c-0.425,0.006-0.816-0.089-1.173-0.285c-0.356-0.195-0.541-0.417-0.553-0.663c-0.012-0.244,0.237-0.522,0.746-0.832l2.408-1.466l-5.805-3.188l-1.612,0.981c-0.51,0.309-0.976,0.467-1.4,0.474c-0.425,0.006-0.816-0.09-1.173-0.287
				c-0.357-0.195-0.542-0.416-0.554-0.663c-0.012-0.243,0.237-0.522,0.745-0.831l3.623-2.205z M289.974,852.027l2.53,1.391l-2.387,1.453l-2.53-1.392l2.387-1.452z"/>
			<path d="M305.91,842.326l12.701,6.976l0.336-0.202c0.509-0.309,0.976-0.467,1.4-0.473c0.425-0.006,0.816,0.09,1.173,0.285c0.356,0.194,0.541,0.417,0.554,0.662c0.012,0.246-0.236,0.523-0.745,0.834l-2.345,1.427l-0.571-0.313
				c-0.147,0.448-0.391,0.869-0.733,1.261c-0.34,0.393-0.779,0.75-1.314,1.077c-1.509,0.921-3.243,1.376-5.197,1.369c-1.955-0.006-3.703-0.433-5.242-1.278c-1.611-0.885-2.501-1.933-2.671-3.147c-0.171-1.215,0.439-2.245,1.832-3.093
				c0.522-0.318,1.13-0.577,1.824-0.78c0.692-0.201,1.474-0.348,2.344-0.438l-2.974-1.634l-0.335,0.205c-0.509,0.309-0.976,0.467-1.4,0.474c-0.424,0.005-0.815-0.092-1.172-0.286c-0.356-0.195-0.541-0.417-0.554-0.663c-0.013-0.245,0.236-0.522,0.745-0.833
				l2.345-1.428z M314.014,849.105c-0.982-0.539-2.104-0.817-3.366-0.838c-1.263-0.021-2.317,0.226-3.159,0.738c-0.837,0.509-1.205,1.129-1.106,1.857c0.099,0.728,0.628,1.355,1.586,1.882c0.874,0.48,1.854,0.716,2.938,0.704c1.083-0.011,2.102-0.305,3.056-0.8...
				c0.948-0.577,1.406-1.18,1.375-1.811c-0.03-0.629-0.472-1.178-1.324-1.646z"/>
			<path d="M324.919,839.143l-8.596,5.234c-0.484,0.295-0.94,0.443-1.367,0.447c-0.427,0.006-0.819-0.091-1.174-0.286c-0.349-0.192-0.532-0.411-0.546-0.658c-0.015-0.246,0.22-0.516,0.705-0.811l8.598-5.234c0.484-0.295,0.939-0.445,1.366-0.448
				c0.427-0.004,0.819,0.092,1.175,0.287c0.349,0.192,0.529,0.41,0.544,0.658c0.015,0.246-0.221,0.517-0.705,0.811z M329.409,841.61l-8.597,5.233c-0.484,0.295-0.937,0.444-1.36,0.45c-0.423,0.008-0.813-0.086-1.168-0.282c-0.356-0.197-0.542-0.418-0.558-0.664
				c-0.014-0.247,0.22-0.518,0.704-0.813l8.599-5.234c0.483-0.292,0.939-0.443,1.366-0.447c0.428-0.005,0.818,0.092,1.175,0.286c0.357,0.196,0.54,0.416,0.55,0.659c0.01,0.248-0.226,0.517-0.711,0.812z"/>
			<path d="M322.691,832.917l2.575-1.569l5.079,3.519c0.263,0.181,0.397,0.337,0.406,0.466c0.009,0.131-0.071,0.247-0.241,0.353c-0.178,0.107-0.376,0.161-0.598,0.159c-0.22,0.001-0.491-0.068-0.812-0.206l-6.409-2.721z M326.857,830.379l2.574-1.566l5.081,3.5...
				c0.262,0.181,0.398,0.334,0.411,0.463s-0.07,0.246-0.247,0.354c-0.176,0.108-0.375,0.161-0.597,0.16c-0.221,0-0.492-0.069-0.812-0.205l-6.411-2.723z"/>
			<path d="M334.959,824.643l5.355,2.942c0.111-0.506,0.324-0.966,0.641-1.379s0.734-0.777,1.25-1.091c1.393-0.848,3.141-1.252,5.246-1.217c2.105,0.036,3.962,0.496,5.573,1.382c1.539,0.845,2.366,1.832,2.477,2.962c0.112,1.128-0.588,2.151-2.098,3.07
				c-0.536,0.325-1.134,0.595-1.794,0.807c-0.66,0.214-1.381,0.372-2.166,0.48l0.598,0.329l-2.345,1.428c-0.509,0.308-0.977,0.467-1.401,0.472c-0.424,0.008-0.816-0.089-1.171-0.285c-0.357-0.196-0.541-0.416-0.555-0.662c-0.012-0.245,0.236-0.523,0.745-0.835
				l0.334-0.202l-10.32-5.668l-0.335,0.204c-0.509,0.307-0.976,0.466-1.4,0.472c-0.425,0.006-0.816-0.091-1.171-0.285c-0.357-0.195-0.542-0.417-0.556-0.661c-0.012-0.248,0.236-0.524,0.746-0.834l2.345-1.429z M351.083,826.541c-0.982-0.539-2.104-0.819-3.367-...
				c-1.261-0.02-2.315,0.228-3.157,0.739c-0.837,0.509-1.205,1.13-1.106,1.856c0.099,0.729,0.627,1.354,1.586,1.881c0.875,0.479,1.853,0.717,2.937,0.707c1.083-0.011,2.103-0.307,3.058-0.888c0.953-0.581,1.413-1.186,1.379-1.813
				c-0.035-0.628-0.478-1.175-1.33-1.644z"/>
			<path d="M366.46,822.934l-0.571-0.313c-0.188,0.481-0.509,0.948-0.962,1.404c-0.453,0.456-0.925,0.836-1.423,1.141c-1.081,0.657-2.295,1.007-3.643,1.047s-2.431-0.163-3.248-0.614c-0.995-0.546-1.487-1.313-1.477-2.307c0.009-0.99,0.772-1.95,2.293-2.873
				c0.608-0.371,1.389-0.756,2.341-1.159l-0.573-0.315c-0.359-0.196-0.783-0.28-1.268-0.246c-0.487,0.033-1.094,0.271-1.822,0.715c-0.596,0.361-1.231,0.912-1.903,1.643c-0.252,0.271-0.478,0.467-0.676,0.588c-0.27,0.163-0.614,0.241-1.03,0.23
				c-0.417-0.012-0.803-0.115-1.159-0.311c-0.202-0.111-0.342-0.229-0.424-0.347c-0.082-0.121-0.109-0.241-0.08-0.363c0.03-0.122,0.169-0.329,0.419-0.623c0.334-0.396,0.713-0.776,1.135-1.144c0.421-0.368,0.842-0.682,1.261-0.938
				c1.254-0.762,2.544-1.177,3.876-1.247s2.551,0.197,3.66,0.81l4.905,2.691l0.334-0.204c0.509-0.31,0.976-0.468,1.4-0.472c0.425-0.006,0.815,0.089,1.172,0.286c0.356,0.194,0.541,0.417,0.553,0.661c0.013,0.245-0.235,0.523-0.744,0.833l-2.346,1.428z
				 M362.196,820.593c-0.99,0.39-1.827,0.793-2.509,1.206c-0.82,0.501-1.291,1.059-1.414,1.675c-0.068,0.388,0.051,0.666,0.357,0.833c0.223,0.123,0.492,0.166,0.807,0.136c0.581-0.061,1.157-0.265,1.728-0.613c0.485-0.293,0.923-0.689,1.314-1.186
				c0.391-0.494,0.634-0.993,0.729-1.495l-1.013-0.556z"/>
			<path d="M365.715,811.148l1.498,0.824c0.126-0.908,0.313-1.578,0.563-2.006s0.585-0.772,1.012-1.032c0.654-0.398,1.578-0.627,2.769-0.687c0.808-0.041,1.413,0.048,1.818,0.271c0.342,0.185,0.53,0.407,0.568,0.659c0.038,0.252-0.085,0.463-0.367,0.635
				c-0.249,0.149-0.66,0.229-1.232,0.232c-0.574,0.004-0.968,0.073-1.184,0.204c-0.282,0.171-0.493,0.542-0.634,1.114c-0.142,0.57-0.214,1.34-0.215,2.309l3.593,1.975l2.868-1.746c0.51-0.313,0.977-0.469,1.4-0.473c0.426-0.008,0.815,0.09,1.172,0.285
				c0.357,0.196,0.542,0.417,0.554,0.661c0.013,0.246-0.236,0.522-0.745,0.835l-6.073,3.697c-0.508,0.309-0.976,0.467-1.4,0.472c-0.425,0.006-0.815-0.089-1.172-0.284c-0.357-0.197-0.542-0.418-0.554-0.663c-0.013-0.247,0.236-0.525,0.746-0.834l1.194-0.728
				l-5.806-3.188l-0.732,0.447c-0.509,0.309-0.977,0.468-1.401,0.474c-0.424,0.004-0.815-0.091-1.171-0.286c-0.357-0.195-0.542-0.419-0.554-0.663c-0.012-0.244,0.236-0.523,0.745-0.834l2.743-1.67z"/>
			<path d="M378.432,800.02c-0.075-0.185-0.086-0.351-0.04-0.495c0.048-0.144,0.158-0.268,0.328-0.372c0.293-0.18,0.656-0.257,1.083-0.24c0.427,0.021,0.928,0.187,1.502,0.503l2.028,1.113c0.575,0.315,0.892,0.599,0.95,0.846c0.059,0.249-0.059,0.46-0.353,0.64...
				c-0.268,0.162-0.574,0.245-0.918,0.245c-0.343,0-0.799-0.111-1.37-0.333c-0.375-0.152-0.72-0.236-1.037-0.251c-0.62-0.029-1.277,0.045-1.97,0.222c-0.692,0.178-1.28,0.413-1.766,0.708c-0.603,0.369-1.001,0.79-1.194,1.269c-0.192,0.479-0.133,1.027,0.181,1....
				c0.313,0.618,0.952,1.194,1.917,1.725l1.553,0.854c1.151,0.63,2.463,0.943,3.938,0.939c1.474-0.007,2.837-0.39,4.088-1.151c0.747-0.455,1.257-0.905,1.534-1.354c0.161-0.259,0.205-0.606,0.133-1.04c-0.039-0.263-0.037-0.452,0.007-0.563
				c0.044-0.113,0.142-0.215,0.292-0.308c0.268-0.162,0.625-0.239,1.069-0.232c0.443,0.008,0.829,0.103,1.154,0.282c0.326,0.177,0.537,0.454,0.636,0.827c0.143,0.541,0.057,1.088-0.262,1.642c-0.426,0.744-1.149,1.427-2.171,2.048
				c-1.191,0.726-2.556,1.22-4.094,1.481c-1.239,0.214-2.633,0.21-4.182-0.012c-1.55-0.223-2.919-0.659-4.107-1.312l-1.621-0.892c-1.243-0.681-2.158-1.469-2.747-2.354c-0.587-0.889-0.741-1.755-0.459-2.602c0.282-0.846,0.907-1.566,1.876-2.153
				c0.583-0.356,1.208-0.644,1.874-0.865c0.667-0.222,1.383-0.376,2.148-0.463z"/>
			<path d="M383.672,794.989l5.086,2.794c0.124-0.415,0.329-0.795,0.614-1.133c0.286-0.339,0.647-0.641,1.085-0.907c0.693-0.422,1.45-0.72,2.271-0.898c0.822-0.177,1.71-0.209,2.667-0.094c0.957,0.11,1.893,0.419,2.808,0.922l4.474,2.456
				c0.508-0.308,0.904-0.467,1.183-0.474c0.569-0.003,1.032,0.092,1.389,0.288c0.357,0.196,0.541,0.416,0.555,0.662c0.012,0.247-0.236,0.523-0.745,0.831l-2.01,1.227c-0.509,0.309-0.977,0.467-1.402,0.472c-0.424,0.007-0.815-0.089-1.172-0.284
				c-0.357-0.197-0.542-0.457-0.56-0.78c-0.008-0.167,0.243-0.406,0.751-0.718l-4.313-2.367c-0.612-0.337-1.16-0.503-1.643-0.494c-0.643,0.004-1.264,0.189-1.867,0.556c-0.445,0.272-0.737,0.567-0.875,0.89c-0.138,0.324-0.158,0.848-0.061,1.577l4.466,2.454
				c0.508-0.313,0.9-0.467,1.175-0.468c0.574-0.011,1.04,0.084,1.397,0.279c0.357,0.196,0.542,0.417,0.554,0.662c0.013,0.247-0.236,0.523-0.745,0.833l-2.009,1.224c-0.51,0.313-0.977,0.468-1.401,0.474c-0.424,0.005-0.816-0.09-1.172-0.286
				c-0.357-0.196-0.541-0.459-0.553-0.785c-0.013-0.163,0.235-0.399,0.743-0.712l-10.318-5.667l-0.335,0.204c-0.51,0.311-0.977,0.468-1.4,0.473c-0.426,0.006-0.816-0.09-1.172-0.286c-0.357-0.195-0.542-0.416-0.554-0.662c-0.013-0.246,0.236-0.522,0.745-0.833
				l2.346-1.428z"/>
			<path d="M414.713,793.561l-0.571-0.313c-0.188,0.479-0.51,0.946-0.961,1.403c-0.453,0.458-0.927,0.838-1.426,1.142c-1.079,0.657-2.294,1.006-3.643,1.047c-1.349,0.039-2.431-0.166-3.249-0.614c-0.993-0.545-1.486-1.314-1.476-2.308
				c0.01-0.99,0.773-1.947,2.293-2.874c0.608-0.37,1.39-0.756,2.342-1.158l-0.574-0.315c-0.359-0.197-0.782-0.28-1.268-0.246c-0.487,0.033-1.095,0.271-1.822,0.715c-0.597,0.362-1.231,0.91-1.903,1.644c-0.253,0.271-0.478,0.467-0.676,0.588
				c-0.27,0.163-0.613,0.241-1.03,0.229c-0.415-0.012-0.802-0.114-1.158-0.311c-0.203-0.109-0.343-0.227-0.425-0.347c-0.082-0.12-0.108-0.244-0.079-0.362c0.028-0.121,0.168-0.33,0.417-0.625c0.336-0.395,0.715-0.774,1.137-1.144c0.42-0.367,0.842-0.681,1.262-...
				c1.252-0.763,2.543-1.18,3.876-1.25c1.332-0.069,2.55,0.199,3.659,0.81l4.904,2.692l0.335-0.203c0.509-0.31,0.976-0.468,1.4-0.473c0.425-0.006,0.815,0.09,1.172,0.286c0.355,0.196,0.541,0.416,0.553,0.66c0.013,0.246-0.235,0.523-0.745,0.834l-2.345,1.428z
				 M410.449,791.219c-0.991,0.39-1.827,0.792-2.509,1.208c-0.82,0.5-1.292,1.057-1.414,1.674c-0.068,0.388,0.051,0.666,0.358,0.834c0.222,0.122,0.49,0.167,0.806,0.134c0.582-0.06,1.157-0.264,1.728-0.61c0.486-0.296,0.924-0.69,1.315-1.188
				c0.391-0.495,0.633-0.995,0.729-1.496l-1.012-0.556z"/>
			<path d="M413.968,781.775l1.499,0.824c0.126-0.909,0.313-1.578,0.562-2.006c0.248-0.429,0.585-0.773,1.011-1.031c0.655-0.398,1.578-0.628,2.769-0.688c0.808-0.042,1.412,0.047,1.818,0.27c0.341,0.188,0.531,0.409,0.568,0.658c0.038,0.254-0.085,0.465-0.367,...
				c-0.249,0.153-0.661,0.23-1.232,0.234c-0.573,0.005-0.967,0.071-1.184,0.203c-0.281,0.17-0.493,0.541-0.635,1.114c-0.141,0.569-0.212,1.34-0.214,2.31l3.593,1.975l2.87-1.746c0.508-0.312,0.974-0.47,1.399-0.474c0.425-0.006,0.815,0.09,1.172,0.285
				c0.356,0.195,0.542,0.418,0.554,0.662c0.012,0.246-0.236,0.522-0.745,0.834l-6.072,3.694c-0.509,0.312-0.976,0.469-1.4,0.475c-0.425,0.005-0.815-0.089-1.173-0.286c-0.357-0.196-0.542-0.416-0.554-0.662c-0.013-0.244,0.236-0.523,0.745-0.833l1.193-0.728
				l-5.805-3.188l-0.733,0.446c-0.509,0.31-0.975,0.468-1.4,0.473c-0.425,0.006-0.816-0.09-1.172-0.284c-0.357-0.196-0.542-0.417-0.555-0.663c-0.011-0.244,0.237-0.522,0.745-0.832l2.744-1.672z"/>
			<path d="M428.328,775.792l4.783,2.627c0.511,0.28,0.936,0.413,1.275,0.394c0.531-0.025,1.15-0.255,1.857-0.685c1.029-0.629,1.715-1.35,2.063-2.166c0.131-0.313,0.291-0.53,0.48-0.646c0.263-0.158,0.606-0.233,1.033-0.223c0.426,0.009,0.807,0.108,1.141,0.28...
				c0.311,0.173,0.474,0.383,0.49,0.637c0.044,0.395-0.253,0.965-0.893,1.71c-0.639,0.744-1.281,1.311-1.929,1.707c-1.251,0.762-2.508,1.157-3.773,1.185c-1.264,0.029-2.361-0.212-3.293-0.723l-5.243-2.881l-0.727,0.445c-0.486,0.293-0.941,0.442-1.369,0.446
				c-0.428,0.006-0.818-0.091-1.175-0.287c-0.348-0.191-0.529-0.41-0.544-0.657c-0.014-0.247,0.221-0.517,0.706-0.813l0.727-0.443l-2.151-1.181c-0.574-0.315-0.891-0.598-0.949-0.845c-0.057-0.246,0.063-0.464,0.364-0.646c0.294-0.179,0.656-0.257,1.088-0.237
				c0.43,0.02,0.932,0.188,1.505,0.503l2.153,1.183l3.722-2.266c0.485-0.294,0.94-0.441,1.367-0.447c0.427-0.006,0.818,0.09,1.175,0.288c0.348,0.19,0.529,0.409,0.544,0.655c0.014,0.249-0.221,0.519-0.705,0.813l-3.723,2.265z"/>
			<path d="M431.258,766.827l2.576-1.568l5.079,3.519c0.262,0.182,0.398,0.337,0.406,0.467c0.009,0.13-0.073,0.246-0.242,0.35c-0.177,0.108-0.376,0.162-0.598,0.16c-0.221,0.001-0.492-0.066-0.812-0.205l-6.41-2.722z M435.424,764.289l2.576-1.566l5.081,3.518
				c0.262,0.182,0.398,0.336,0.411,0.463c0.012,0.13-0.071,0.247-0.248,0.354c-0.176,0.109-0.375,0.163-0.597,0.161c-0.221,0.001-0.491-0.069-0.81-0.206l-6.412-2.723z"/>
			<path d="M456.528,760.248l-10.87,1.617c-0.546,0.086-0.959,0.117-1.239,0.093c-0.278-0.027-0.546-0.111-0.807-0.253c-0.328-0.18-0.509-0.396-0.542-0.65c-0.035-0.255,0.087-0.466,0.361-0.633c0.169-0.102,0.544-0.201,1.124-0.292l16.108-2.396l-3.325,9.419
				c-0.12,0.344-0.266,0.565-0.437,0.67c-0.273,0.168-0.63,0.249-1.071,0.241c-0.438-0.006-0.826-0.103-1.163-0.286c-0.258-0.143-0.418-0.293-0.475-0.452c-0.058-0.161-0.027-0.399,0.093-0.721l2.244-6.356z"/>
			<path d="M323.966,874.037l10.864-1.622c0.547-0.085,0.96-0.115,1.239-0.091c0.276,0.025,0.545,0.109,0.805,0.252c0.328,0.179,0.511,0.399,0.548,0.653c0.038,0.258-0.077,0.465-0.346,0.629c-0.177,0.107-0.558,0.206-1.144,0.292l-16.097,2.403l3.312-9.425
				c0.129-0.34,0.278-0.561,0.448-0.666c0.275-0.165,0.631-0.246,1.071-0.239c0.44,0.007,0.824,0.101,1.153,0.28c0.26,0.143,0.418,0.295,0.476,0.453c0.057,0.161,0.026,0.399-0.096,0.721l-2.233,6.359z"/>
			<path d="M333.979,863.565l1.498,0.821c0.128-0.91,0.314-1.576,0.564-2.007c0.247-0.428,0.584-0.773,1.011-1.031c0.655-0.4,1.578-0.629,2.769-0.687c0.808-0.042,1.413,0.049,1.818,0.27c0.341,0.187,0.53,0.407,0.568,0.658c0.037,0.254-0.085,0.465-0.368,0.63...
				c-0.249,0.151-0.658,0.229-1.231,0.232c-0.573,0.004-0.968,0.073-1.184,0.204c-0.282,0.17-0.493,0.542-0.634,1.113c-0.142,0.57-0.214,1.342-0.216,2.312l3.593,1.973l2.869-1.746c0.509-0.31,0.976-0.469,1.4-0.473c0.425-0.006,0.815,0.09,1.173,0.284
				c0.355,0.196,0.541,0.418,0.552,0.662c0.013,0.246-0.235,0.525-0.744,0.833l-6.073,3.699c-0.509,0.308-0.976,0.466-1.401,0.471c-0.424,0.006-0.815-0.088-1.172-0.284c-0.356-0.196-0.542-0.417-0.554-0.662c-0.012-0.247,0.237-0.523,0.746-0.836l1.193-0.725
				l-5.806-3.189l-0.733,0.448c-0.508,0.309-0.976,0.466-1.399,0.471c-0.425,0.007-0.816-0.091-1.172-0.285c-0.357-0.195-0.541-0.416-0.554-0.662c-0.013-0.246,0.236-0.524,0.746-0.835l2.742-1.666z"/>
			<path d="M358.027,856.449l-8.271,5.036c0.826,0.211,1.696,0.26,2.607,0.141c0.912-0.118,1.822-0.452,2.733-1.007c0.747-0.454,1.551-1.162,2.413-2.12c0.357-0.396,0.634-0.653,0.831-0.774c0.268-0.161,0.605-0.239,1.014-0.227c0.406,0.012,0.781,0.11,1.121,0...
				c0.309,0.17,0.474,0.374,0.495,0.612c0.024,0.316-0.342,0.854-1.098,1.613c-0.758,0.761-1.603,1.427-2.539,1.996c-1.611,0.981-3.438,1.47-5.479,1.465c-2.042-0.002-3.847-0.435-5.418-1.299c-1.672-0.917-2.51-1.982-2.514-3.195
				c-0.006-1.21,0.673-2.232,2.035-3.061c0.819-0.497,1.741-0.861,2.765-1.091c1.026-0.229,1.902-0.336,2.631-0.322c1.044,0.027,2.143,0.18,3.294,0.456c0.799,0.195,1.586,0.507,2.359,0.933l1.021,0.547z M353.426,856.492c-0.99-0.186-1.903-0.219-2.739-0.1
				c-0.837,0.118-1.6,0.387-2.289,0.805c-0.684,0.417-1.106,0.87-1.269,1.358c-0.162,0.489-0.059,1.018,0.309,1.585l5.988-3.648z"/>
			<path d="M362.107,846.956c-0.038-0.3,0.07-0.529,0.326-0.685c0.289-0.177,0.649-0.254,1.08-0.235c0.43,0.021,0.929,0.187,1.492,0.496l1.532,0.841c0.573,0.316,0.885,0.595,0.939,0.841c0.052,0.245-0.072,0.459-0.374,0.644c-0.276,0.168-0.6,0.259-0.974,0.27...
				c-0.277,0.007-0.668-0.08-1.172-0.268c-0.505-0.187-1.006-0.242-1.504-0.166c-0.912,0.113-1.782,0.422-2.607,0.925c-0.951,0.578-1.384,1.225-1.302,1.934c0.083,0.708,0.626,1.341,1.63,1.893c0.927,0.507,1.933,0.741,3.021,0.702
				c1.088-0.041,2.271-0.451,3.55-1.229c0.838-0.512,1.422-0.982,1.75-1.419c0.191-0.259,0.276-0.559,0.26-0.894c-0.018-0.336,0.087-0.573,0.315-0.712c0.274-0.167,0.631-0.243,1.07-0.233c0.438,0.011,0.822,0.105,1.148,0.285c0.527,0.29,0.724,0.751,0.587,1.3...
				c-0.198,0.938-1.167,1.938-2.909,2.999c-1.565,0.951-3.166,1.481-4.802,1.593c-2.207,0.151-4.202-0.261-5.989-1.243c-1.693-0.931-2.616-1.991-2.769-3.183c-0.153-1.192,0.541-2.257,2.08-3.193c0.557-0.34,1.137-0.62,1.74-0.844
				c0.601-0.224,1.229-0.39,1.883-0.502z"/>
			<path d="M372.465,842.893l4.781,2.628c0.513,0.28,0.938,0.41,1.278,0.394c0.531-0.027,1.149-0.256,1.857-0.687c1.028-0.626,1.716-1.347,2.063-2.164c0.13-0.315,0.29-0.532,0.479-0.649c0.262-0.158,0.606-0.23,1.033-0.222c0.426,0.011,0.807,0.108,1.14,0.291
				c0.312,0.172,0.475,0.383,0.491,0.634c0.043,0.395-0.254,0.966-0.893,1.711c-0.638,0.743-1.282,1.312-1.93,1.706c-1.25,0.762-2.509,1.156-3.773,1.188c-1.264,0.025-2.361-0.215-3.292-0.727l-5.245-2.88l-0.727,0.443c-0.485,0.297-0.94,0.445-1.367,0.449
				c-0.427,0.006-0.819-0.092-1.176-0.286c-0.348-0.193-0.529-0.411-0.544-0.658c-0.015-0.246,0.221-0.518,0.706-0.812l0.728-0.443l-2.153-1.182c-0.574-0.315-0.89-0.598-0.947-0.846c-0.058-0.246,0.063-0.463,0.364-0.645c0.294-0.182,0.657-0.26,1.087-0.236
				c0.431,0.019,0.933,0.188,1.507,0.501l2.153,1.184l3.72-2.266c0.485-0.294,0.94-0.446,1.368-0.449c0.427-0.005,0.82,0.091,1.175,0.287c0.349,0.191,0.53,0.411,0.544,0.656c0.014,0.248-0.221,0.519-0.705,0.813l-3.722,2.266z"/>
			<path d="M401.287,828.459l6.186-0.152c0.383-0.208,0.775-0.305,1.176-0.294c0.401,0.012,0.769,0.111,1.101,0.292c0.35,0.191,0.529,0.41,0.545,0.659c0.013,0.247-0.222,0.517-0.707,0.812l-2.29,1.394c-0.486,0.295-0.941,0.446-1.369,0.451
				c-0.427,0.002-0.822-0.094-1.187-0.295c-0.279-0.152-0.45-0.332-0.515-0.54c-0.064-0.208-0.008-0.411,0.173-0.609l-3.073,0.078l0.04,1.77c0.4-0.137,0.764-0.192,1.09-0.167c0.328,0.023,0.643,0.12,0.945,0.284c0.364,0.2,0.555,0.423,0.572,0.668
				c0.018,0.245-0.214,0.514-0.698,0.809l-2.264,1.378c-0.484,0.294-0.938,0.442-1.366,0.448c-0.428,0.005-0.818-0.094-1.175-0.288c-0.324-0.178-0.505-0.384-0.543-0.616c-0.037-0.233,0.116-0.468,0.459-0.704l-0.112-3.506l-5.392,0.132
				c-0.366,0.188-0.747,0.275-1.141,0.26c-0.396-0.014-0.756-0.11-1.082-0.291c-0.348-0.19-0.529-0.41-0.543-0.658c-0.015-0.247,0.222-0.519,0.708-0.814l1.889-1.149c0.485-0.295,0.943-0.443,1.371-0.449c0.431-0.003,0.817,0.092,1.161,0.278
				c0.459,0.254,0.648,0.572,0.563,0.959l2.409-0.061l-0.046-1.435c-0.655,0.05-1.181-0.033-1.575-0.248c-0.37-0.205-0.562-0.429-0.577-0.675c-0.015-0.246,0.221-0.516,0.704-0.81l1.86-1.133c0.483-0.293,0.938-0.442,1.364-0.447
				c0.426-0.005,0.819,0.092,1.174,0.288c0.317,0.175,0.495,0.378,0.533,0.611c0.039,0.232-0.108,0.464-0.437,0.703l0.068,3.068z"/>
			<path d="M413.813,818.126l-8.597,5.232c-0.484,0.297-0.939,0.445-1.366,0.449c-0.428,0.004-0.818-0.093-1.175-0.29c-0.348-0.188-0.53-0.408-0.546-0.653c-0.014-0.249,0.222-0.519,0.705-0.814l8.598-5.232c0.484-0.295,0.939-0.443,1.366-0.448
				c0.427-0.006,0.819,0.091,1.175,0.288c0.349,0.191,0.53,0.408,0.544,0.656s-0.22,0.518-0.705,0.813z M418.302,820.593l-8.596,5.231c-0.484,0.294-0.938,0.446-1.361,0.452c-0.423,0.007-0.811-0.088-1.168-0.285c-0.356-0.195-0.543-0.416-0.557-0.662
				c-0.016-0.246,0.22-0.519,0.704-0.812l8.598-5.232c0.483-0.297,0.938-0.447,1.366-0.451c0.428-0.003,0.819,0.093,1.175,0.289c0.357,0.194,0.541,0.415,0.551,0.659c0.01,0.245-0.226,0.515-0.711,0.811z"/>
			<path d="M411.583,811.897l2.576-1.567l5.08,3.518c0.262,0.182,0.398,0.337,0.406,0.468c0.01,0.129-0.072,0.246-0.242,0.348c-0.176,0.11-0.375,0.163-0.598,0.163c-0.221,0-0.491-0.071-0.81-0.208l-6.412-2.721z M415.751,809.36l2.576-1.568l5.078,3.52
				c0.263,0.182,0.399,0.337,0.411,0.464c0.013,0.128-0.07,0.246-0.246,0.353c-0.177,0.107-0.376,0.162-0.598,0.162c-0.221-0.001-0.491-0.07-0.811-0.209l-6.411-2.721z"/>
			<path d="M437.018,802.83l2.616,1.437c1.55,0.852,2.655,1.898,3.317,3.139c0.661,1.24,0.286,2.289-1.124,3.147c-0.813,0.495-1.711,0.798-2.695,0.906c-0.982,0.108-2.292,0.005-3.931-0.313c-1.637-0.319-3.09-0.828-4.361-1.525l-2.617-1.438
				c-1.542-0.846-2.647-1.891-3.316-3.131c-0.668-1.24-0.297-2.288,1.114-3.148c0.806-0.491,1.699-0.791,2.678-0.902c0.979-0.111,2.291-0.011,3.936,0.304c1.643,0.315,3.105,0.824,4.383,1.525z M435.006,804.053c-1.295-0.71-2.733-1.146-4.316-1.306
				c-0.884-0.081-1.642,0.071-2.275,0.457c-0.612,0.372-0.818,0.84-0.619,1.398c0.306,0.848,1.119,1.633,2.437,2.356l2.617,1.438c1.303,0.714,2.745,1.148,4.325,1.3c0.877,0.084,1.635-0.066,2.275-0.455c0.606-0.37,0.81-0.837,0.608-1.394
				c-0.305-0.849-1.117-1.634-2.436-2.358l-2.617-1.438z"/>
			<path d="M435.71,797.211l2.576-1.567l5.078,3.518c0.262,0.182,0.397,0.338,0.407,0.467c0.009,0.131-0.072,0.247-0.242,0.351c-0.177,0.107-0.376,0.161-0.598,0.161s-0.491-0.069-0.812-0.207l-6.41-2.722z M439.877,794.676l2.576-1.568l5.079,3.518
				c0.262,0.182,0.399,0.336,0.41,0.464c0.014,0.127-0.069,0.247-0.246,0.353c-0.177,0.107-0.375,0.161-0.598,0.162c-0.221-0.001-0.492-0.07-0.811-0.208l-6.411-2.72z"/>
			<path d="M476.519,788.988l-11.656-2.343c-0.508,0.311-0.974,0.466-1.398,0.473c-0.426,0.006-0.815-0.09-1.173-0.287c-0.356-0.194-0.541-0.414-0.554-0.66c-0.013-0.246,0.235-0.523,0.743-0.833l2.254-1.371c0.501-0.306,0.965-0.461,1.39-0.466
				c0.424-0.006,0.815,0.089,1.171,0.286c0.356,0.194,0.541,0.416,0.554,0.66c0.012,0.248-0.232,0.522-0.734,0.827l7.895,1.585l-3.161-4.467c-0.504,0.308-0.968,0.463-1.393,0.469c-0.424,0.005-0.814-0.089-1.171-0.287c-0.356-0.195-0.541-0.416-0.554-0.661
				c-0.012-0.245,0.233-0.522,0.737-0.828l2.25-1.371c0.507-0.309,0.974-0.466,1.397-0.47c0.426-0.005,0.816,0.089,1.173,0.285c0.356,0.195,0.541,0.418,0.555,0.661c0.011,0.246-0.236,0.523-0.744,0.832l6.181,8.734c0.501-0.305,1.008-0.612,1.52-0.925
				c0.848-0.011,1.451,0.083,1.809,0.28c0.355,0.193,0.541,0.412,0.553,0.662c0.013,0.243-0.236,0.521-0.746,0.832l-5.015,3.053c-0.501,0.305-0.965,0.459-1.389,0.465c-0.425,0.006-0.815-0.09-1.172-0.286c-0.356-0.194-0.541-0.416-0.553-0.661
				c-0.013-0.246,0.232-0.522,0.733-0.826l2.01-1.226l-1.513-2.137z"/>
			<path d="M486.191,774.065l-8.597,5.235c-0.485,0.295-0.94,0.443-1.367,0.448c-0.427,0.003-0.818-0.092-1.174-0.289c-0.348-0.189-0.531-0.411-0.544-0.657c-0.016-0.245,0.219-0.518,0.704-0.813l8.597-5.232c0.484-0.295,0.939-0.444,1.366-0.45
				c0.427-0.002,0.818,0.094,1.175,0.288c0.349,0.193,0.529,0.411,0.544,0.659c0.014,0.245-0.221,0.516-0.705,0.811z M490.681,776.531l-8.597,5.233c-0.483,0.296-0.938,0.446-1.36,0.453c-0.423,0.008-0.811-0.088-1.168-0.285c-0.357-0.195-0.542-0.416-0.558-0....
				c-0.015-0.249,0.22-0.519,0.705-0.813l8.597-5.234c0.484-0.295,0.94-0.443,1.366-0.448c0.428-0.004,0.819,0.091,1.176,0.288c0.356,0.196,0.54,0.415,0.549,0.661c0.011,0.243-0.226,0.515-0.71,0.807z"/>
			<path d="M483.962,767.839l2.575-1.567l5.079,3.516c0.263,0.183,0.397,0.339,0.406,0.467c0.009,0.133-0.072,0.248-0.242,0.351c-0.176,0.107-0.376,0.162-0.597,0.162c-0.222,0-0.491-0.069-0.811-0.208l-6.411-2.72z M488.129,765.302l2.575-1.567l5.079,3.517
				c0.263,0.183,0.4,0.338,0.412,0.464c0.012,0.128-0.071,0.246-0.247,0.354c-0.177,0.107-0.375,0.161-0.598,0.16c-0.22,0.001-0.49-0.069-0.811-0.207l-6.41-2.721z"/>
			<path d="M509.583,766.147l4.376-2.664c0.012-0.275,0.125-0.479,0.343-0.611c0.309-0.19,0.673-0.273,1.094-0.248c0.419,0.021,0.92,0.19,1.498,0.51l1.142,0.625l-9.149,5.57l-2.531-1.391c0.075-4.146-0.018-6.726-0.283-7.741c-0.14-0.515-0.442-0.901-0.908-1....
				c-0.581-0.319-1.307-0.469-2.18-0.455c-0.873,0.015-1.664,0.239-2.374,0.671c-0.718,0.438-1.066,0.936-1.045,1.499c0.015,0.294,0.209,0.632,0.579,1.01c0.235,0.234,0.341,0.438,0.319,0.613c-0.021,0.175-0.15,0.333-0.386,0.478
				c-0.277,0.168-0.63,0.247-1.063,0.242c-0.432-0.005-0.804-0.093-1.114-0.264c-0.465-0.255-0.865-0.684-1.2-1.289c-0.335-0.604-0.366-1.231-0.087-1.887c0.277-0.652,0.824-1.229,1.64-1.726c1.269-0.771,2.762-1.152,4.483-1.146
				c1.722,0.008,3.229,0.365,4.523,1.079c0.659,0.36,1.154,0.768,1.484,1.216c0.331,0.449,0.552,1.215,0.666,2.295c0.093,0.852,0.151,2.44,0.174,4.771z"/>
			<path d="M521.458,751.428l2.618,1.438c1.55,0.851,2.655,1.898,3.315,3.137c0.661,1.24,0.286,2.289-1.124,3.147c-0.813,0.496-1.711,0.796-2.694,0.906c-0.983,0.111-2.293,0.007-3.931-0.313c-1.636-0.32-3.091-0.826-4.362-1.524l-2.616-1.438
				c-1.543-0.847-2.647-1.892-3.317-3.132c-0.667-1.24-0.297-2.29,1.113-3.148c0.807-0.492,1.699-0.792,2.679-0.904c0.979-0.11,2.29-0.009,3.936,0.305c1.643,0.316,3.105,0.825,4.383,1.526z M519.448,752.65c-1.295-0.71-2.733-1.147-4.316-1.305
				c-0.885-0.082-1.643,0.069-2.276,0.455c-0.612,0.373-0.818,0.839-0.618,1.4c0.304,0.847,1.117,1.631,2.436,2.355l2.617,1.438c1.302,0.717,2.744,1.15,4.325,1.3c0.877,0.086,1.636-0.065,2.275-0.455c0.607-0.369,0.81-0.834,0.609-1.395
				c-0.305-0.848-1.117-1.631-2.436-2.356l-2.616-1.438z"/>
			<path d="M520.151,745.81l2.576-1.568l5.078,3.518c0.263,0.182,0.398,0.339,0.408,0.468c0.008,0.129-0.072,0.245-0.242,0.35c-0.177,0.107-0.376,0.16-0.598,0.16c-0.221,0-0.491-0.068-0.81-0.206l-6.411-2.721z M524.318,743.271l2.576-1.567l5.079,3.519
				c0.263,0.18,0.398,0.337,0.412,0.465c0.013,0.126-0.07,0.245-0.247,0.352c-0.177,0.108-0.376,0.16-0.597,0.16s-0.492-0.068-0.811-0.205l-6.411-2.723z"/>
			<path d="M557.705,734.51l2.983,3.286l-1.865,1.136l-9.875-3.471c-0.256,0.156-0.597,0.237-1.021,0.244c-0.426,0.004-0.816-0.092-1.172-0.288c-0.357-0.195-0.542-0.417-0.554-0.661c-0.012-0.247,0.11-0.448,0.366-0.605l2.052-1.247
				c0.538-0.327,1.021-0.495,1.445-0.5c0.424-0.005,0.815,0.091,1.172,0.285c0.357,0.196,0.542,0.436,0.557,0.716c0.011,0.211-0.254,0.479-0.793,0.808l4.552,1.609l-2.628-2.895l1.766-1.074l5.152,1.356l-2.994-2.556c-0.538,0.328-0.949,0.493-1.229,0.498
				c-0.569,0.007-1.032-0.09-1.389-0.284c-0.356-0.196-0.541-0.417-0.554-0.664c-0.012-0.244,0.25-0.531,0.79-0.859l2.067-1.257c0.259-0.158,0.603-0.241,1.027-0.245c0.425-0.007,0.815,0.088,1.172,0.283c0.356,0.196,0.541,0.418,0.553,0.663
				c0.014,0.246-0.11,0.447-0.37,0.606l6.526,5.507l-1.862,1.133l-5.874-1.524z"/>
			<path d="M564.6,723.175l8.187,4.497l2.408-1.467c0.51-0.309,0.977-0.466,1.401-0.472c0.425-0.007,0.816,0.09,1.172,0.285c0.356,0.196,0.541,0.416,0.554,0.662c0.012,0.247-0.237,0.523-0.745,0.833l-6.826,4.155c-0.509,0.311-0.977,0.468-1.401,0.474
				c-0.425,0.005-0.815-0.091-1.172-0.285c-0.358-0.197-0.542-0.418-0.554-0.662c-0.013-0.247,0.236-0.523,0.746-0.833l2.408-1.467l-5.806-3.189l-1.612,0.98c-0.51,0.313-0.977,0.469-1.401,0.474c-0.424,0.005-0.815-0.088-1.172-0.285
				c-0.357-0.194-0.542-0.418-0.554-0.661c-0.012-0.245,0.235-0.524,0.745-0.835l3.622-2.204z M559.813,720.861l2.53,1.389l-2.387,1.454l-2.53-1.39l2.387-1.453z"/>
			<path d="M575.75,711.159l12.701,6.977l0.335-0.204c0.509-0.309,0.976-0.467,1.401-0.472c0.425-0.006,0.814,0.09,1.172,0.284c0.356,0.197,0.541,0.419,0.553,0.663c0.014,0.245-0.235,0.522-0.745,0.834l-2.345,1.426l-0.571-0.314
				c-0.147,0.452-0.391,0.871-0.732,1.263c-0.341,0.394-0.779,0.753-1.315,1.077c-1.51,0.919-3.242,1.377-5.197,1.369c-1.955-0.007-3.703-0.434-5.242-1.278c-1.61-0.885-2.5-1.934-2.669-3.148c-0.172-1.213,0.439-2.243,1.832-3.092
				c0.522-0.317,1.13-0.578,1.823-0.779c0.694-0.202,1.476-0.349,2.344-0.438l-2.974-1.634l-0.335,0.203c-0.509,0.311-0.976,0.468-1.4,0.472c-0.425,0.007-0.815-0.089-1.171-0.285c-0.357-0.195-0.542-0.416-0.555-0.663c-0.013-0.243,0.237-0.522,0.746-0.832
				l2.345-1.428z M583.854,717.94c-0.982-0.541-2.104-0.82-3.366-0.841c-1.263-0.02-2.316,0.229-3.159,0.74c-0.836,0.511-1.204,1.129-1.105,1.855c0.099,0.729,0.628,1.356,1.586,1.884c0.874,0.48,1.854,0.715,2.938,0.706c1.083-0.012,2.102-0.306,3.057-0.888
				c0.947-0.578,1.405-1.182,1.374-1.811c-0.031-0.631-0.472-1.18-1.324-1.646z"/>
			<path d="M589.6,710.715l4.782,2.627c0.511,0.281,0.937,0.413,1.276,0.393c0.531-0.024,1.15-0.254,1.856-0.686c1.03-0.624,1.717-1.346,2.063-2.165c0.131-0.315,0.29-0.53,0.479-0.646c0.264-0.16,0.607-0.233,1.034-0.225c0.426,0.012,0.807,0.109,1.14,0.293
				c0.311,0.17,0.475,0.383,0.491,0.632c0.044,0.396-0.254,0.967-0.893,1.709c-0.638,0.745-1.282,1.315-1.929,1.708c-1.251,0.762-2.509,1.156-3.773,1.188c-1.265,0.028-2.362-0.213-3.292-0.723l-5.244-2.881l-0.727,0.441c-0.484,0.295-0.94,0.445-1.367,0.447
				c-0.427,0.006-0.82-0.091-1.176-0.285c-0.348-0.191-0.53-0.409-0.544-0.658c-0.015-0.247,0.221-0.517,0.706-0.813l0.728-0.441l-2.153-1.184c-0.573-0.314-0.89-0.596-0.948-0.843c-0.057-0.249,0.063-0.463,0.364-0.646c0.294-0.181,0.658-0.259,1.088-0.237
				c0.43,0.021,0.933,0.189,1.506,0.503l2.153,1.183l3.722-2.266c0.484-0.297,0.94-0.445,1.367-0.449c0.426-0.003,0.818,0.09,1.175,0.287c0.35,0.192,0.529,0.411,0.544,0.657c0.014,0.246-0.221,0.518-0.706,0.812l-3.722,2.267z"/>
			<path d="M593.196,700.539l5.085,2.794c0.125-0.415,0.33-0.794,0.615-1.133c0.285-0.339,0.647-0.641,1.084-0.907c0.693-0.422,1.45-0.72,2.271-0.898c0.822-0.178,1.71-0.209,2.667-0.095c0.957,0.112,1.893,0.419,2.806,0.923l4.475,2.456
				c0.51-0.31,0.904-0.466,1.184-0.473c0.57-0.006,1.033,0.09,1.389,0.286c0.356,0.195,0.542,0.416,0.553,0.662c0.013,0.246-0.235,0.523-0.744,0.832l-2.011,1.226c-0.508,0.309-0.975,0.467-1.401,0.474c-0.424,0.004-0.815-0.091-1.171-0.287s-0.543-0.455-0.56-...
				c-0.008-0.166,0.242-0.405,0.753-0.715l-4.314-2.368c-0.611-0.336-1.16-0.501-1.643-0.495c-0.641,0.006-1.263,0.19-1.866,0.558c-0.445,0.271-0.737,0.567-0.875,0.89c-0.14,0.322-0.159,0.849-0.061,1.576l4.464,2.451c0.51-0.309,0.901-0.463,1.176-0.466
				c0.575-0.01,1.042,0.084,1.397,0.279c0.357,0.197,0.542,0.416,0.554,0.663c0.013,0.246-0.236,0.522-0.744,0.833l-2.011,1.224c-0.508,0.311-0.976,0.468-1.4,0.474c-0.424,0.005-0.815-0.09-1.171-0.286c-0.357-0.196-0.542-0.458-0.553-0.784
				c-0.014-0.165,0.235-0.401,0.744-0.713l-10.32-5.666l-0.335,0.203c-0.509,0.311-0.976,0.468-1.399,0.473c-0.426,0.006-0.816-0.09-1.172-0.286c-0.358-0.195-0.542-0.415-0.556-0.662c-0.011-0.245,0.236-0.523,0.746-0.832l2.345-1.429z"/>
			<path d="M618.885,693.291l-8.598,5.234c-0.483,0.293-0.939,0.443-1.366,0.446c-0.427,0.005-0.818-0.092-1.174-0.287c-0.349-0.19-0.531-0.409-0.545-0.657c-0.014-0.246,0.22-0.518,0.705-0.813l8.597-5.231c0.484-0.296,0.938-0.445,1.366-0.451
				c0.427-0.004,0.818,0.093,1.175,0.289c0.349,0.189,0.53,0.41,0.545,0.656c0.014,0.249-0.221,0.517-0.705,0.813z M623.375,695.757l-8.598,5.232c-0.485,0.295-0.938,0.446-1.361,0.454c-0.422,0.005-0.811-0.089-1.168-0.285c-0.356-0.196-0.542-0.418-0.557-0.6...
				c-0.015-0.248,0.221-0.519,0.705-0.813l8.597-5.234c0.485-0.294,0.94-0.444,1.366-0.447c0.427-0.005,0.819,0.091,1.176,0.287c0.356,0.196,0.54,0.416,0.55,0.66c0.011,0.243-0.226,0.515-0.71,0.809z"/>
			<path d="M616.656,687.063l2.575-1.567l5.079,3.517c0.262,0.183,0.398,0.34,0.406,0.469c0.01,0.13-0.072,0.246-0.242,0.35c-0.177,0.106-0.375,0.161-0.597,0.161c-0.221-0.001-0.491-0.07-0.811-0.208l-6.41-2.721z M620.823,684.527l2.575-1.568l5.079,3.517
				c0.263,0.183,0.4,0.338,0.411,0.465c0.013,0.127-0.071,0.246-0.247,0.352c-0.177,0.109-0.375,0.162-0.598,0.162c-0.221,0-0.491-0.07-0.811-0.206l-6.41-2.721z"/>
			<path d="M641.445,679.406c1.076-0.1,2.077-0.063,3.002,0.104c0.925,0.168,1.782,0.467,2.564,0.898c0.845,0.465,1.432,1.012,1.759,1.643c0.329,0.633,0.306,1.273-0.065,1.927c-0.372,0.652-1.158,1.343-2.354,2.071c-1.559,0.95-3.018,1.505-4.379,1.669
				c-0.763,0.086-1.373,0.007-1.821-0.24c-0.343-0.187-0.536-0.404-0.579-0.651c-0.043-0.248,0.072-0.456,0.347-0.624c0.19-0.115,0.464-0.19,0.823-0.23c0.524-0.046,0.952-0.125,1.287-0.238c0.502-0.178,1.097-0.479,1.785-0.896c1.172-0.714,1.84-1.33,2.003-1....
				c0.163-0.518-0.085-0.957-0.747-1.32c-0.489-0.27-1.113-0.437-1.872-0.5c-0.76-0.065-1.518-0.011-2.276,0.164c-0.434,0.103-1.029,0.352-1.783,0.747c-0.356,0.19-0.734,0.279-1.134,0.269c-0.399-0.009-0.761-0.106-1.084-0.282c-0.34-0.187-0.526-0.403-0.561-...
				c-0.035-0.246,0.097-0.462,0.398-0.646c0.667-0.405,1.021-0.624,1.058-0.656c0.231-0.177,0.393-0.391,0.484-0.644c0.091-0.255,0.068-0.51-0.069-0.771c-0.139-0.26-0.366-0.479-0.683-0.652c-0.504-0.278-1.126-0.4-1.871-0.374c-0.744,0.026-1.493,0.27-2.245,...
				c-0.969,0.588-1.378,1.224-1.227,1.894c0.042,0.198,0.044,0.341,0.005,0.425c-0.052,0.132-0.164,0.247-0.334,0.353c-0.275,0.166-0.627,0.245-1.056,0.236c-0.429-0.006-0.813-0.104-1.154-0.293c-0.534-0.291-0.753-0.76-0.655-1.404
				c0.141-0.937,0.869-1.808,2.186-2.607c1.242-0.756,2.659-1.135,4.248-1.134c1.589,0.002,2.973,0.327,4.15,0.974c0.612,0.338,1.072,0.719,1.381,1.144c0.307,0.429,0.465,0.9,0.468,1.419z"/>
			<path d="M654.152,670.653l2.617,1.436c1.55,0.851,2.654,1.898,3.316,3.138c0.661,1.241,0.287,2.288-1.124,3.147c-0.814,0.496-1.712,0.797-2.695,0.906c-0.982,0.111-2.293,0.008-3.931-0.313c-1.637-0.318-3.09-0.827-4.361-1.524l-2.618-1.438
				c-1.541-0.845-2.646-1.891-3.316-3.131c-0.667-1.24-0.297-2.29,1.115-3.148c0.806-0.49,1.698-0.791,2.678-0.906c0.979-0.109,2.29-0.006,3.935,0.307c1.644,0.315,3.105,0.824,4.384,1.527z M652.14,671.875c-1.294-0.71-2.731-1.148-4.315-1.307
				c-0.885-0.079-1.643,0.072-2.275,0.456c-0.612,0.374-0.818,0.84-0.618,1.401c0.304,0.848,1.117,1.631,2.435,2.355l2.618,1.438c1.302,0.716,2.745,1.149,4.326,1.301c0.876,0.084,1.635-0.067,2.275-0.456c0.605-0.37,0.808-0.833,0.608-1.394
				c-0.306-0.848-1.118-1.633-2.435-2.357l-2.619-1.438z"/>
			<path d="M652.844,665.033l2.577-1.566l5.078,3.517c0.263,0.183,0.398,0.337,0.406,0.469c0.009,0.128-0.071,0.245-0.243,0.349c-0.176,0.107-0.375,0.16-0.596,0.159c-0.222,0.001-0.492-0.067-0.811-0.206l-6.411-2.721z M657.012,662.497l2.575-1.568l5.079,3.5...
				c0.264,0.183,0.4,0.338,0.412,0.466c0.012,0.126-0.069,0.245-0.247,0.354c-0.177,0.107-0.375,0.161-0.597,0.161c-0.222-0.001-0.491-0.07-0.811-0.207l-6.411-2.722z"/>
			<path d="M425.65,843.611l5.805,3.189l2.87-1.746c0.508-0.312,0.977-0.468,1.4-0.473c0.424-0.006,0.815,0.089,1.172,0.283c0.356,0.197,0.541,0.418,0.554,0.663c0.012,0.246-0.235,0.522-0.745,0.835l-6.073,3.693c-0.509,0.31-0.976,0.467-1.401,0.475
				c-0.424,0.004-0.815-0.09-1.172-0.287c-0.357-0.194-0.542-0.416-0.554-0.661c-0.013-0.245,0.235-0.523,0.745-0.833l1.192-0.726l-5.804-3.19l-0.964,0.587c-0.509,0.311-0.976,0.469-1.399,0.473c-0.426,0.006-0.816-0.088-1.173-0.285
				c-0.357-0.196-0.541-0.417-0.554-0.661c-0.011-0.248,0.236-0.524,0.746-0.834l0.963-0.588l-0.905-0.498c-1.037-0.567-1.568-1.241-1.593-2.02c-0.023-0.778,0.59-1.55,1.844-2.313c0.559-0.34,1.265-0.698,2.117-1.079c0.853-0.379,1.49-0.573,1.914-0.581
				c0.424-0.006,0.807,0.085,1.148,0.271c0.364,0.199,0.568,0.418,0.611,0.657c0.045,0.237-0.068,0.437-0.338,0.604c-0.125,0.075-0.34,0.174-0.644,0.296c-1.03,0.402-1.867,0.8-2.512,1.192c-0.671,0.407-1.016,0.756-1.033,1.038
				c-0.018,0.284,0.147,0.521,0.495,0.715l0.905,0.493l3.099-1.886c0.509-0.311,0.977-0.468,1.401-0.472c0.425-0.007,0.815,0.089,1.172,0.285c0.356,0.195,0.542,0.417,0.554,0.66c0.012,0.247-0.236,0.525-0.746,0.836l-3.1,1.886z"/>
			<path d="M436.359,834.335l8.187,4.496l2.408-1.466c0.509-0.31,0.976-0.468,1.401-0.474c0.425-0.004,0.816,0.092,1.172,0.287c0.357,0.196,0.542,0.417,0.553,0.662c0.013,0.248-0.236,0.524-0.745,0.833l-6.826,4.157c-0.509,0.31-0.976,0.466-1.401,0.473
				c-0.424,0.005-0.815-0.091-1.172-0.286c-0.356-0.197-0.542-0.417-0.554-0.662c-0.013-0.246,0.236-0.525,0.745-0.834l2.408-1.465l-5.805-3.19l-1.612,0.983c-0.51,0.309-0.976,0.468-1.401,0.472c-0.424,0.005-0.815-0.09-1.172-0.285
				c-0.357-0.196-0.542-0.416-0.554-0.662c-0.013-0.246,0.235-0.524,0.745-0.833l3.623-2.206z M431.572,832.021l2.53,1.39l-2.387,1.454l-2.53-1.391l2.387-1.453z"/>
			<path d="M443.906,824.513l12.702,6.976l2.408-1.467c0.508-0.309,0.976-0.467,1.401-0.473c0.424-0.004,0.815,0.091,1.171,0.286c0.356,0.196,0.542,0.419,0.553,0.663c0.013,0.245-0.235,0.522-0.744,0.833l-6.827,4.155c-0.509,0.313-0.976,0.468-1.401,0.473
				c-0.425,0.007-0.814-0.089-1.172-0.284c-0.356-0.197-0.541-0.418-0.554-0.664c-0.013-0.245,0.236-0.523,0.745-0.831l2.408-1.467l-10.32-5.669l-1.613,0.98c-0.507,0.312-0.975,0.469-1.4,0.473c-0.424,0.007-0.814-0.089-1.172-0.283
				c-0.356-0.198-0.541-0.419-0.553-0.661c-0.012-0.247,0.235-0.526,0.745-0.836l3.622-2.204z"/>
			<path d="M455.97,817.169l12.702,6.978l2.408-1.468c0.509-0.31,0.976-0.466,1.401-0.473c0.426-0.005,0.815,0.09,1.172,0.286c0.356,0.196,0.541,0.416,0.553,0.663c0.013,0.244-0.235,0.523-0.744,0.833l-6.827,4.154c-0.508,0.312-0.975,0.469-1.399,0.474
				c-0.425,0.005-0.816-0.089-1.172-0.286c-0.356-0.195-0.542-0.417-0.554-0.662c-0.013-0.245,0.236-0.524,0.745-0.834l2.408-1.465l-10.319-5.669l-1.612,0.982c-0.509,0.309-0.977,0.466-1.402,0.472c-0.424,0.007-0.814-0.09-1.172-0.287
				c-0.355-0.193-0.541-0.415-0.554-0.66c-0.012-0.246,0.236-0.523,0.746-0.832l3.622-2.206z"/>
			<path d="M478.58,811.792l-8.597,5.234c-0.483,0.295-0.939,0.444-1.366,0.447c-0.427,0.006-0.818-0.091-1.175-0.286c-0.348-0.191-0.53-0.409-0.544-0.657c-0.015-0.246,0.22-0.517,0.705-0.811l8.597-5.235c0.483-0.295,0.939-0.444,1.367-0.448
				c0.427-0.003,0.819,0.091,1.175,0.287c0.35,0.191,0.529,0.411,0.545,0.658c0.014,0.246-0.221,0.517-0.706,0.811z M483.071,814.26l-8.598,5.233c-0.484,0.295-0.938,0.443-1.36,0.451c-0.423,0.008-0.812-0.088-1.168-0.282c-0.356-0.197-0.542-0.418-0.557-0.66...
				c-0.015-0.247,0.221-0.518,0.705-0.813l8.596-5.234c0.486-0.293,0.941-0.444,1.367-0.447c0.427-0.005,0.819,0.092,1.175,0.285c0.357,0.197,0.54,0.417,0.55,0.661c0.012,0.244-0.226,0.516-0.709,0.81z"/>
			<path d="M476.351,805.565l2.577-1.566l5.078,3.518c0.264,0.182,0.399,0.336,0.406,0.466c0.01,0.132-0.071,0.247-0.242,0.351c-0.176,0.107-0.375,0.163-0.596,0.16c-0.221,0-0.492-0.067-0.811-0.204l-6.411-2.724z M480.519,803.03l2.575-1.568l5.079,3.517
				c0.263,0.183,0.4,0.337,0.411,0.465c0.012,0.128-0.07,0.245-0.247,0.354s-0.375,0.161-0.597,0.159c-0.221,0.001-0.491-0.067-0.811-0.206l-6.411-2.72z"/>
			<path d="M488.62,797.293l5.356,2.942c0.111-0.507,0.325-0.967,0.641-1.38c0.317-0.411,0.733-0.776,1.25-1.09c1.393-0.847,3.142-1.253,5.247-1.217c2.104,0.035,3.963,0.494,5.571,1.381c1.541,0.845,2.366,1.833,2.479,2.962c0.113,1.128-0.587,2.153-2.097,3.0...
				c-0.537,0.324-1.135,0.594-1.794,0.807c-0.66,0.213-1.381,0.372-2.165,0.48l0.597,0.327l-2.347,1.428c-0.508,0.31-0.975,0.467-1.4,0.473c-0.425,0.007-0.815-0.089-1.172-0.286c-0.356-0.195-0.541-0.415-0.554-0.661c-0.012-0.245,0.236-0.522,0.745-0.834
				l0.336-0.204l-10.321-5.669l-0.334,0.204c-0.509,0.309-0.977,0.467-1.401,0.474c-0.425,0.005-0.816-0.091-1.172-0.288c-0.356-0.192-0.541-0.415-0.554-0.659c-0.012-0.247,0.237-0.523,0.745-0.834l2.345-1.428z M504.744,799.191
				c-0.982-0.538-2.104-0.819-3.366-0.84c-1.262-0.02-2.316,0.227-3.158,0.739c-0.838,0.51-1.206,1.129-1.106,1.856c0.099,0.729,0.628,1.354,1.587,1.882c0.875,0.48,1.853,0.717,2.937,0.706c1.083-0.011,2.102-0.306,3.057-0.886c0.954-0.581,1.413-1.187,1.379-...
				c-0.035-0.628-0.479-1.178-1.329-1.644z"/>
			<path d="M504.223,787.796l12.7,6.977l2.409-1.466c0.509-0.31,0.976-0.467,1.401-0.474c0.424-0.005,0.815,0.092,1.172,0.287c0.356,0.196,0.542,0.416,0.553,0.663c0.013,0.246-0.235,0.523-0.745,0.832l-6.825,4.154c-0.51,0.312-0.977,0.468-1.401,0.474
				c-0.425,0.007-0.815-0.091-1.173-0.286c-0.355-0.197-0.541-0.415-0.553-0.663c-0.013-0.245,0.236-0.521,0.745-0.831l2.408-1.466l-10.32-5.67l-1.612,0.982c-0.509,0.31-0.975,0.467-1.401,0.472c-0.424,0.006-0.814-0.09-1.172-0.284
				c-0.356-0.195-0.541-0.418-0.554-0.663c-0.012-0.245,0.237-0.522,0.745-0.835l3.623-2.203z"/>
			<path d="M524.066,780.944l8.188,4.496c0.507-0.309,0.975-0.467,1.4-0.472c0.424-0.007,0.815,0.089,1.171,0.284c0.356,0.197,0.542,0.417,0.555,0.663c0.012,0.245-0.236,0.523-0.745,0.832l-2.011,1.225l-0.569-0.313c-0.261,0.522-0.573,0.986-0.94,1.389
				c-0.367,0.406-0.785,0.751-1.256,1.037c-0.659,0.402-1.395,0.659-2.208,0.772c-0.813,0.114-1.65,0.096-2.513-0.051c-0.621-0.106-1.246-0.334-1.875-0.678l-5.128-2.817l-0.335,0.204c-0.509,0.31-0.976,0.468-1.4,0.473c-0.425,0.006-0.815-0.091-1.172-0.285
				c-0.356-0.196-0.542-0.416-0.553-0.662c-0.012-0.245,0.236-0.523,0.745-0.834l2.346-1.429l7.093,3.897c0.504,0.277,0.977,0.419,1.419,0.423c0.443,0.005,0.876-0.121,1.301-0.382c0.406-0.246,0.746-0.563,1.023-0.952c0.279-0.387,0.511-0.929,0.701-1.618
				l-4.862-2.671l-0.733,0.446c-0.509,0.311-0.977,0.466-1.401,0.472s-0.815-0.09-1.172-0.285c-0.356-0.195-0.541-0.417-0.554-0.664c-0.011-0.243,0.236-0.522,0.745-0.832l2.743-1.669z"/>
			<path d="M543.425,776.688l-8.27,5.034c0.825,0.212,1.694,0.259,2.606,0.14c0.911-0.115,1.822-0.451,2.733-1.006c0.746-0.455,1.55-1.163,2.413-2.12c0.356-0.397,0.632-0.654,0.83-0.773c0.268-0.163,0.605-0.239,1.013-0.227c0.407,0.01,0.781,0.11,1.121,0.296
				c0.31,0.169,0.474,0.373,0.494,0.612c0.023,0.316-0.342,0.854-1.097,1.615c-0.758,0.757-1.604,1.424-2.54,1.993c-1.61,0.98-3.436,1.469-5.479,1.465c-2.041-0.001-3.846-0.433-5.418-1.297c-1.671-0.918-2.511-1.983-2.514-3.196
				c-0.006-1.211,0.674-2.232,2.036-3.062c0.817-0.496,1.74-0.86,2.765-1.09c1.026-0.23,1.902-0.337,2.631-0.323c1.044,0.026,2.144,0.181,3.295,0.456c0.798,0.196,1.585,0.508,2.36,0.933l1.021,0.55z M538.824,776.729c-0.992-0.186-1.904-0.22-2.741-0.101
				c-0.835,0.117-1.599,0.386-2.288,0.807c-0.684,0.415-1.105,0.869-1.268,1.355c-0.162,0.489-0.06,1.018,0.307,1.585l5.989-3.646z"/>
			<path d="M536.667,768.85l2.575-1.568l5.08,3.519c0.261,0.182,0.397,0.337,0.405,0.467c0.01,0.13-0.071,0.247-0.24,0.35c-0.178,0.109-0.376,0.163-0.599,0.162c-0.221-0.001-0.49-0.07-0.81-0.207l-6.411-2.722z M540.833,766.313l2.576-1.566l5.08,3.518
				c0.262,0.182,0.4,0.337,0.411,0.465c0.013,0.127-0.07,0.244-0.247,0.351c-0.177,0.108-0.375,0.162-0.597,0.162c-0.222,0.002-0.493-0.069-0.811-0.207l-6.412-2.722z"/>
			<path d="M555.92,756.687l9.988,12.989c0.252,0.328,0.375,0.564,0.369,0.714c-0.003,0.192-0.126,0.363-0.367,0.508c-0.272,0.167-0.625,0.245-1.055,0.24c-0.43-0.008-0.793-0.092-1.087-0.255c-0.209-0.114-0.439-0.331-0.685-0.649l-9.986-12.99
				c-0.248-0.325-0.372-0.558-0.371-0.704c0.014-0.196,0.14-0.365,0.376-0.51c0.275-0.17,0.626-0.25,1.053-0.245c0.425,0.008,0.786,0.091,1.081,0.252c0.209,0.114,0.438,0.331,0.683,0.65z"/>
			<path d="M573.999,754.927l-10.869,1.618c-0.547,0.085-0.96,0.115-1.241,0.091c-0.277-0.024-0.546-0.109-0.806-0.253c-0.328-0.181-0.509-0.395-0.543-0.649c-0.034-0.253,0.087-0.464,0.362-0.63c0.171-0.104,0.544-0.202,1.123-0.294l16.107-2.396l-3.323,9.42
				c-0.122,0.342-0.267,0.565-0.437,0.669c-0.275,0.167-0.633,0.248-1.072,0.241c-0.438-0.006-0.827-0.101-1.163-0.286c-0.259-0.145-0.418-0.294-0.476-0.454c-0.058-0.157-0.026-0.397,0.094-0.72l2.243-6.356z"/>
			<path d="M344.934,927.463l10.864-1.621c0.548-0.087,0.96-0.116,1.238-0.091c0.278,0.025,0.547,0.107,0.806,0.25c0.329,0.18,0.512,0.401,0.549,0.654c0.038,0.256-0.078,0.466-0.346,0.628c-0.177,0.107-0.559,0.205-1.145,0.293l-16.097,2.403l3.312-9.425
				c0.128-0.338,0.278-0.562,0.448-0.665c0.275-0.166,0.633-0.247,1.072-0.241c0.439,0.007,0.824,0.1,1.152,0.281c0.259,0.142,0.418,0.294,0.475,0.453c0.057,0.158,0.026,0.4-0.095,0.72l-2.234,6.36z"/>
			<path d="M355.301,911.906l9.988,12.988c0.252,0.328,0.375,0.565,0.37,0.713c-0.005,0.195-0.127,0.365-0.367,0.511c-0.272,0.165-0.625,0.245-1.055,0.238c-0.43-0.007-0.794-0.093-1.089-0.255c-0.209-0.115-0.438-0.332-0.682-0.647l-9.987-12.991
				c-0.247-0.325-0.371-0.56-0.371-0.703c0.015-0.198,0.14-0.368,0.376-0.513c0.276-0.167,0.627-0.248,1.054-0.241c0.425,0.005,0.787,0.088,1.08,0.252c0.21,0.114,0.438,0.33,0.683,0.648z"/>
			<path d="M370.366,908.435l-0.718-0.396l2.345-1.425c0.509-0.313,0.976-0.47,1.4-0.474c0.424-0.006,0.815,0.089,1.172,0.285c0.355,0.196,0.541,0.419,0.553,0.663c0.013,0.244-0.236,0.522-0.746,0.833l-0.334,0.201l8.689,4.775c0.837,0.459,1.421,0.952,1.748,...
				c0.328,0.525,0.409,1.098,0.245,1.721c-0.165,0.622-0.633,1.167-1.405,1.637l-2.276,1.386c-0.484,0.294-0.938,0.444-1.366,0.447c-0.427,0.006-0.814-0.089-1.163-0.279c-0.356-0.196-0.542-0.416-0.556-0.664c-0.014-0.248,0.221-0.518,0.707-0.813l2.223-1.354
				c0.616-0.374,0.895-0.774,0.838-1.196c-0.057-0.422-0.387-0.798-0.99-1.131l-1.16-0.636c-0.106,0.457-0.306,0.871-0.597,1.246c-0.292,0.374-0.68,0.708-1.166,1.002c-1.368,0.835-3.055,1.235-5.062,1.201c-2.007-0.032-3.804-0.487-5.397-1.361
				c-1.6-0.879-2.481-1.896-2.641-3.055c-0.16-1.156,0.443-2.15,1.812-2.984c0.51-0.31,1.085-0.558,1.723-0.743c0.637-0.184,1.344-0.305,2.123-0.362z M374.944,910.948c-0.88-0.483-1.919-0.738-3.114-0.757c-1.194-0.023-2.176,0.2-2.943,0.667
				c-0.769,0.469-1.103,1.046-1.004,1.733c0.099,0.689,0.59,1.276,1.47,1.761c0.888,0.487,1.929,0.741,3.12,0.763c1.191,0.019,2.171-0.207,2.938-0.673c0.768-0.467,1.104-1.045,1.009-1.729c-0.096-0.689-0.587-1.275-1.476-1.765z"/>
			<path d="M385.443,902.804l-10.869,1.615c-0.548,0.087-0.961,0.118-1.24,0.092c-0.278-0.022-0.547-0.107-0.806-0.25c-0.328-0.18-0.509-0.397-0.543-0.651c-0.034-0.253,0.086-0.464,0.362-0.631c0.17-0.105,0.543-0.202,1.122-0.294l16.109-2.396l-3.325,9.42
				c-0.121,0.344-0.266,0.567-0.437,0.67c-0.274,0.168-0.63,0.248-1.071,0.242c-0.439-0.007-0.827-0.104-1.164-0.286c-0.26-0.144-0.418-0.295-0.475-0.453c-0.058-0.159-0.026-0.4,0.093-0.721l2.243-6.356z"/>
			<path d="M337.323,965.19l10.863-1.62c0.548-0.086,0.961-0.117,1.239-0.092c0.277,0.024,0.547,0.108,0.806,0.25c0.329,0.181,0.512,0.399,0.549,0.654c0.038,0.255-0.077,0.465-0.346,0.629c-0.176,0.106-0.558,0.204-1.145,0.293l-16.096,2.402l3.313-9.426
				c0.128-0.338,0.278-0.56,0.448-0.663c0.274-0.167,0.631-0.248,1.071-0.241c0.44,0.006,0.826,0.101,1.152,0.28c0.26,0.143,0.419,0.294,0.476,0.453c0.059,0.159,0.027,0.399-0.095,0.72l-2.233,6.36z"/>
			<path d="M347.691,949.631l9.988,12.991c0.251,0.329,0.374,0.566,0.369,0.716c-0.005,0.192-0.126,0.361-0.367,0.509c-0.273,0.165-0.625,0.245-1.056,0.236c-0.43-0.006-0.793-0.092-1.088-0.254c-0.209-0.116-0.437-0.332-0.683-0.647l-9.987-12.989
				c-0.247-0.328-0.371-0.562-0.37-0.706c0.015-0.195,0.139-0.368,0.376-0.511c0.276-0.167,0.627-0.249,1.053-0.243c0.425,0.006,0.787,0.09,1.081,0.25c0.21,0.116,0.438,0.333,0.683,0.648z"/>
			<path d="M364.781,947.34c-0.564,0.067-1.085,0.178-1.563,0.329c-0.478,0.152-0.912,0.348-1.303,0.586c-0.775,0.472-1.24,0.929-1.393,1.372c-0.072,0.196-0.029,0.335,0.125,0.421c0.178,0.097,0.49,0.109,0.932,0.037c0.333-0.059,0.919-0.275,1.757-0.653
				c1.545-0.691,2.689-1.136,3.432-1.334c0.973-0.265,1.931-0.353,2.869-0.27c0.94,0.083,1.722,0.294,2.35,0.638c0.851,0.47,1.246,1.055,1.185,1.755c-0.08,1.007-0.845,1.952-2.296,2.835c-0.582,0.354-1.177,0.649-1.79,0.885c-0.61,0.236-1.234,0.417-1.874,0.5...
				c0.004,0.117-0.021,0.224-0.076,0.322c-0.057,0.101-0.144,0.185-0.262,0.258c-0.315,0.191-0.688,0.276-1.119,0.256c-0.431-0.021-0.935-0.189-1.509-0.504l-0.804-0.442c-0.574-0.316-0.891-0.597-0.947-0.845c-0.059-0.248,0.064-0.463,0.366-0.647
				c0.242-0.148,0.525-0.228,0.846-0.241c0.321-0.013,0.72,0.059,1.196,0.213c0.615-0.018,1.215-0.111,1.803-0.288c0.587-0.174,1.162-0.435,1.723-0.774c0.918-0.56,1.46-1.089,1.63-1.584c0.07-0.239,0.013-0.411-0.173-0.513c-0.309-0.17-0.737-0.206-1.283-0.10...
				c-0.546,0.1-1.431,0.441-2.652,1.024c-1.809,0.869-3.273,1.312-4.388,1.326c-1.108,0.02-2.076-0.198-2.904-0.653c-0.852-0.468-1.257-1.041-1.214-1.72c0.048-0.927,0.738-1.793,2.071-2.605c0.462-0.282,0.959-0.525,1.49-0.729c0.529-0.205,1.096-0.367,1.701-...
				c0.014-0.135,0.048-0.25,0.102-0.346c0.053-0.097,0.125-0.173,0.216-0.227c0.274-0.167,0.626-0.24,1.052-0.216c0.427,0.021,0.928,0.191,1.502,0.505l0.583,0.32c0.519,0.287,0.821,0.512,0.901,0.68c0.147,0.323,0.041,0.594-0.318,0.811
				c-0.243,0.149-0.544,0.23-0.905,0.245s-0.713-0.044-1.059-0.172z"/>
			<path d="M379.574,943.988l-3.122-4.237c-0.503,0.307-0.889,0.461-1.154,0.466c-0.584,0.007-1.053-0.088-1.411-0.284c-0.357-0.195-0.542-0.419-0.554-0.662c-0.013-0.245,0.234-0.521,0.737-0.827l2.568-1.566c0.506-0.308,0.97-0.461,1.395-0.469
				c0.425-0.005,0.815,0.091,1.172,0.287c0.357,0.194,0.542,0.416,0.553,0.662c0.013,0.244-0.233,0.522-0.739,0.829l-0.336,0.203l4.821,6.547l-2.094,1.275l-11.553-2.448l-0.292,0.178c-0.506,0.308-0.971,0.464-1.396,0.47c-0.425,0.005-0.815-0.091-1.171-0.285
				c-0.356-0.196-0.542-0.417-0.555-0.662c-0.012-0.245,0.235-0.522,0.741-0.83l2.527-1.539c0.503-0.307,0.966-0.462,1.391-0.467s0.815,0.09,1.172,0.287c0.355,0.195,0.543,0.454,0.56,0.783c0.009,0.165-0.239,0.398-0.743,0.707l7.481,1.583z"/>
			<path d="M386.882,931.476l-0.719-0.395l2.344-1.427c0.51-0.311,0.977-0.469,1.401-0.473c0.425-0.007,0.816,0.088,1.172,0.284c0.357,0.195,0.542,0.416,0.554,0.662c0.012,0.244-0.236,0.522-0.745,0.835l-0.335,0.202l8.689,4.773
				c0.838,0.46,1.421,0.953,1.749,1.477c0.328,0.526,0.409,1.098,0.244,1.72s-0.634,1.169-1.406,1.638l-2.276,1.386c-0.484,0.297-0.938,0.445-1.366,0.448c-0.427,0.005-0.814-0.089-1.163-0.279c-0.356-0.195-0.542-0.419-0.557-0.664
				c-0.013-0.249,0.222-0.52,0.708-0.815l2.223-1.352c0.616-0.374,0.896-0.774,0.837-1.197c-0.056-0.421-0.387-0.799-0.99-1.13l-1.16-0.638c-0.106,0.457-0.307,0.872-0.597,1.248c-0.293,0.374-0.681,0.707-1.165,1.004c-1.369,0.831-3.055,1.232-5.063,1.199
				c-2.006-0.033-3.804-0.486-5.396-1.362c-1.601-0.88-2.479-1.896-2.641-3.054c-0.161-1.155,0.444-2.152,1.812-2.984c0.511-0.312,1.085-0.559,1.722-0.743c0.638-0.184,1.345-0.306,2.124-0.363z M391.459,933.989c-0.88-0.483-1.919-0.736-3.114-0.758
				c-1.194-0.022-2.176,0.201-2.944,0.669c-0.768,0.466-1.102,1.045-1.003,1.733c0.098,0.69,0.589,1.276,1.47,1.76c0.889,0.488,1.928,0.742,3.121,0.762c1.19,0.021,2.169-0.203,2.937-0.672c0.768-0.467,1.104-1.043,1.01-1.73c-0.096-0.688-0.588-1.274-1.476-1....
				/>
			<path d="M401.959,925.846l-10.87,1.617c-0.547,0.085-0.961,0.115-1.241,0.088c-0.276-0.022-0.546-0.105-0.807-0.25c-0.327-0.18-0.508-0.396-0.543-0.65c-0.032-0.254,0.088-0.463,0.362-0.631c0.17-0.103,0.545-0.2,1.123-0.293l16.108-2.396l-3.324,9.418
				c-0.122,0.343-0.267,0.566-0.436,0.67c-0.275,0.166-0.632,0.249-1.072,0.241c-0.439-0.006-0.827-0.102-1.163-0.286c-0.259-0.144-0.417-0.294-0.475-0.453c-0.058-0.158-0.026-0.4,0.093-0.72l2.244-6.355z"/>
		</g>
		<g id="_x0034_rthBatik" style="fill:#000000;stroke:none;">
			<path d="M480.288,891.639l-27.513-14.832l11.012-6.823c2.351-1.456,4.846-2.237,7.483-2.341c2.638-0.105,5.133,0.477,7.486,1.746c1.501,0.809,2.438,1.673,2.81,2.598c0.372,0.922,0.138,1.817-0.702,2.685c1.949-0.757,3.845-1.08,5.689-0.976
				c1.844,0.11,3.675,0.653,5.493,1.634c2.572,1.388,3.788,2.881,3.649,4.486c-0.138,1.604-1.614,3.275-4.427,5.02l-10.98,6.804z M467.061,875.542l3.845,2.074l1.092-0.679c0.675-0.418,1.024-0.826,1.046-1.223c0.022-0.398-0.28-0.765-0.905-1.103
				c-0.624-0.337-1.277-0.482-1.955-0.438s-1.356,0.273-2.031,0.69l-1.092,0.678z M476.793,880.788l4.445,2.396l1.393-0.862c0.828-0.512,1.271-1.009,1.33-1.494c0.059-0.484-0.266-0.916-0.975-1.302c-0.722-0.388-1.496-0.547-2.321-0.476

examples/batik3D.svg  view on Meta::CPAN

			<path d="M520.488,837.235c1.393,0.752,2.117,1.584,2.172,2.502c0.057,0.917-0.567,1.778-1.867,2.584c-1.311,0.813-2.769,1.235-4.373,1.271c-1.604,0.034-3.095-0.32-4.474-1.064c-1.38-0.744-2.086-1.566-2.116-2.47c-0.03-0.905,0.619-1.769,1.951-2.596
				c1.322-0.817,2.759-1.246,4.311-1.284c1.551-0.039,3.016,0.314,4.396,1.058z M537.756,856.033l-19.403-10.46l7.889-4.888l19.404,10.461l-7.89,4.887z"/>
			<path d="M549.209,848.938l-29.076-15.675l7.79-4.826l17.084,9.21l-4.096-6.051l9.246-5.728l3.556,8.604l16.149,1.669l-9.331,5.781l-10.795-1.726l7.262,3.915l-7.789,4.826z"/>
		</g>
		<g id="CSS_XSL" style="fill:#CF0E00;stroke:none;">
			<path d="M475.61,949.512c-0.75,0.024-1.409,0.108-1.979,0.247c-0.569,0.139-1.057,0.34-1.464,0.604c-0.673,0.435-0.986,0.895-0.942,1.38s0.433,0.916,1.164,1.293c0.7,0.358,1.465,0.526,2.297,0.502s1.557-0.237,2.177-0.639c0.389-0.251,0.675-0.558,0.859-0....
				c0.183-0.364,0.27-0.779,0.259-1.247l6.632,3.409c-0.279,0.653-0.642,1.237-1.085,1.751c-0.446,0.512-0.975,0.969-1.593,1.366c-1.014,0.657-2.16,1.156-3.438,1.503c-1.278,0.344-2.656,0.524-4.135,0.541c-1.568,0.012-3.084-0.144-4.55-0.469
				c-1.464-0.322-2.813-0.801-4.043-1.434c-0.853-0.438-1.59-0.922-2.215-1.453c-0.624-0.529-1.116-1.098-1.477-1.702c-0.684-1.148-0.859-2.254-0.526-3.314c0.333-1.062,1.159-2.021,2.48-2.874c0.58-0.376,1.266-0.732,2.055-1.068
				c0.788-0.335,1.699-0.657,2.733-0.966l6.79,3.491z"/>
			<path d="M484.745,953.313l-3.409-3.788c1.332-0.163,2.458-0.361,3.377-0.594c0.918-0.235,1.592-0.489,2.024-0.769c0.352-0.228,0.537-0.443,0.555-0.649c0.018-0.205-0.124-0.385-0.424-0.54c-0.419-0.215-1.118-0.12-2.094,0.288
				c-0.329,0.139-0.589,0.245-0.782,0.318c-1.673,0.632-3.182,0.943-4.528,0.928c-1.347-0.012-2.645-0.339-3.897-0.983c-1.758-0.903-2.597-2.027-2.514-3.371c0.082-1.344,1.083-2.637,3.004-3.88c0.96-0.622,1.99-1.159,3.089-1.61
				c1.099-0.454,2.252-0.815,3.464-1.081l3.419,3.644c-1.122,0.14-2.056,0.304-2.802,0.492c-0.745,0.189-1.299,0.4-1.659,0.635c-0.3,0.193-0.464,0.393-0.492,0.592c-0.03,0.197,0.085,0.366,0.343,0.496c0.419,0.217,1.283,0.058,2.591-0.478
				c0.311-0.124,0.559-0.225,0.742-0.293c1.718-0.661,3.264-1,4.64-1.021c1.375-0.019,2.666,0.281,3.872,0.903c1.875,0.963,2.788,2.147,2.734,3.553c-0.054,1.403-1.092,2.763-3.118,4.072c-1.102,0.713-2.334,1.331-3.699,1.855c-1.365,0.528-2.844,0.954-4.437,1...
				"/>
			<path d="M497.945,944.771l-3.41-3.788c1.333-0.164,2.458-0.359,3.376-0.594c0.918-0.232,1.594-0.489,2.025-0.769c0.352-0.226,0.538-0.442,0.555-0.65c0.019-0.204-0.123-0.384-0.423-0.538c-0.419-0.216-1.117-0.119-2.094,0.287
				c-0.329,0.139-0.588,0.245-0.781,0.319c-1.673,0.631-3.182,0.942-4.529,0.93c-1.346-0.014-2.645-0.343-3.896-0.985c-1.759-0.903-2.597-2.026-2.515-3.371c0.083-1.346,1.084-2.636,3.004-3.879c0.961-0.623,1.99-1.159,3.089-1.612
				c1.099-0.453,2.253-0.813,3.465-1.082l3.419,3.646c-1.122,0.141-2.056,0.305-2.8,0.492c-0.746,0.189-1.3,0.401-1.661,0.635c-0.299,0.194-0.463,0.392-0.492,0.59c-0.03,0.2,0.085,0.366,0.343,0.5c0.419,0.215,1.282,0.056,2.591-0.479
				c0.311-0.125,0.559-0.224,0.742-0.293c1.719-0.661,3.264-1.001,4.639-1.02c1.375-0.021,2.666,0.282,3.873,0.9c1.875,0.965,2.787,2.149,2.735,3.553c-0.055,1.405-1.094,2.763-3.12,4.073c-1.101,0.712-2.334,1.33-3.698,1.857c-1.365,0.526-2.844,0.95-4.436,1....
				/>
			<path d="M519.063,928.52c-1.066-0.549-1.619-1.253-1.652-2.113s0.472-1.631,1.52-2.308c1.047-0.679,2.318-1.059,3.809-1.141c1.49-0.082,2.771,0.152,3.838,0.7c1.067,0.55,1.619,1.254,1.653,2.116c0.033,0.86-0.478,1.632-1.534,2.314
				c-1.056,0.686-2.327,1.065-3.808,1.14c-1.483,0.077-2.758-0.159-3.826-0.709z"/>
			<path d="M528.339,922.518c-1.068-0.548-1.619-1.252-1.654-2.113c-0.033-0.86,0.474-1.63,1.521-2.308c1.047-0.678,2.317-1.057,3.809-1.14c1.49-0.081,2.771,0.151,3.838,0.7c1.067,0.55,1.618,1.255,1.653,2.115c0.033,0.86-0.478,1.633-1.534,2.316
				s-2.326,1.063-3.808,1.14c-1.482,0.075-2.757-0.161-3.825-0.711z"/>
			<path d="M537.614,916.518c-1.068-0.549-1.619-1.253-1.653-2.114c-0.034-0.861,0.472-1.632,1.52-2.308c1.048-0.678,2.317-1.058,3.809-1.141c1.491-0.081,2.771,0.152,3.838,0.699c1.068,0.551,1.62,1.256,1.654,2.116c0.032,0.861-0.478,1.634-1.534,2.317
				c-1.057,0.683-2.327,1.063-3.809,1.14c-1.482,0.075-2.756-0.161-3.825-0.71z"/>
			<path d="M557.828,907.396l-3.142-8.011l-13.188-0.834l7.478-4.839l3.342,0.673c0.417,0.08,0.792,0.163,1.126,0.248s0.641,0.174,0.921,0.267c-0.28-0.206-0.577-0.502-0.889-0.889c-0.087-0.107-0.156-0.188-0.205-0.243l-1.554-1.829l7.522-4.868l3.181,7.31
				l14.216,0.847l-7.871,5.092l-3.543-0.56c-0.354-0.061-0.708-0.135-1.063-0.225c-0.354-0.089-0.702-0.187-1.044-0.292c0.293,0.225,0.532,0.424,0.715,0.599c0.182,0.178,0.334,0.356,0.455,0.542l1.303,1.991l-7.76,5.021z"/>
			<path d="M574.484,895.249l-3.41-3.789c1.333-0.162,2.458-0.36,3.377-0.593c0.919-0.231,1.593-0.488,2.025-0.768c0.352-0.228,0.537-0.444,0.555-0.649c0.018-0.206-0.123-0.386-0.424-0.541c-0.419-0.215-1.117-0.117-2.094,0.288
				c-0.329,0.139-0.589,0.246-0.782,0.318c-1.673,0.633-3.182,0.942-4.529,0.929c-1.346-0.012-2.644-0.34-3.897-0.982c-1.757-0.904-2.596-2.027-2.513-3.372c0.083-1.344,1.083-2.637,3.004-3.879c0.961-0.624,1.99-1.159,3.09-1.614
				c1.099-0.451,2.252-0.812,3.464-1.079l3.419,3.644c-1.121,0.14-2.055,0.304-2.802,0.492c-0.745,0.19-1.298,0.401-1.659,0.635c-0.299,0.193-0.464,0.392-0.493,0.592s0.086,0.364,0.344,0.497c0.419,0.217,1.283,0.057,2.591-0.478
				c0.312-0.125,0.558-0.224,0.742-0.293c1.718-0.661,3.264-1,4.64-1.021c1.375-0.02,2.666,0.283,3.872,0.902c1.876,0.965,2.788,2.148,2.734,3.553s-1.093,2.763-3.118,4.073c-1.102,0.712-2.334,1.33-3.699,1.856s-2.843,0.951-4.436,1.279z"/>
			<path d="M590.416,886.313l-25.019-12.862l6.642-4.295l25.019,12.859l-6.642,4.298z"/>
			<path d="M605.367,872.681c-1.067-0.548-1.619-1.255-1.652-2.115c-0.034-0.862,0.472-1.63,1.52-2.308c1.048-0.68,2.317-1.058,3.809-1.141c1.49-0.081,2.771,0.152,3.837,0.701c1.068,0.549,1.619,1.253,1.654,2.113c0.032,0.861-0.478,1.635-1.533,2.317
				c-1.057,0.684-2.328,1.063-3.809,1.14c-1.482,0.077-2.756-0.16-3.825-0.708z"/>
			<path d="M614.643,866.678c-1.067-0.548-1.618-1.253-1.653-2.113c-0.034-0.861,0.473-1.631,1.52-2.309s2.317-1.058,3.809-1.141c1.491-0.082,2.771,0.152,3.838,0.703c1.069,0.548,1.619,1.253,1.652,2.113s-0.477,1.633-1.533,2.316
				c-1.057,0.684-2.326,1.064-3.808,1.14c-1.482,0.077-2.757-0.16-3.825-0.71z"/>
			<path d="M623.918,860.677c-1.068-0.549-1.62-1.253-1.652-2.114c-0.035-0.859,0.471-1.63,1.519-2.309c1.048-0.677,2.318-1.057,3.809-1.138c1.491-0.083,2.771,0.151,3.838,0.7c1.068,0.548,1.619,1.255,1.652,2.115c0.033,0.859-0.478,1.633-1.533,2.315
				c-1.057,0.684-2.326,1.063-3.809,1.141c-1.482,0.075-2.757-0.163-3.824-0.711z"/>
			<path d="M647.239,838.464c-0.749,0.025-1.408,0.108-1.977,0.246c-0.57,0.141-1.059,0.341-1.465,0.604c-0.673,0.434-0.986,0.895-0.942,1.38c0.044,0.486,0.433,0.916,1.165,1.293c0.7,0.358,1.465,0.526,2.297,0.501c0.832-0.022,1.557-0.236,2.177-0.637
				c0.389-0.254,0.675-0.56,0.859-0.923c0.183-0.363,0.269-0.777,0.258-1.244l6.632,3.407c-0.278,0.654-0.642,1.238-1.085,1.751c-0.446,0.513-0.976,0.968-1.592,1.368c-1.013,0.654-2.159,1.153-3.437,1.498c-1.278,0.347-2.657,0.527-4.135,0.543
				c-1.568,0.012-3.085-0.143-4.55-0.467s-2.813-0.802-4.043-1.434c-0.853-0.439-1.591-0.923-2.215-1.454c-0.624-0.529-1.116-1.098-1.478-1.702c-0.684-1.149-0.859-2.255-0.526-3.315c0.333-1.061,1.16-2.02,2.481-2.873c0.582-0.377,1.267-0.73,2.055-1.067
				s1.699-0.658,2.733-0.966l6.789,3.49z"/>
			<path d="M656.375,842.264l-3.411-3.788c1.333-0.164,2.458-0.36,3.377-0.594c0.918-0.232,1.593-0.488,2.024-0.768c0.352-0.229,0.538-0.444,0.556-0.649c0.018-0.205-0.123-0.385-0.425-0.538c-0.418-0.216-1.117-0.121-2.093,0.286
				c-0.329,0.139-0.589,0.245-0.782,0.318c-1.672,0.631-3.182,0.942-4.528,0.928c-1.346-0.012-2.644-0.339-3.896-0.983c-1.758-0.903-2.597-2.026-2.514-3.371c0.082-1.343,1.083-2.638,3.004-3.88c0.96-0.62,1.99-1.157,3.09-1.611c1.098-0.453,2.253-0.813,3.464-...
				l3.418,3.645c-1.121,0.14-2.055,0.304-2.802,0.493c-0.745,0.189-1.299,0.401-1.659,0.633c-0.301,0.193-0.464,0.392-0.494,0.591c-0.028,0.2,0.086,0.367,0.344,0.499c0.42,0.216,1.282,0.057,2.59-0.479c0.312-0.124,0.559-0.223,0.743-0.292
				c1.717-0.661,3.263-1.001,4.64-1.021c1.374-0.02,2.665,0.28,3.871,0.901c1.876,0.965,2.788,2.148,2.735,3.553c-0.054,1.405-1.094,2.762-3.119,4.073c-1.101,0.713-2.335,1.331-3.698,1.855c-1.365,0.528-2.845,0.953-4.436,1.28z"/>
			<path d="M669.574,833.723l-3.41-3.787c1.333-0.163,2.458-0.36,3.377-0.594c0.919-0.231,1.593-0.488,2.025-0.77c0.351-0.226,0.536-0.441,0.555-0.647c0.018-0.205-0.123-0.386-0.424-0.539c-0.42-0.216-1.117-0.12-2.094,0.287c-0.328,0.137-0.588,0.243-0.781,0...
				c-1.673,0.631-3.182,0.941-4.529,0.93c-1.346-0.014-2.644-0.342-3.896-0.984c-1.757-0.904-2.597-2.027-2.514-3.372c0.082-1.344,1.083-2.638,3.004-3.881c0.96-0.62,1.989-1.156,3.089-1.61c1.099-0.453,2.253-0.813,3.464-1.081l3.418,3.645
				c-1.121,0.138-2.055,0.303-2.801,0.492c-0.745,0.189-1.3,0.402-1.66,0.635c-0.299,0.193-0.463,0.391-0.493,0.59s0.086,0.366,0.344,0.5c0.419,0.214,1.282,0.056,2.59-0.478c0.312-0.129,0.559-0.225,0.742-0.295c1.718-0.661,3.264-1.001,4.639-1.021
				c1.375-0.019,2.666,0.281,3.872,0.901c1.876,0.965,2.788,2.15,2.735,3.552c-0.054,1.405-1.093,2.765-3.118,4.075c-1.102,0.712-2.335,1.33-3.699,1.856c-1.365,0.524-2.844,0.951-4.437,1.277z"/>
			<path d="M690.693,817.472c-1.067-0.548-1.619-1.253-1.652-2.115c-0.035-0.859,0.472-1.63,1.52-2.307c1.048-0.677,2.318-1.059,3.809-1.139c1.491-0.082,2.771,0.151,3.838,0.7c1.068,0.548,1.619,1.252,1.653,2.113c0.033,0.861-0.478,1.633-1.533,2.316
				c-1.057,0.685-2.326,1.063-3.809,1.141c-1.482,0.076-2.757-0.16-3.825-0.71z"/>
			<path d="M699.968,811.47c-1.067-0.547-1.618-1.252-1.652-2.112c-0.034-0.861,0.472-1.63,1.519-2.31c1.048-0.678,2.317-1.056,3.81-1.139c1.491-0.083,2.771,0.152,3.837,0.7c1.068,0.55,1.62,1.255,1.654,2.115c0.033,0.861-0.478,1.633-1.534,2.315
				c-1.057,0.685-2.327,1.063-3.808,1.14c-1.482,0.076-2.757-0.159-3.826-0.71z"/>
			<path d="M709.243,805.47c-1.066-0.549-1.618-1.253-1.653-2.113c-0.033-0.862,0.472-1.632,1.521-2.309c1.047-0.678,2.317-1.058,3.808-1.141c1.491-0.08,2.771,0.153,3.838,0.7c1.067,0.55,1.619,1.254,1.653,2.116c0.033,0.861-0.479,1.632-1.534,2.316
				c-1.057,0.685-2.327,1.063-3.808,1.139c-1.482,0.076-2.757-0.161-3.825-0.709z"/>
			<path d="M729.457,796.35l-3.142-8.011l-13.188-0.835l7.478-4.838l3.343,0.671c0.417,0.081,0.792,0.164,1.125,0.249c0.334,0.085,0.641,0.174,0.922,0.267c-0.28-0.207-0.578-0.503-0.89-0.888c-0.087-0.107-0.154-0.188-0.204-0.245l-1.555-1.827l7.523-4.868
				l3.182,7.309l14.215,0.845l-7.871,5.095l-3.543-0.562c-0.354-0.06-0.708-0.134-1.063-0.223c-0.353-0.09-0.702-0.188-1.044-0.292c0.294,0.224,0.533,0.423,0.715,0.6c0.183,0.175,0.334,0.354,0.455,0.541l1.303,1.991l-7.76,5.021z"/>
			<path d="M746.113,784.2l-3.41-3.788c1.333-0.163,2.458-0.359,3.376-0.592c0.919-0.233,1.593-0.489,2.025-0.77c0.352-0.226,0.537-0.442,0.555-0.647c0.018-0.206-0.123-0.388-0.424-0.541c-0.418-0.215-1.117-0.119-2.094,0.287c-0.328,0.139-0.589,0.243-0.781,...
				c-1.672,0.632-3.182,0.94-4.529,0.929c-1.346-0.013-2.644-0.339-3.896-0.983c-1.759-0.904-2.597-2.027-2.515-3.372c0.083-1.343,1.084-2.637,3.005-3.879c0.961-0.623,1.99-1.159,3.089-1.612c1.098-0.452,2.253-0.813,3.464-1.081l3.419,3.645
				c-1.121,0.14-2.055,0.303-2.8,0.492c-0.746,0.188-1.301,0.401-1.661,0.635c-0.3,0.194-0.463,0.392-0.492,0.59c-0.029,0.2,0.085,0.366,0.344,0.499c0.419,0.216,1.282,0.057,2.591-0.479c0.311-0.125,0.558-0.224,0.742-0.293c1.718-0.66,3.264-1.001,4.639-1.02...
				s2.666,0.28,3.873,0.9c1.875,0.967,2.787,2.149,2.734,3.554c-0.054,1.405-1.093,2.763-3.119,4.072c-1.101,0.713-2.334,1.333-3.699,1.857c-1.365,0.526-2.844,0.95-4.436,1.278z"/>
			<path d="M762.045,775.266l-25.018-12.864l6.641-4.295l25.018,12.86l-6.641,4.299z"/>
		</g>
		<g id="_x0032_ndBatik" style="fill:#000000;stroke:none;">
			<path d="M494.437,733.442L445.5,707.061l19.586-12.136c4.182-2.591,8.62-3.977,13.309-4.163c4.693-0.187,9.13,0.849,13.314,3.104c2.671,1.439,4.337,2.98,5,4.621c0.661,1.64,0.245,3.234-1.251,4.779c3.468-1.348,6.841-1.926,10.12-1.734
				c3.28,0.193,6.536,1.161,9.77,2.902c4.574,2.467,6.737,5.127,6.492,7.979c-0.246,2.854-2.871,5.829-7.874,8.93l-19.53,12.101z M470.91,704.812l6.838,3.687l1.942-1.202c1.201-0.745,1.822-1.47,1.861-2.177c0.039-0.707-0.497-1.362-1.61-1.961
				c-1.111-0.6-2.272-0.859-3.478-0.781c-1.206,0.078-2.412,0.487-3.611,1.232l-1.943,1.202z M488.219,714.144l7.907,4.263l2.477-1.535c1.473-0.911,2.262-1.797,2.365-2.658c0.104-0.861-0.473-1.631-1.735-2.313c-1.284-0.692-2.66-0.975-4.128-0.849
				c-1.466,0.129-2.937,0.646-4.408,1.559l-2.478,1.534z"/>
			<path d="M553.667,696.745l-5.229-2.819c0.827,2.069,1.002,3.862,0.528,5.381c-0.475,1.519-1.636,2.85-3.483,3.996c-3.363,2.082-7.849,2.893-13.46,2.432s-11.095-2.138-16.45-5.024c-5.6-3.02-9.025-6.115-10.279-9.289c-1.255-3.176-0.146-5.839,3.329-7.993
				c1.792-1.111,3.881-1.87,6.268-2.284c2.386-0.411,5.169-0.485,8.348-0.222l-4.583-2.471l13.406-8.307l34.511,18.606l-12.905,7.994z M528.56,692.179c1.456,0.785,2.965,1.212,4.528,1.278c1.563,0.069,2.891-0.237,3.984-0.915c1.112-0.688,1.558-1.476,1.334-2...
				c-0.223-0.882-1.072-1.724-2.551-2.521c-1.5-0.809-3.038-1.25-4.612-1.323c-1.575-0.073-2.909,0.229-4,0.906c-1.094,0.677-1.516,1.471-1.269,2.377c0.244,0.91,1.107,1.761,2.586,2.559z"/>
			<path d="M574.353,683.929l-21.797-11.75l-4.022,2.491l-12.715-6.854l4.022-2.492l-11.433-6.164l14.032-8.693l11.433,6.163l4.021-2.491l12.715,6.854l-4.021,2.492l21.797,11.751l-14.031,8.692z"/>
			<path d="M565.938,636.678c2.478,1.337,3.764,2.819,3.863,4.451c0.099,1.63-1.009,3.163-3.322,4.594c-2.331,1.446-4.925,2.2-7.777,2.26c-2.852,0.063-5.503-0.569-7.958-1.892c-2.454-1.322-3.709-2.786-3.764-4.394c-0.054-1.607,1.102-3.146,3.473-4.612
				c2.35-1.456,4.905-2.219,7.665-2.287c2.759-0.07,5.365,0.559,7.82,1.88z M596.651,670.114l-34.512-18.605l14.032-8.693l34.512,18.605l-14.031,8.693z"/>
			<path d="M617.022,657.494l-51.714-27.88l13.853-8.583l30.386,16.382l-7.283-10.764l16.443-10.187l6.325,15.3l28.723,2.974l-16.594,10.279l-19.202-3.068l12.916,6.964l-13.852,8.583z"/>
		</g>
		<g id="BigBatik" style="fill:#000000;stroke:none;">
			<path d="M291.621,656.508l-112.936-60.217l45.202-27.697c9.651-5.916,19.892-9.082,30.717-9.506c10.829-0.426,21.069,1.938,30.724,7.086c6.165,3.287,10.01,6.803,11.539,10.546c1.525,3.744,0.565,7.381-2.885,10.909c8.002-3.078,15.787-4.396,23.354-3.958
				c7.57,0.439,15.084,2.646,22.547,6.625c10.557,5.63,15.55,11.7,14.984,18.212c-0.567,6.511-6.625,13.305-18.172,20.381l-45.073,27.619z M237.326,591.158l15.781,8.415l4.483-2.746c2.771-1.699,4.205-3.354,4.294-4.969c0.09-1.612-1.146-3.106-3.712-4.475
				c-2.566-1.369-5.245-1.962-8.028-1.784s-5.565,1.115-8.336,2.812l-4.483,2.747z M277.273,612.458l18.247,9.729l5.717-3.502c3.397-2.081,5.218-4.103,5.457-6.068c0.24-1.967-1.092-3.725-4.004-5.278c-2.962-1.579-6.139-2.225-9.527-1.937
				c-3.385,0.29-6.777,1.473-10.174,3.553l-5.716,3.504z"/>
			<path d="M428.313,572.746l-12.067-6.434c1.907,4.723,2.311,8.816,1.218,12.279c-1.098,3.467-3.776,6.509-8.039,9.121c-7.76,4.755-18.115,6.604-31.064,5.551c-12.949-1.055-25.604-4.877-37.964-11.467c-12.923-6.891-20.83-13.959-23.722-21.205
				c-2.896-7.247-0.336-13.328,7.682-18.24c4.138-2.536,8.958-4.272,14.465-5.214c5.507-0.94,11.929-1.11,19.266-0.507l-10.579-5.641l30.938-18.959l79.647,42.468l-29.782,18.247z M370.372,562.324c3.36,1.791,6.842,2.766,10.45,2.918
				c3.608,0.154,6.671-0.543,9.194-2.09c2.565-1.57,3.594-3.368,3.077-5.387c-0.513-2.018-2.473-3.938-5.886-5.758c-3.46-1.844-7.012-2.852-10.643-3.019c-3.636-0.167-6.714,0.524-9.235,2.068c-2.522,1.546-3.497,3.357-2.928,5.427c0.563,2.075,2.556,4.02,5.97...
				z"/>

 view all matches for this distribution


Apache-BalancerManager

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Apache-BalancerManager

0.002000  2024-10-24 17:02:47-05:00 America/Chicago
 - Update for modern httpd (at least > 2.4.41)
 - Use cpanfile

0.001002  2013-01-04 09:45:07 CST6CDT
 - Fix missing deps

 view all matches for this distribution


Apache-Blog

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	- Change to PREREQ_PM to add Apache::Request

0.02  Thu Jun 20 15:34:22 2002
	- First version released into the wild

0.01  Wed Jun 19 22:10:24 2002
	- original version; created by h2xs 1.19

 view all matches for this distribution


Apache-Centipaid

 view release on metacpan or  search on metacpan

Centipaid.pm  view on Meta::CPAN

    my $seconds;

    if ( $duration =~ /^(\d+)(.+)/ ) {
    	my $num = $1;
	my $ltr = $2;
		if ( lc($ltr) eq "m" ) { $multi = 30*24*60*60;}
		if ( lc($ltr) eq "w" ) { $multi = 7*24*60*60;}
		if ( lc($ltr) eq "d" ) { $multi = 24*60*60;}
		if ( lc($ltr) eq "h" ) { $multi = 60*60;}
		$seconds = $multi * $num;
	}

 view all matches for this distribution


Apache-ConfigParser

 view release on metacpan or  search on metacpan

t/httpd02.answer  view on Meta::CPAN

          reference 1-1-2-102-2-4 Apache::ConfigParser::Directive=HASH key 'mother'
             SEEN reference 1-1-2-101 Apache::ConfigParser::Directive=HASH
          reference 1-1-2-102-2-4 Apache::ConfigParser::Directive=HASH key 'name'
             'allow'
          reference 1-1-2-102-2-4 Apache::ConfigParser::Directive=HASH key 'orig_value'
             'from 192.168.0.0/24'
          reference 1-1-2-102-2-4 Apache::ConfigParser::Directive=HASH key 'orig_value_array'
            reference 1-1-2-102-2-5-2 ARRAY with 2 elements
            reference 1-1-2-102-2-5-2 ARRAY index 0
               'from'
            reference 1-1-2-102-2-5-2 ARRAY index 1
               '192.168.0.0/24'
          reference 1-1-2-102-2-4 Apache::ConfigParser::Directive=HASH key 'value'
             'from 192.168.0.0/24'
          reference 1-1-2-102-2-4 Apache::ConfigParser::Directive=HASH key 'value_array'
            reference 1-1-2-102-2-5-3 ARRAY with 2 elements
            reference 1-1-2-102-2-5-3 ARRAY index 0
               'from'
            reference 1-1-2-102-2-5-3 ARRAY index 1
               '192.168.0.0/24'
        reference 1-1-2-102-1 ARRAY index 5
          reference 1-1-2-102-2-5 Apache::ConfigParser::Directive=HASH with 10 keys
          reference 1-1-2-102-2-5 Apache::ConfigParser::Directive=HASH key 'attributes'
            reference 1-1-2-102-2-6-0 HASH with 0 keys
          reference 1-1-2-102-2-5 Apache::ConfigParser::Directive=HASH key 'daughters'

t/httpd02.answer  view on Meta::CPAN

          reference 1-1-2-125-2-3 Apache::ConfigParser::Directive=HASH key 'mother'
             SEEN reference 1-1-2-124 Apache::ConfigParser::Directive=HASH
          reference 1-1-2-125-2-3 Apache::ConfigParser::Directive=HASH key 'name'
             'allow'
          reference 1-1-2-125-2-3 Apache::ConfigParser::Directive=HASH key 'orig_value'
             'from 192.168.0.0/24'
          reference 1-1-2-125-2-3 Apache::ConfigParser::Directive=HASH key 'orig_value_array'
            reference 1-1-2-125-2-4-2 ARRAY with 2 elements
            reference 1-1-2-125-2-4-2 ARRAY index 0
               'from'
            reference 1-1-2-125-2-4-2 ARRAY index 1
               '192.168.0.0/24'
          reference 1-1-2-125-2-3 Apache::ConfigParser::Directive=HASH key 'value'
             'from 192.168.0.0/24'
          reference 1-1-2-125-2-3 Apache::ConfigParser::Directive=HASH key 'value_array'
            reference 1-1-2-125-2-4-3 ARRAY with 2 elements
            reference 1-1-2-125-2-4-3 ARRAY index 0
               'from'
            reference 1-1-2-125-2-4-3 ARRAY index 1
               '192.168.0.0/24'
        reference 1-1-2-125-1 ARRAY index 4
          reference 1-1-2-125-2-4 Apache::ConfigParser::Directive=HASH with 10 keys
          reference 1-1-2-125-2-4 Apache::ConfigParser::Directive=HASH key 'attributes'
            reference 1-1-2-125-2-5-0 HASH with 0 keys
          reference 1-1-2-125-2-4 Apache::ConfigParser::Directive=HASH key 'daughters'

t/httpd02.answer  view on Meta::CPAN

          reference 1-1-2-126-2-3 Apache::ConfigParser::Directive=HASH key 'mother'
             SEEN reference 1-1-2-125 Apache::ConfigParser::Directive=HASH
          reference 1-1-2-126-2-3 Apache::ConfigParser::Directive=HASH key 'name'
             'allow'
          reference 1-1-2-126-2-3 Apache::ConfigParser::Directive=HASH key 'orig_value'
             'from 192.168.0.0/24'
          reference 1-1-2-126-2-3 Apache::ConfigParser::Directive=HASH key 'orig_value_array'
            reference 1-1-2-126-2-4-2 ARRAY with 2 elements
            reference 1-1-2-126-2-4-2 ARRAY index 0
               'from'
            reference 1-1-2-126-2-4-2 ARRAY index 1
               '192.168.0.0/24'
          reference 1-1-2-126-2-3 Apache::ConfigParser::Directive=HASH key 'value'
             'from 192.168.0.0/24'
          reference 1-1-2-126-2-3 Apache::ConfigParser::Directive=HASH key 'value_array'
            reference 1-1-2-126-2-4-3 ARRAY with 2 elements
            reference 1-1-2-126-2-4-3 ARRAY index 0
               'from'
            reference 1-1-2-126-2-4-3 ARRAY index 1
               '192.168.0.0/24'
        reference 1-1-2-126-1 ARRAY index 4
          reference 1-1-2-126-2-4 Apache::ConfigParser::Directive=HASH with 10 keys
          reference 1-1-2-126-2-4 Apache::ConfigParser::Directive=HASH key 'attributes'
            reference 1-1-2-126-2-5-0 HASH with 0 keys
          reference 1-1-2-126-2-4 Apache::ConfigParser::Directive=HASH key 'daughters'

 view all matches for this distribution


Apache-DBILogger

 view release on metacpan or  search on metacpan

bin/webstat_mail.pl  view on Meta::CPAN

	#print Data::Dumper->Dump([\$serverconfig], [qw($serverconfig)]) if $opts{d};

	# setup a few useful dates
	my %dates = (
				 today     => time2str("%Y-%m-%d", time), 
				 yesterday => time2str("%Y-%m-%d", time-(60*60*24)),
				 weekago   => time2str("%Y-%m-%d", time-(60*60*24*7)),
				 monthago  => time2str("%Y-%m-%d", time-(60*60*24*30))
				 );

	my %stats;

	my $serverquery;

 view all matches for this distribution


Apache-DnsZone

 view release on metacpan or  search on metacpan

lib/Apache/DnsZone/DB.pm  view on Meta::CPAN

package Apache::DnsZone::DB;

# $Id: DB.pm,v 1.6 2001/06/03 11:10:24 thomas Exp $

use strict;
use vars qw($VERSION);
use Apache::DnsZone;
use Apache::DnsZone::Config;

 view all matches for this distribution


Apache-Dynagzip

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	  30564 Jan  5 02:45 Apache-Dynagzip-0.09.tar.gz

0.08  Sat Dec 07 23:15:00 2002
	- bugfix. The bug was affecting the transmissions of plain static files only
	  when gzip compression is turned off and light compression is turned on.
	  30155 Dec  8 00:24 Apache-Dynagzip-0.08.tar.gz
	  
0.07  Sun Aug 11 14:58:00 2002
	- advanced control over the client/proxy cache is provided vith Vary extra value
	  optionally inputed from the configuration file.
	- documentation is edited.

 view all matches for this distribution


Apache-FakeCookie

 view release on metacpan or  search on metacpan

FakeCookie.pm  view on Meta::CPAN

sub _expire_calc {
    my($time) = @_;
    my(%mult) = ('s'=>1,
                 'm'=>60,
                 'h'=>60*60,
                 'd'=>60*60*24,
                 'M'=>60*60*24*30,
                 'y'=>60*60*24*365);
    # format for time can be in any of the forms...
    # "now" -- expire immediately
    # "+180s" -- in 180 seconds
    # "+2m" -- in 2 minutes
    # "+12h" -- in 12 hours

 view all matches for this distribution


Apache-FileManager

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

  - Fixed DOCUMENT_ROOT view file bug.

0.09 Monday July 8 18:30:30 Philip Collins
  - Made rsync button show only when rsync is configured

0.10 Tuesday July 9 14:10:24 Philip Collins
  - disabled warnings
  - forced oo call to handler in Apache::FileManager 

0.11 Wed July 10 12:20:21 Philip Collins
  - Added a 'Are you sure' confirm box to delete button.

 view all matches for this distribution


Apache-Gallery

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	  of thumbnails displayed per page. Disabled by default
	  and requires templates update. (Michael Legart)
	- Bugfix for the GalleryThumbnailSize option. Both height and
	  width max sizes are now obeyed. (David Gee)

0.6 Tue Apr 22 10:24:40 CEST 2003

	- Apache now internally handles image dispatch which enables
	  use of all Apache caching possibilities (Thomas Eibner)
	- Documentation and better implementation of the .folder
	  feature. (Jesper Skriver)

 view all matches for this distribution


Apache-LogFormat-Compiler

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.30 2014-01-28T07:59:07Z

   - add docs abount POSIX::strftime::Compiler
   - non trial release

0.24 2014-01-27T03:12:16Z

   - [TRIAL] switch to using POSIX::strftime::Compiler

0.23 2014-01-16T15:53:09Z

 view all matches for this distribution


Apache-MP3

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

2.16 Mon Apr 30 22:31:17 EDT 2001
	- Added Apache::MP3::Resample, which provides dynamic downsampling
		for people with slower connections.
	- Added MS Media player to list of acceptable streaming clients.

2.15 Mon Jan  1 22:20:24 EST 2001
	- Fixed security bug which allowed people to bypass the AllowDownload setting.
	- Made "AllowDownload no" compatible with cover art.

2.14 Sat Dec 30 23:10:32 EST 2000
	- Fixed documentation to indicate that AddType requires dots before the

 view all matches for this distribution


Apache-MimeXML

 view release on metacpan or  search on metacpan

MimeXML.pm  view on Meta::CPAN

0x90, 0x91, 0x16, 0x93, 0x94, 0x95, 0x96, 0x04,
0x98, 0x99, 0x9A, 0x9B, 0x14, 0x15, 0x9E, 0x1A,
0x20, 0xA0, 0xE2, 0xE4, 0xE0, 0xE1, 0xE3, 0xE5,
0xE7, 0xF1, 0xA2, 0x2E, 0x3C, 0x28, 0x2B, 0x7C,
0x26, 0xE9, 0xEA, 0xEB, 0xE8, 0xED, 0xEE, 0xEF,
0xEC, 0xDF, 0x21, 0x24, 0x2A, 0x29, 0x3B, 0xAC,
0x2D, 0x2F, 0xC2, 0xC4, 0xC0, 0xC1, 0xC3, 0xC5,
0xC7, 0xD1, 0xA6, 0x2C, 0x25, 0x5F, 0x3E, 0x3F,
0xF8, 0xC9, 0xCA, 0xCB, 0xC8, 0xCD, 0xCE, 0xCF,
0xCC, 0x60, 0x3A, 0x23, 0x40, 0x27, 0x3D, 0x22,
0xD8, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,

 view all matches for this distribution


Apache-PageKit

 view release on metacpan or  search on metacpan

docsrc/features.xml  view on Meta::CPAN

<chapter><?dbhtml filename="features.html"?>
<chapterinfo>
<releaseinfo role="meta">
$Id: features.xml,v 1.21 2003/11/25 10:20:24 borisz Exp $
</releaseinfo>
</chapterinfo>
<title>Overview of Features</title>
 <sect1><?dbhtml filename="mvcc.html"?>
  <title>Model/View/Content/Controller approach to design</title>

 view all matches for this distribution


Apache-ProxyConf

 view release on metacpan or  search on metacpan

t/pc1.ini  view on Meta::CPAN

[proxy]
172.16.0.0/12=172.16.16.10:8001
172.17.3.0/24=172.17.3.10:80

[https]
172.16.0.0/16=172.16.0.1:8080
172.17.0.0/16=172.17.0.1:80
172.18.0.0/16=172.17.0.1:80

 view all matches for this distribution


Apache-ProxyScan

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - removed debugging from ProxyScan.pm

0.25  Mon Feb 17 2003
    - fixed url/file mapping with urls larger than 255 characters

0.24  Wed Jan 01 2003
    - fixed Version variable before first upload to CPAN
    - removed debugging from rav.pl
    - added new year to copyright message

0.23  Mon Nov 26 2002

 view all matches for this distribution


Apache-Roaming

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

# -*- perl -*-
#
#   $Id: Makefile.PL,v 1.2 1999/02/13 00:24:43 joe Exp $
#
#
#   Apache::Roaming - A mod_perl handler for Roaming Profiles
#
#

 view all matches for this distribution


( run in 1.673 second using v1.01-cache-2.11-cpan-6f5a58438db )