diff --git a/aankoppel/aankoppel.pl b/aankoppel/aankoppel.pl new file mode 100755 index 0000000..905d134 --- /dev/null +++ b/aankoppel/aankoppel.pl @@ -0,0 +1,24 @@ +#!/usr/bin/perl -w + +use lib '../../lib'; + +#User management from multigate +use Multigate::Users; +use Multigate::Util; + +## Import available environment variables + +my $address = $ENV{'MULTI_USER'}; # address of invoking user +my $user = $ENV{'MULTI_REALUSER'}; # multigate username of invoking user +my $protocol = $ENV{'MULTI_FROM'}; # protocol this command was invoked from + +$address = stripnick($address); #make sure we do not have irc-channels in database + +Multigate::Users::init_users_module(); + +my $result = set_preferred_protocol( $user, $protocol ); +my $result2 = set_main_address( $user, $protocol, $address ); + +print "Setting followme to ($protocol, $address) for $user.\n"; + +Multigate::Users::cleanup_users_module(); diff --git a/aankoppel/command.cfg b/aankoppel/command.cfg new file mode 100644 index 0000000..b9ff63f --- /dev/null +++ b/aankoppel/command.cfg @@ -0,0 +1 @@ +level = 50 \ No newline at end of file diff --git a/aankoppel/help.txt b/aankoppel/help.txt new file mode 100644 index 0000000..7de33de --- /dev/null +++ b/aankoppel/help.txt @@ -0,0 +1 @@ +aankoppel: sets preferred protocol to from_protocol, and main_address to from-address \ No newline at end of file diff --git a/aex/aex.pl b/aex/aex.pl new file mode 100755 index 0000000..aee159c --- /dev/null +++ b/aex/aex.pl @@ -0,0 +1,106 @@ +#!/usr/bin/perl -w +# Casper Joost Eyckelhof (Titanhead) +# casper@joost.student.utwente.nl + +use LWP::UserAgent; +use HTTP::Cookies; +use strict; + +#### allerlei fijne definities en initialisaties ######## +my $ua = new LWP::UserAgent; +my @agents = ( + "Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)", "Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)", + "Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)" +); +my $agent = @agents[ int( rand(@agents) ) ]; +$ua->agent($agent); + +my $baseurl = "http://www.aex.nl/scripts/pop/kb.asp?taal=nl&alf="; +my $commandline = $ARGV[0]; + +$commandline = "aex" unless ( defined $commandline and ( $commandline ne "" ) ); + +sub getFonds { + my $fonds = shift; + $agent = @agents[ int( rand(@agents) ) ]; + $ua->agent($agent); + my $request = new HTTP::Request( 'GET', $baseurl . $fonds ); + my $response = $ua->request($request); + my $html = $response->content; + + my @lines = split /\n/, $html; + my @values = (); + foreach my $line (@lines) { + if ( $line =~ /^(\d+\.\d{2})/ ) { + push @values, $1; + } + } + my ( $current, $hoog, $laag, $open, $vorigslot ) = ( $values[0], $values[3], $values[4], $values[5], $values[6] ); + my %thisfonds = ( + "naam" => $fonds, + "koers" => $current, + "hoog" => $hoog, + "laag" => $laag, + "vorigslot" => $vorigslot, + "open" => $open + ); + return %thisfonds; +} + +sub america { + my $fonds = shift; + + my $url = "http://www.fd.nl/TopMarkets.asp?Context=N%7C0&BgColor=%23E5E4D9"; + + my $request = new HTTP::Request( 'GET', $url ); + my $response = $ua->request($request); + my $html = $response->content; + my @lines = split /\n/, $html; + my %values = (); + foreach my $line (@lines) { + + ## print "--> $line\n"; + ## AEX
(.*?)
|si ) { + my $quote = $1; + $quote =~ s|\cM||g; + $quote =~ s|(.*) \(.*\)
$/i ) { # if it matches something
+ my $regel = $1;
+ $regel =~ s|<.*?>||g;
+ $regel =~ s|\s+$||;
+ push @result, $regel;
+ }
+}
+
+# print something,
+# use escape like this: $result = HTML::Entities::decode($result);
+
+print HTML::Entities::decode( join '; ', @result );
diff --git a/cinestar/cinestar.sh b/cinestar/cinestar.sh
new file mode 100755
index 0000000..f9a0e73
--- /dev/null
+++ b/cinestar/cinestar.sh
@@ -0,0 +1,5 @@
+#! /bin/sh
+
+lynx -source 'http://www.cinestar.nl/programma1.htm' |
+ sed -n 's/^ *
$/\1/w /dev/stdout' |
+ sed 's/<[^>]*>//g'
diff --git a/cinestar/command.cfg b/cinestar/command.cfg
new file mode 100644
index 0000000..067373e
--- /dev/null
+++ b/cinestar/command.cfg
@@ -0,0 +1,2 @@
+level = 100
+cache = 3600
\ No newline at end of file
diff --git a/cinestar/help.txt b/cinestar/help.txt
new file mode 100644
index 0000000..a157826
--- /dev/null
+++ b/cinestar/help.txt
@@ -0,0 +1 @@
+cinestar: geeft films die deze week draaien
\ No newline at end of file
diff --git a/classicfm/classicfm.pl b/classicfm/classicfm.pl
new file mode 100755
index 0000000..2536c95
--- /dev/null
+++ b/classicfm/classicfm.pl
@@ -0,0 +1,42 @@
+#!/usr/bin/perl -w
+use strict;
+use LWP::UserAgent;
+use HTML::Entities();
+
+my ( $min, $hour ) = (localtime)[ 1 .. 2 ];
+my $day = sprintf "%02d", (localtime)[3];
+my $month = sprintf "%02d", (localtime)[4] + 1;
+my $year = (localtime)[5] + 1900;
+
+#print "$day $hour:$min $month $year\n";
+
+## Get a certain URL
+my $url = "http://www.classicfm.nl/$year$month$day.php";
+
+my $ua = new LWP::UserAgent;
+
+#Set agent name, we are not a script! :)
+my $agent = "Mozilla/5.0 (compatible; MSIE 5.5; Windows 98)";
+$ua->agent($agent);
+
+my $request = new HTTP::Request( 'GET', $url );
+my $content = $ua->request($request)->content;
+
+#print STDERR $content;
+
+
+my @lines = ( $content =~ m|
+ if ( $content =~ /
/ ) { + $content =~ s/^.*?.*?\n(.*?)<\/pre>.*?$/$1/si; + $content =~ s/.*?Files.*?\n(.*)/$1/si; + # $content =~ s/\*+//g; + $content =~ s///sgi; + $content =~ s/<\/font>//sgi; + # $content =~ s/(\d{3})<\/A>/($1),/gi; + # $content =~ s/\n+//g; + # $content =~ s/\.{2,}//g; + # $content =~ s/([,.])/$1 /g; + # $content =~ s/\s{2,}/ /g; + # $content =~ s/^\s//g; + # $content =~ s/(\d{3})<\/A>/($1),/gi; + # $content =~ s/volgende nieuws index.*$//i; + # $content =~ s|binnenland.*?VERKEERSINFORMATIE actueel .*? uur||gi; + + $content = HTML::Entities::decode($content); + + my $last_weg; + my @lines = split /\n/, $content; + foreach my $line (@lines) { + if ( $line =~ /^\s+?-\s+?(.*?) (.*)/ ) { + $last_weg = $1; + $wegen{$last_weg} .= $2; + } else { + if ( $line =~ /\*+/ ) { + $last_weg = "rest"; + } + $wegen{$last_weg} .= $line; + } + } + return $content; + } else { + return undef; + } +} + +my $result; + +my $base_url = "http://teletekst.nos.nl/tekst/730-0"; +my $page_index = 1; + +$url = $base_url . $page_index . ".html"; + +my $next = 1; +while ($next) { + my $content = parse_page( get_url($url) ); + if ( defined $content ) { + $result .= $content; + } else { + $next = 0; + } + $page_index++; + $url = $base_url . $page_index . ".html"; +} + +delete $wegen{"rest"}; + +my $output; + +unless ( $args eq "" ) { + my @argjes = split " ", $args; + foreach my $arg (@argjes) { + $arg = uc($arg); + if ( defined $wegen{$arg} ) { + $wegen{$arg} =~ s/\s{2,}/ /g; + $output .= $arg . " " . $wegen{$arg} . "\n"; + } + } + if ( $output eq "" ) { + $output = "Geen files gevonden voor aangegeven traject\n"; + } +} +else { + foreach my $key ( keys %wegen ) { + $wegen{$key} =~ s/\s{2,}/ /g; + $output .= "$key - " . $wegen{$key} . "\n"; + } + if ( $output eq "" ) { + $output = "Er zijn op dit moment geen files\n"; + } +} + +print $output; diff --git a/file/file2.pl b/file/file2.pl new file mode 100755 index 0000000..a051a6b --- /dev/null +++ b/file/file2.pl @@ -0,0 +1,72 @@ +#!/usr/bin/perl +# Casper Joost Eyckelhof (Titanhead) +# joost@dnd.utwente.nl +# Haalt het meest recente file-nieuws van tt op en scrijft deze naar STDOUT +# Niet kort of heel efficient, maar werkt prima :) + +use HTML::Entities(); +use LWP::UserAgent; +$ua = new LWP::UserAgent; + +#Set agent name, vooral niet laten weten dat we een script zijn +$agent = "Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)"; +$ua->agent($agent); + +sub get_url { + my $url = shift; + $request = new HTTP::Request( 'GET', $url ); + $request->referer('http://portal.omroep.nl/'); + $request->header( "Accept" => + 'application/x-shockwave-flash,text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1' + ); + $request->header( "Accept-Encoding" => "gzip, deflate, compress" ); + $request->header( "Accept-Language" => "en-us, en;q=0.80, ko;q=0.60, zh;q=0.40, ja;q=0.20" ); + $request->header( "Accept-Charset" => "utf-8, *" ); + $content = $ua->request($request)->content; + return $content; +} + +sub parse_page { + #get everything between+ if ( $content =~ // ) { + $content =~ s/^.*?.*?\n(.*?)<\/pre>.*?$/$1/si; + $content =~ s/\*+//g; + $content =~ s///sgi; + $content =~ s/<\/font>//sgi; + $content =~ s/(\d{3})<\/A>/($1),/gi; + $content =~ s/\n+//g; + $content =~ s/\.{2,}//g; + $content =~ s/([,.])/$1 /g; + $content =~ s/\s{2,}/ /g; + $content =~ s/^\s//; + $content =~ s/(\d{3})<\/A>/($1),/gi; + $content =~ s/volgende nieuws index.*$//i; + $content =~ s|binnenland \d/\d VERKEERSINFORMATIE actueel .*? uur||gi; + + $content = HTML::Entities::decode($content); + return $content; + } else { + return undef; + } +} + +my $result; + +my $base_url = "http://teletekst.nos.nl/tekst/730-0"; +my $page_index = 1; + +$url = $base_url . $page_index . ".html"; + +my $next = 1; +while ($next) { + my $content = parse_page( get_url($url) ); + if ( defined $content ) { + $result .= $content; + } else { + $next = 0; + } + $page_index++; + $url = $base_url . $page_index . ".html"; +} + +print $result , "\n"; diff --git a/file/file_1pagina.pl b/file/file_1pagina.pl new file mode 100755 index 0000000..5fe12c4 --- /dev/null +++ b/file/file_1pagina.pl @@ -0,0 +1,48 @@ +#!/usr/bin/perl +# Casper Joost Eyckelhof (Titanhead) +# joost@dnd.utwente.nl +# Haalt het meest recente file-nieuws van tt op en scrijft deze naar STDOUT +# Niet kort of heel efficient, maar werkt prima :) + +use HTML::Entities(); +use LWP::UserAgent; +$ua = new LWP::UserAgent; + +#Set agent name, vooral niet laten weten dat we een script zijn +$agent = "Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)"; +$ua->agent($agent); + +$url = "http://teletekst.nos.nl/tekst/730-01.html"; # what else??? + +##Haal pagina op +$request = new HTTP::Request( 'GET', $url ); +$request->referer('http://portal.omroep.nl/'); +$request->header( "Accept" => + 'application/x-shockwave-flash,text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1' +); +$request->header( "Accept-Encoding" => "gzip, deflate, compress" ); +$request->header( "Accept-Language" => "en-us, en;q=0.80, ko;q=0.60, zh;q=0.40, ja;q=0.20" ); +$request->header( "Accept-Charset" => "utf-8, *" ); + +$content = $ua->request($request)->content; + +#get everything between+if ( $content =~ // ) { + $content =~ s/^.*?.*?\n(.*?)<\/pre>.*?$/$1/si; + $content =~ s/\*+//g; + $content =~ s///sgi; + $content =~ s/<\/font>//sgi; + $content =~ s/(\d{3})<\/A>/($1),/gi; + $content =~ s/\n+//g; + $content =~ s/\.{2,}//g; + $content =~ s/([,.])/$1 /g; + $content =~ s/\s{2,}/ /g; + $content =~ s/^\s//; + $content =~ s/(\d{3})<\/A>/($1),/gi; + $content =~ s/volgende nieuws index.*$//i; + + $content = HTML::Entities::decode($content); + print $content . "\n"; +} else { + print "Filestatus onbekend\n"; +} diff --git a/file/file_meerpagina.pl b/file/file_meerpagina.pl new file mode 100755 index 0000000..a051a6b --- /dev/null +++ b/file/file_meerpagina.pl @@ -0,0 +1,72 @@ +#!/usr/bin/perl +# Casper Joost Eyckelhof (Titanhead) +# joost@dnd.utwente.nl +# Haalt het meest recente file-nieuws van tt op en scrijft deze naar STDOUT +# Niet kort of heel efficient, maar werkt prima :) + +use HTML::Entities(); +use LWP::UserAgent; +$ua = new LWP::UserAgent; + +#Set agent name, vooral niet laten weten dat we een script zijn +$agent = "Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)"; +$ua->agent($agent); + +sub get_url { + my $url = shift; + $request = new HTTP::Request( 'GET', $url ); + $request->referer('http://portal.omroep.nl/'); + $request->header( "Accept" => + 'application/x-shockwave-flash,text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1' + ); + $request->header( "Accept-Encoding" => "gzip, deflate, compress" ); + $request->header( "Accept-Language" => "en-us, en;q=0.80, ko;q=0.60, zh;q=0.40, ja;q=0.20" ); + $request->header( "Accept-Charset" => "utf-8, *" ); + $content = $ua->request($request)->content; + return $content; +} + +sub parse_page { + #get everything between+ if ( $content =~ // ) { + $content =~ s/^.*?.*?\n(.*?)<\/pre>.*?$/$1/si; + $content =~ s/\*+//g; + $content =~ s///sgi; + $content =~ s/<\/font>//sgi; + $content =~ s/(\d{3})<\/A>/($1),/gi; + $content =~ s/\n+//g; + $content =~ s/\.{2,}//g; + $content =~ s/([,.])/$1 /g; + $content =~ s/\s{2,}/ /g; + $content =~ s/^\s//; + $content =~ s/(\d{3})<\/A>/($1),/gi; + $content =~ s/volgende nieuws index.*$//i; + $content =~ s|binnenland \d/\d VERKEERSINFORMATIE actueel .*? uur||gi; + + $content = HTML::Entities::decode($content); + return $content; + } else { + return undef; + } +} + +my $result; + +my $base_url = "http://teletekst.nos.nl/tekst/730-0"; +my $page_index = 1; + +$url = $base_url . $page_index . ".html"; + +my $next = 1; +while ($next) { + my $content = parse_page( get_url($url) ); + if ( defined $content ) { + $result .= $content; + } else { + $next = 0; + } + $page_index++; + $url = $base_url . $page_index . ".html"; +} + +print $result , "\n"; diff --git a/file/help.txt b/file/help.txt new file mode 100644 index 0000000..9961d90 --- /dev/null +++ b/file/help.txt @@ -0,0 +1 @@ +Geeft de huidige filemeldingen. \ No newline at end of file diff --git a/file/level b/file/level new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/file/level @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/flits/command.cfg b/flits/command.cfg new file mode 100644 index 0000000..6bd3d81 --- /dev/null +++ b/flits/command.cfg @@ -0,0 +1,2 @@ +level = 0 +cache = 300 # 5 minutes \ No newline at end of file diff --git a/flits/flits.pl b/flits/flits.pl new file mode 100755 index 0000000..30fe870 --- /dev/null +++ b/flits/flits.pl @@ -0,0 +1,92 @@ +#!/usr/bin/perl +# Yvo Brevoort (Ylebre) +# ylebre@dnd.utwente.nl +# Haalt het meest recente flits-nieuws van http://www.flitsservice.nl op en +# scrijft deze naar STDOUT + +use HTML::Entities(); +use LWP::UserAgent; +$ua = new LWP::UserAgent; + +#Set agent name, vooral niet laten weten dat we een script zijn +$agent = "Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)"; +$ua->agent($agent); + +my $args = shift @ARGV; + +my %wegen; + +sub get_url { + my $url = shift; + $request = new HTTP::Request( 'GET', $url ); + $request->referer('http://www.flitsservice.nl/'); + $request->header( "Accept" => '*.*' ); + $request->header( "Accept-Language" => "en-us, en;q=0.80, ko;q=0.60, zh;q=0.40, ja;q=0.20" ); + $request->header( "Accept-Charset" => "utf-8, *" ); + $content = $ua->request($request)->content; + return $content; +} + +sub parse_page { + my $content = shift; + my ( $snelweg, $regionaal ); + + if ( $content =~ /()/si ) { + if ( $content =~ /( )(.*?)( )(.*)/si ) { + $snelweg = $3; + $content = $4; + } + if ( $content =~ /( )(.*?)( )/si ) { + $regionaal = $3; + } + } + + if ( defined $snelweg ) { + parse_flits($snelweg); + } + if ( defined $regionaal ) { + parse_flits($regionaal); + } +} + +sub parse_flits { + my $content = shift; + $content =~ s/<.*?>//sgi; + foreach my $line ( split "\n", $content ) { + $line =~ s/^\s+//g; + $line =~ s/\s{2,}/ /g; + if ( $line =~ /(radar|laser) (..) ([an]\d+)?(.*)/ ) { + my $weg = $3; + if ( defined $weg ) { + $weg = uc($weg); + $wegen{$weg} = $line; + } + } + } +} + +my $result; + +my $url = 'http://flitsservice.com/flitsservice/meldingen/vandaag.aspx'; + +parse_page( get_url($url) ); + +unless ( $args eq "" ) { + my @argjes = split " ", $args; + foreach my $arg (@argjes) { + $arg = uc($arg); + if ( defined $wegen{$arg} ) { + $wegen{$arg} =~ s/\s{2,}/ /g; + $output .= $arg . " " . $wegen{$arg} . "\n"; + } + } + if ( $output eq "" ) { + $output = "Geen flitsers gevonden voor aangegeven traject\n"; + } + print $output; +} +else { + foreach my $key ( keys %wegen ) { + print "$key - " . $wegen{$key} . "\n"; + } +} diff --git a/flits/help.txt b/flits/help.txt new file mode 100644 index 0000000..50cb4f8 --- /dev/null +++ b/flits/help.txt @@ -0,0 +1 @@ +Geeft de huidige flitsmeldingen. \ No newline at end of file diff --git a/flits/level b/flits/level new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/flits/level @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/followme/command.cfg b/followme/command.cfg new file mode 100644 index 0000000..b9ff63f --- /dev/null +++ b/followme/command.cfg @@ -0,0 +1 @@ +level = 50 \ No newline at end of file diff --git a/followme/followme.pl b/followme/followme.pl new file mode 100755 index 0000000..d4d99d7 --- /dev/null +++ b/followme/followme.pl @@ -0,0 +1,44 @@ +#!/usr/bin/perl -w + +use lib '../../lib'; + +#User management from multigate +use Multigate::Users; + +my $realuser = $ENV{MULTI_REALUSER}; +my $commandline = defined $ARGV[0] ? $ARGV[0] : ''; + +Multigate::Users::init_users_module(); + +my ( $protocol, $rest ) = split ' ', $commandline, 2; + +#Even tijdelijk.... + +if ( $protocol and ( $protocol =~ /sms/i ) ) { + print "Even geen sms-followme ivm accounting\n"; + exit 0; +} + +if ( $protocol && get_userlevel($realuser) ) { + + #special case: unset followme + if ( lc($protocol) eq "remove" ) { + my $res = unset_preferred_protocol($realuser); + print "unset followme-address for $realuser\n"; + exit 0; + } + + unless ( protocol_exists($protocol) ) { + print "protocol \"$protocol\" unknown\n"; + exit 0; + } + my $result = set_preferred_protocol( $realuser, $protocol ); + print "preferred protocol for $realuser: $protocol\n"; + +} else { + my $result = get_preferred_protocol($realuser); + $result = "none" unless ($result); + print "Current preferred protocol for $realuser: $result\n"; +} + +Multigate::Users::cleanup_users_module(); diff --git a/followme/help.txt b/followme/help.txt new file mode 100644 index 0000000..ae86368 --- /dev/null +++ b/followme/help.txt @@ -0,0 +1 @@ +followme [protocol] : set followme to given protocol \ No newline at end of file diff --git a/fongshou/command.cfg b/fongshou/command.cfg new file mode 100644 index 0000000..0f69821 --- /dev/null +++ b/fongshou/command.cfg @@ -0,0 +1 @@ +level = 0 \ No newline at end of file diff --git a/fongshou/fongshou.pl b/fongshou/fongshou.pl new file mode 100755 index 0000000..2f5face --- /dev/null +++ b/fongshou/fongshou.pl @@ -0,0 +1,2 @@ +#!/usr/bin/perl -w +print "Fong Shou: 053-4350137 - http://www.snt.utwente.nl/overig/fongshou.php\n" diff --git a/fongshou/help.txt b/fongshou/help.txt new file mode 100644 index 0000000..fdaefcf --- /dev/null +++ b/fongshou/help.txt @@ -0,0 +1 @@ +fongshou: geeft telefoonnummer en prijslijst-url van Fong Shou diff --git a/fongshou/level b/fongshou/level new file mode 100644 index 0000000..573541a --- /dev/null +++ b/fongshou/level @@ -0,0 +1 @@ +0 diff --git a/foonabc/command.cfg b/foonabc/command.cfg new file mode 100644 index 0000000..711930a --- /dev/null +++ b/foonabc/command.cfg @@ -0,0 +1 @@ +level = 0 diff --git a/foonabc/foonabc.pl b/foonabc/foonabc.pl new file mode 100755 index 0000000..109ad89 --- /dev/null +++ b/foonabc/foonabc.pl @@ -0,0 +1,39 @@ +#!/usr/bin/perl -w +use strict; + +my %table = ( + a => "Anton", + b => "Bernard", + c => "Cornelis", + d => "Dirk", + e => "Eduard", + f => "Ferdinand", + g => "Gerard", + h => "Hendrik", + i => "Izaak", + j => "Jan", + k => "Karel", + l => "Lodewijk", + m => "Marie", + n => "Nico", + o => "Otto", + p => "Pieter", + q => "Quotiënt", + r => "Rudolf", + s => "Simon", + t => "Teunis", + u => "Utrecht", + v => "Victor", + w => "Willem", + x => "Xantippe", + y => "Ypsilon", + z => "Zaandam" +); + +my $input = $ARGV[0]; + +$input =~ s/\W//g; +$input =~ s/([A-Za-z])/$table{lc($1)} /g; + +print $input, "\n"; + diff --git a/foonabc/level b/foonabc/level new file mode 100644 index 0000000..573541a --- /dev/null +++ b/foonabc/level @@ -0,0 +1 @@ +0 diff --git a/froa/DEADJOE b/froa/DEADJOE new file mode 100644 index 0000000..e69de29 diff --git a/froa/command.cfg b/froa/command.cfg new file mode 100644 index 0000000..711930a --- /dev/null +++ b/froa/command.cfg @@ -0,0 +1 @@ +level = 0 diff --git a/froa/froa.pl b/froa/froa.pl new file mode 100755 index 0000000..c7fbdd0 --- /dev/null +++ b/froa/froa.pl @@ -0,0 +1,51 @@ +#!/usr/bin/perl -w +use strict; + +my $number = 0; + +if ( ( defined( $ARGV[0] ) ) && ( $ARGV[0] =~ /(\d+)/ ) ) { + + #het is een nummertje + $number = $1; +} + +#Inlezen file + +open( RULES, "< /home/multilink/multigate/commands/froa/froa.txt" ); + +my @rules; +my @numrules; + +while ( my $line = ) { + chomp $line; + push @rules, $line; + + my ( $nummer, $rule ) = split ( /\t/, $line ); + if ( $nummer =~ /(\d+)/ ) { + $numrules[$nummer] = $rule; + } +} + +close RULES; + +my ( $nummer, $rule ) = split ( /\t/, $rules[ int( rand(@rules) ) ] ); + +if ( $number > 0 ) { + if ( defined $numrules[$number] ) { + + #arg is gegeven en rule nummer $arg bestaat + print "Ferengi rule of acquisition #$number\n$numrules[$number]"; + exit 0; + } else { + print "That rule does not exist. According to rule number 266 it has to be\n"; + } +} else { + if ( $nummer =~ /(\d+)/ ) { + print "Ferengi rule of acquisition #$1\n"; + } else { + print "A good ferengi should always remember this rule:\n"; + } +} + +#pak random rule en print. +print $rule; diff --git a/froa/froa.txt b/froa/froa.txt new file mode 100644 index 0000000..7c75f55 --- /dev/null +++ b/froa/froa.txt @@ -0,0 +1,126 @@ +1. Once you have their money, you never give it back. +2. The best deal is the one that brings the most profit. +3. I found it; it's mine. +6. Never allow family to stand in the way of opportunity. +7. Keep your ears open. +8. Small print leads to large risk. / Only a fool passes up a business opportunity. +9. Opportunity plus instinct equals profit. +10. Greed is eternal. +13. Anything worth doing is worth doing for money. +14. [not given] +16. A deal is a deal... until a better one comes along. +17. A contract is a contract is a contract--but only between Ferengi. +18. A Ferengi without profit is no Ferengi at all. +19. Satisfaction is not guaranteed. +21. Never place friendship before profit. +22. A wise man can hear profit in the wind. +23. Money can never replace dignity. +27. There's nothing more dangerous than an honest businessman. +29. What's in it for me? +31. Never make fun of a Ferengi's mother. (Insult something he cares about, instead.) +33. It never hurts to suck up to the boss. +34. War is good for business. +35. Peace is good for business. +37. If it's free, take it and worry about hidden costs later. +40. She can touch your lobes, but never your latinum. +41. Profit is its own reward. +44. Never confuse wisdom with luck. +47. Never trust anyone whose suit is nicer than your own. +48. The bigger the smile, the sharper the knife. +51. Reward anyone who adds to your profits so they will continue to do so. +52. Never ask when you can take. +57. Good customers are as rare as latinum--treasure them. +58. There is no substitute for success. +59. Free advice is seldom cheap. +60. Keep your lies consistent. +60. Let's you and him fight. +62. The riskier the road, the greater the profit. +65. Win or lose, there's always Huyperian beetle snuff. +69. Ferengi are not responsible for the stupidity of other races. +74. Knowledge equals profit. +75. Home is where the heart is, but the stars are made of latinum. +76. Every once in a while declare peace...it confuses the hell out of your enemies. +79. Beware of the Vulcan greed for knowledge. +82. The flimsier the product, the higher the price. +85. Never let the competition know what you're thinking. +87. Learn the customer's weaknesses so you can better take advantage of him. +89. Ask not what your profits can do for you, but what you can do for your profits. +92. There are many paths to profit. +94. Females and finances don't mix. +95. Expand or die. +96. For every Rule, there is an equal and opposite Rule (except when there's not). +97. Enough... is never enough. / If you can't take it with you, don't go. +98. Every man has his price. +99. Trust is the biggest liability of all. +102. Nature decays, but latinum is forever. +103. Sleep can interfere with... [cut off] +103. Fill a desparate need with your most expensive product, then mark it up 500%. +104. Faith moves mountains... of inventory. +106. There is no honor in poverty. +109. Dignity and an empty sack is worth the sack. +111. Treat people in your debt like family--exploit them [ruthlessly]. +112. Never have sex with the boss's sister. +113. Always have sex with the boss. +121. Everything is for sale, even friendship. +123. Even a blind man can recognize the glow of latinum. +125. You can't make a deal if you're dead. +139. Wives serve; brothers inherit. +141. Only fools pay retail. +144. There's nothing wrong with charity... as long as it winds up in your pocket. +153. Sell the sizzle, not the steak. +162. Even in the worst of times, someone turns a profit. +168. Whisper your way to success. +177. Know your enemies... but do business with them always. +181. Not even dishonesty can tarnish the shine of profit. +184. [not given] +189. Let others keep their reputation. You keep their money. +190. Hear all; trust nothing. +191. A Ferengi waits to bid until his opponents have exhausted themselves. +192. Never cheat a Klingon... unless you're sure you can get away with it. +194. It's always good business to know about new customers before they walk in your door. +202. The justification of profit is profit. +203. New customers are like razor-backed Greeworms--they can be succulent, but sometimes they bite back! +208. Sometimes the only thing more dangerous than the question is an answer. +211. Employees are the rungs on the ladder of success--don't hesitate to step on them. +214. Never begin a business negotiation on an empty stomach. +216. Never gamble with an empath. +217. You can't free a fish from water. +218. Always know what you're buying. +218. Always know the competition. +218. Sometimes what you get free costs entirely too much. +219. Possession is 11/10 of the law. +223. Beware the man who doesn't make time for oo-mox. +229. Latinum lasts longer than lust. +236. You can't buy fate. +239. Never be afraid to mislabel a product. +242. More is good... all is better. +243. [not given] +253. Synthehol is the lubricant of choice for a customer's stuck purse. +255. A wife is a luxury... a smart accountant, a necessity. +261. A wealthy man can afford anything except a conscience. +263. Never allow doubt to tarnish your lust for latinum. +266. When in doubt, lie. +284. Deep down, everyone's a Ferengi. +285. No good deed ever goes unpunished. +285. A good deed is its own reward. +286. When Morn leaves, it's all over. +299. Whenever you exploit someone, it never hurts to thanks them. (That way, it's easier to exploit them the next time.) +?. The more time they take deciding, the more money they will spend. +?. The greater (the) amount you are taking from someone, the greater the distraction must be. +?. A bargain usually isn't. +?. One person's secret is another person's opportunity. +?. The hand that holds the latinum may also hide a dagger. +?. You can tell a great deal about a man from his shoes. +?. Time's an asset. +?. Your goods are now my goods. +?. Exploitation begins at home. +?. When you see a good deal, jump on it. +?. A Ferengi without a head for business has no future. +?. Business is business, even among friends. +?. Everything has a price. +?. Ears open, eyes wide. +?. Never believe anyone taller than you. +?. There's a Rule of Acquisition to cover everything, but that doesn't mean one's always got to be applied. +?. It's better to live on one's feet than to die on one's knees. +?. A good negotiation should be savored, like a good wine. +**. When no appropriate Rule applies, make one up. (The unwritten rule) diff --git a/froa/level b/froa/level new file mode 100644 index 0000000..573541a --- /dev/null +++ b/froa/level @@ -0,0 +1 @@ +0 diff --git a/frop/command.cfg b/frop/command.cfg new file mode 100644 index 0000000..7f7ca0e --- /dev/null +++ b/frop/command.cfg @@ -0,0 +1,3 @@ +level = 100 +box = frop +units = 1 diff --git a/frop/frop.pl b/frop/frop.pl new file mode 100755 index 0000000..400dfb9 --- /dev/null +++ b/frop/frop.pl @@ -0,0 +1,4 @@ +#!/usr/bin/perl + +print("frop!"); + diff --git a/frop/level b/frop/level new file mode 100644 index 0000000..83b33d2 --- /dev/null +++ b/frop/level @@ -0,0 +1 @@ +1000 diff --git a/getip/command.cfg b/getip/command.cfg new file mode 100644 index 0000000..5d439f1 --- /dev/null +++ b/getip/command.cfg @@ -0,0 +1 @@ +level = 100 diff --git a/getip/getip.pl b/getip/getip.pl new file mode 100755 index 0000000..3efca20 --- /dev/null +++ b/getip/getip.pl @@ -0,0 +1,21 @@ +#!/usr/bin/perl -w +use strict; +use Socket; + +my $invoer = $ARGV[0]; + +unless ( $invoer =~ /[a-f0-9]{8}/i ) { + print "Foute invoer\n"; + exit 0; +} + +my @bytes = ( $invoer =~ /(..)/g ); + +my $address = join '.', map { hex($_) } @bytes; +my $name = gethostbyaddr( inet_aton($address), AF_INET ); + +unless ( defined $name ) { + $name = "Not resolved"; +} + +print "$address ($name)\n"; diff --git a/getip/help.txt b/getip/help.txt new file mode 100644 index 0000000..d918264 --- /dev/null +++ b/getip/help.txt @@ -0,0 +1 @@ +getip : geeft echte ip diff --git a/group/command.cfg b/group/command.cfg new file mode 100644 index 0000000..27dccc3 --- /dev/null +++ b/group/command.cfg @@ -0,0 +1,2 @@ +level = 50 +cache = 0 diff --git a/group/frop b/group/frop new file mode 100644 index 0000000..d1ca01f --- /dev/null +++ b/group/frop @@ -0,0 +1,14542 @@ +execve("./group", ["./group", "list frop"], [/* 15 vars */]) = 0 +uname({sys="Linux", node="ringbreak", ...}) = 0 +brk(0) = 0x80ee824 +open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./i686/mmx/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./i686/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./mmx/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("/etc/ld.so.cache", O_RDONLY) = 3 +fstat64(3, {st_mode=S_IFREG|0644, st_size=14323, ...}) = 0 +old_mmap(NULL, 14323, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40014000 +close(3) = 0 +open("/lib/libnsl.so.1", O_RDONLY) = 3 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 ;\0\000"..., 1024) = 1024 +fstat64(3, {st_mode=S_IFREG|0644, st_size=69472, ...}) = 0 +old_mmap(NULL, 80988, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40018000 +mprotect(0x40029000, 11356, PROT_NONE) = 0 +old_mmap(0x40029000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x10000) = 0x40029000 +old_mmap(0x4002a000, 7260, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4002a000 +close(3) = 0 +open("./i686/mmx/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./i686/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./mmx/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) +open("/lib/libdl.so.2", O_RDONLY) = 3 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0T\27\0\000"..., 1024) = 1024 +fstat64(3, {st_mode=S_IFREG|0644, st_size=8008, ...}) = 0 +old_mmap(NULL, 11004, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4002c000 +mprotect(0x4002e000, 2812, PROT_NONE) = 0 +old_mmap(0x4002e000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1000) = 0x4002e000 +close(3) = 0 +open("./i686/mmx/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./i686/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./mmx/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("/lib/libm.so.6", O_RDONLY) = 3 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2007\0"..., 1024) = 1024 +fstat64(3, {st_mode=S_IFREG|0644, st_size=130088, ...}) = 0 +old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4002f000 +old_mmap(NULL, 132708, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40030000 +mprotect(0x40050000, 1636, PROT_NONE) = 0 +old_mmap(0x40050000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1f000) = 0x40050000 +close(3) = 0 +open("./i686/mmx/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./i686/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./mmx/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) +open("/lib/libc.so.6", O_RDONLY) = 3 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\30\222"..., 1024) = 1024 +fstat64(3, {st_mode=S_IFREG|0755, st_size=1153784, ...}) = 0 +old_mmap(NULL, 1166560, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40051000 +mprotect(0x40164000, 40160, PROT_NONE) = 0 +old_mmap(0x40164000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x113000) = 0x40164000 +old_mmap(0x4016a000, 15584, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4016a000 +close(3) = 0 +open("./i686/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./i686/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("./libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory) +open("/lib/libcrypt.so.1", O_RDONLY) = 3 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\t\0"..., 1024) = 1024 +fstat64(3, {st_mode=S_IFREG|0644, st_size=19136, ...}) = 0 +old_mmap(NULL, 182044, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4016e000 +mprotect(0x40173000, 161564, PROT_NONE) = 0 +old_mmap(0x40173000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x4000) = 0x40173000 +old_mmap(0x40174000, 157468, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40174000 +close(3) = 0 +munmap(0x40014000, 14323) = 0 +getcwd("/home/multilink/multidev/commands/group", 1024) = 40 +brk(0) = 0x80ee824 +brk(0x80ee87c) = 0x80ee87c +brk(0x80ef000) = 0x80ef000 +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 3 +brk(0x80fc000) = 0x80fc000 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\2\0\3\0\1\0\0\0\234\222"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 50200 +read(3, "ehostent\0Perl_pp_av2arylen\0Perl_"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 100400 +read(3, "x0\ft-\241x\275\16\10\213@0\213\0\213\0\366\0@u\34\241"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 150600 +read(3, "\213\0\213\0\366@\n\1t\16\213\0\203x\f\0\177\27\351\231"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 200800 +read(3, "\0\215v\0\306\7\10\353.\215v\0\306\7\n\353&\215v\0\306"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 251000 +read(3, "\374T\10\10\234_\10\10\234_\10\10PW\10\10HX\10\10\234_"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 301200 +read(3, "\0\0\350%L\0\0P\377s\374\377s\354\350\235\36\0\0\203\304"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 351400 +read(3, "\366@\n\200t\7\201K\10\0\0\200\0\213M\334\213\1\213@\10"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 401600 +read(3, "hq\376\r\10\241\370\340\16\10\272\250\305\16\10\205\300"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 451800 +read(3, "@$\353\5\270\300\6\16\10Ph\314\6\16\10j\v\350fR\377\377"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 502000 +read(3, "\16\10\213\rd\342\16\10\241T\347\16\10\211\4\221\377\5"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 552200 +read(3, "\264\213?\v;\211:\203\303\4\203E\264\4\203\302\4\213M\264"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 602400 +read(3, "ipt: %s NOT FOUND\n\0P2X: OpenScri"..., 51200) = 51200 +lseek(3, -1000, SEEK_CUR) = 652600 +read(3, "\377\377\f\1\20\1\21\1\22\1\23\1\377\377\22\1\377\377\27"..., 51200) = 51200 +lseek(3, 671442, SEEK_SET) = 671442 +lseek(3, 0, SEEK_CUR) = 671442 +read(3, "\r\n\351\273\206\235\232\316\220\235\206\317\210\235\205"..., 256) = 256 +lseek(3, 671444, SEEK_SET) = 671444 +lseek(3, 0, SEEK_CUR) = 671444 +read(3, "\351\273\206\235\232\316\220\235\206\317\210\235\205\213"..., 256) = 256 +lseek(3, 671642, SEEK_SET) = 671642 +lseek(3, 0, SEEK_CUR) = 671642 +read(3, "group.pl\r\ngroup.pl\r\n-2238\r\neN]U\36"..., 256) = 256 +lseek(3, 671652, SEEK_SET) = 671652 +lseek(3, 0, SEEK_CUR) = 671652 +stat64("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0 +getcwd("/home/multilink/multidev/commands/group", 1024) = 40 +stat64("/home/multilink/perl2exe/lib", 0xbffff098) = -1 ENOENT (No such file or directory) +stat64("lib/site", 0xbffff0ac) = -1 ENOENT (No such file or directory) +stat64("lib", 0xbffff0ac) = -1 ENOENT (No such file or directory) +stat64("../lib", 0xbffff0ac) = -1 ENOENT (No such file or directory) +lseek(3, 0, SEEK_CUR) = 671652 +read(3, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(3, 671662, SEEK_SET) = 671662 +lseek(3, 0, SEEK_CUR) = 671662 +read(3, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(3, 671669, SEEK_SET) = 671669 +lseek(3, 2238, SEEK_CUR) = 673907 +lseek(3, 0, SEEK_CUR) = 673907 +read(3, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(3, 673915, SEEK_SET) = 673915 +lseek(3, 0, SEEK_CUR) = 673915 +read(3, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(3, 673922, SEEK_SET) = 673922 +lseek(3, 1424, SEEK_CUR) = 675346 +lseek(3, 0, SEEK_CUR) = 675346 +read(3, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(3, 675366, SEEK_SET) = 675366 +lseek(3, 0, SEEK_CUR) = 675366 +read(3, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(3, 675373, SEEK_SET) = 675373 +lseek(3, 9237, SEEK_CUR) = 684610 +lseek(3, 0, SEEK_CUR) = 684610 +read(3, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(3, 684618, SEEK_SET) = 684618 +lseek(3, 0, SEEK_CUR) = 684618 +read(3, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(3, 684626, SEEK_SET) = 684626 +lseek(3, 40318, SEEK_CUR) = 724944 +lseek(3, 0, SEEK_CUR) = 724944 +read(3, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(3, 724952, SEEK_SET) = 724952 +lseek(3, 0, SEEK_CUR) = 724952 +read(3, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 724959, SEEK_SET) = 724959 +brk(0x810d000) = 0x810d000 +lseek(3, 0, SEEK_CUR) = 724959 +open("/tmp/DBI.so", O_RDWR|O_CREAT|O_TRUNC, 0777) = 4 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`%\0\000"..., 65908) = 65908 +write(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`%\0\000"..., 65908) = 65908 +close(4) = 0 +lseek(3, 0, SEEK_CUR) = 790867 +read(3, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(3, 790881, SEEK_SET) = 790881 +lseek(3, 0, SEEK_CUR) = 790881 +read(3, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(3, 790888, SEEK_SET) = 790888 +lseek(3, 6878, SEEK_CUR) = 797766 +lseek(3, 0, SEEK_CUR) = 797766 +read(3, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(3, 797776, SEEK_SET) = 797776 +lseek(3, 0, SEEK_CUR) = 797776 +read(3, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 797783, SEEK_SET) = 797783 +lseek(3, 0, SEEK_CUR) = 797783 +open("/tmp/mysql.so", O_RDWR|O_CREAT|O_TRUNC, 0777) = 4 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240,\0"..., 61376) = 61376 +write(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240,\0"..., 61376) = 61376 +close(4) = 0 +lseek(3, 0, SEEK_CUR) = 859159 +read(3, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(3, 859170, SEEK_SET) = 859170 +lseek(3, 0, SEEK_CUR) = 859170 +read(3, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(3, 859178, SEEK_SET) = 859178 +lseek(3, 31353, SEEK_CUR) = 890531 +lseek(3, 0, SEEK_CUR) = 890531 +read(3, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(3, 890540, SEEK_SET) = 890540 +lseek(3, 0, SEEK_CUR) = 890540 +read(3, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(3, 890547, SEEK_SET) = 890547 +lseek(3, 1127, SEEK_CUR) = 891674 +lseek(3, 0, SEEK_CUR) = 891674 +read(3, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(3, 891685, SEEK_SET) = 891685 +lseek(3, 0, SEEK_CUR) = 891685 +read(3, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(3, 891691, SEEK_SET) = 891691 +lseek(3, 467, SEEK_CUR) = 892158 +lseek(3, 0, SEEK_CUR) = 892158 +read(3, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(3, 892167, SEEK_SET) = 892167 +lseek(3, 0, SEEK_CUR) = 892167 +read(3, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(3, 892174, SEEK_SET) = 892174 +lseek(3, 1276, SEEK_CUR) = 893450 +lseek(3, 0, SEEK_CUR) = 893450 +read(3, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(3, 893463, SEEK_SET) = 893463 +lseek(3, 0, SEEK_CUR) = 893463 +read(3, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(3, 893470, SEEK_SET) = 893470 +lseek(3, 1953, SEEK_CUR) = 895423 +lseek(3, 0, SEEK_CUR) = 895423 +read(3, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(3, 895438, SEEK_SET) = 895438 +lseek(3, 0, SEEK_CUR) = 895438 +read(3, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(3, 895445, SEEK_SET) = 895445 +lseek(3, 1794, SEEK_CUR) = 897239 +lseek(3, 0, SEEK_CUR) = 897239 +read(3, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(3, 897260, SEEK_SET) = 897260 +lseek(3, 0, SEEK_CUR) = 897260 +read(3, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(3, 897267, SEEK_SET) = 897267 +lseek(3, 3542, SEEK_CUR) = 900809 +lseek(3, 0, SEEK_CUR) = 900809 +read(3, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(3, 900824, SEEK_SET) = 900824 +lseek(3, 0, SEEK_CUR) = 900824 +read(3, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(3, 900831, SEEK_SET) = 900831 +lseek(3, 8564, SEEK_CUR) = 909395 +lseek(3, 0, SEEK_CUR) = 909395 +read(3, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(3, 909427, SEEK_SET) = 909427 +lseek(3, 0, SEEK_CUR) = 909427 +read(3, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(3, 964051, SEEK_SET) = 964051 +lseek(3, 352, SEEK_CUR) = 964403 +lseek(3, 0, SEEK_CUR) = 964403 +read(3, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(3, 964419, SEEK_SET) = 964419 +lseek(3, 0, SEEK_CUR) = 964419 +read(3, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(3, 964425, SEEK_SET) = 964425 +lseek(3, 638, SEEK_CUR) = 965063 +lseek(3, 0, SEEK_CUR) = 965063 +read(3, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(3, 965077, SEEK_SET) = 965077 +lseek(3, 0, SEEK_CUR) = 965077 +read(3, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(3, 965084, SEEK_SET) = 965084 +lseek(3, 2839, SEEK_CUR) = 967923 +lseek(3, 0, SEEK_CUR) = 967923 +read(3, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(3, 967942, SEEK_SET) = 967942 +lseek(3, 0, SEEK_CUR) = 967942 +read(3, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(3, 967949, SEEK_SET) = 967949 +lseek(3, 4356, SEEK_CUR) = 972305 +lseek(3, 0, SEEK_CUR) = 972305 +read(3, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(3, 972318, SEEK_SET) = 972318 +lseek(3, 0, SEEK_CUR) = 972318 +read(3, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(3, 972325, SEEK_SET) = 972325 +lseek(3, 1865, SEEK_CUR) = 974190 +lseek(3, 0, SEEK_CUR) = 974190 +read(3, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(3, 974204, SEEK_SET) = 974204 +lseek(3, 0, SEEK_CUR) = 974204 +read(3, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(3, 974211, SEEK_SET) = 974211 +lseek(3, 6757, SEEK_CUR) = 980968 +lseek(3, 0, SEEK_CUR) = 980968 +read(3, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(3, 980975, SEEK_SET) = 980975 +lseek(3, 0, SEEK_CUR) = 980975 +read(3, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(3, 980981, SEEK_SET) = 980981 +lseek(3, 307, SEEK_CUR) = 981288 +lseek(3, 0, SEEK_CUR) = 981288 +read(3, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(3, 981295, SEEK_SET) = 981295 +lseek(3, 0, SEEK_CUR) = 981295 +read(3, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 981302, SEEK_SET) = 981302 +lseek(3, 0, SEEK_CUR) = 981302 +open("/tmp/IO.so", O_RDWR|O_CREAT|O_TRUNC, 0777) = 4 +read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0,\20\0\000"..., 15208) = 15208 +write(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0,\20\0\000"..., 15208) = 15208 +close(4) = 0 +lseek(3, 0, SEEK_CUR) = 996510 +read(3, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(3, 996518, SEEK_SET) = 996518 +lseek(3, 0, SEEK_CUR) = 996518 +read(3, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(3, 996525, SEEK_SET) = 996525 +lseek(3, 7669, SEEK_CUR) = 1004194 +lseek(3, 0, SEEK_CUR) = 1004194 +read(3, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(3, 1004203, SEEK_SET) = 1004203 +lseek(3, 0, SEEK_CUR) = 1004203 +read(3, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(3, 1004210, SEEK_SET) = 1004210 +lseek(3, 1002, SEEK_CUR) = 1005212 +lseek(3, 0, SEEK_CUR) = 1005212 +read(3, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(3, 1005223, SEEK_SET) = 1005223 +lseek(3, 0, SEEK_CUR) = 1005223 +read(3, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(3, 1005230, SEEK_SET) = 1005230 +lseek(3, 3383, SEEK_CUR) = 1008613 +lseek(3, 0, SEEK_CUR) = 1008613 +read(3, "", 256) = 0 +lseek(3, 1008613, SEEK_SET) = 1008613 +close(3) = 0 +getuid32() = 1004 +geteuid32() = 1004 +getgid32() = 1004 +getegid32() = 1004 +time([1044027227]) = 1044027227 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("PERL2EXE_STORAGE/5.6.1/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/5.6.1", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("/tmp/5.6.1/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("/tmp/5.6.1", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("/tmp/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("/home/multilink/multidev/commands/group/5.6.1/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("/home/multilink/multidev/commands/group/5.6.1", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("/home/multilink/multidev/commands/group/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("lib\\site/5.6.1/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("lib\\site/5.6.1", 0xbffffb28) = -1 ENOENT (No such file or directory) +stat64("lib\\site/i686-linux", 0xbffffb28) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 3 +lseek(3, 671652, SEEK_SET) = 671652 +lseek(3, 0, SEEK_CUR) = 671652 +read(3, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(3, 671662, SEEK_SET) = 671662 +lseek(3, 0, SEEK_CUR) = 671662 +read(3, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(3, 671669, SEEK_SET) = 671669 +lseek(3, 0, SEEK_CUR) = 671669 +read(3, "eN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5\35BWPY\0F"..., 2238) = 2238 +close(3) = 0 +rt_sigaction(SIGCHLD, NULL, {SIG_DFL}, 8) = 0 +getpid() = 9177 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("PERL2EXE_STORAGE/lib.pmc", 0xbffff794) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 3 +lseek(3, 671652, SEEK_SET) = 671652 +lseek(3, 0, SEEK_CUR) = 671652 +read(3, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(3, 671662, SEEK_SET) = 671662 +lseek(3, 0, SEEK_CUR) = 671662 +read(3, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(3, 671669, SEEK_SET) = 671669 +lseek(3, 2238, SEEK_CUR) = 673907 +lseek(3, 0, SEEK_CUR) = 673907 +read(3, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(3, 673915, SEEK_SET) = 673915 +lseek(3, 0, SEEK_CUR) = 673915 +read(3, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(3, 673922, SEEK_SET) = 673922 +lseek(3, 0, SEEK_CUR) = 673922 +read(3, "6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_@\33}\2\4"..., 1424) = 1424 +close(3) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("PERL2EXE_STORAGE/Config.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 3 +lseek(3, 671652, SEEK_SET) = 671652 +lseek(3, 0, SEEK_CUR) = 671652 +read(3, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(3, 671662, SEEK_SET) = 671662 +lseek(3, 0, SEEK_CUR) = 671662 +read(3, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(3, 671669, SEEK_SET) = 671669 +lseek(3, 2238, SEEK_CUR) = 673907 +lseek(3, 0, SEEK_CUR) = 673907 +read(3, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(3, 673915, SEEK_SET) = 673915 +lseek(3, 0, SEEK_CUR) = 673915 +read(3, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(3, 673922, SEEK_SET) = 673922 +lseek(3, 1424, SEEK_CUR) = 675346 +lseek(3, 0, SEEK_CUR) = 675346 +read(3, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(3, 675366, SEEK_SET) = 675366 +lseek(3, 0, SEEK_CUR) = 675366 +read(3, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(3, 675373, SEEK_SET) = 675373 +lseek(3, 9237, SEEK_CUR) = 684610 +lseek(3, 0, SEEK_CUR) = 684610 +read(3, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(3, 684618, SEEK_SET) = 684618 +lseek(3, 0, SEEK_CUR) = 684618 +read(3, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(3, 684626, SEEK_SET) = 684626 +lseek(3, 40318, SEEK_CUR) = 724944 +lseek(3, 0, SEEK_CUR) = 724944 +read(3, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(3, 724952, SEEK_SET) = 724952 +lseek(3, 0, SEEK_CUR) = 724952 +read(3, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 724959, SEEK_SET) = 724959 +lseek(3, 65908, SEEK_CUR) = 790867 +lseek(3, 0, SEEK_CUR) = 790867 +read(3, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(3, 790881, SEEK_SET) = 790881 +lseek(3, 0, SEEK_CUR) = 790881 +read(3, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(3, 790888, SEEK_SET) = 790888 +lseek(3, 6878, SEEK_CUR) = 797766 +lseek(3, 0, SEEK_CUR) = 797766 +read(3, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(3, 797776, SEEK_SET) = 797776 +lseek(3, 0, SEEK_CUR) = 797776 +read(3, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 797783, SEEK_SET) = 797783 +lseek(3, 61376, SEEK_CUR) = 859159 +lseek(3, 0, SEEK_CUR) = 859159 +read(3, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(3, 859170, SEEK_SET) = 859170 +lseek(3, 0, SEEK_CUR) = 859170 +read(3, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(3, 859178, SEEK_SET) = 859178 +lseek(3, 0, SEEK_CUR) = 859178 +read(3, "6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31\34\33\0"..., 31353) = 31353 +close(3) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("PERL2EXE_STORAGE/Exporter.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 3 +lseek(3, 671652, SEEK_SET) = 671652 +lseek(3, 0, SEEK_CUR) = 671652 +read(3, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(3, 671662, SEEK_SET) = 671662 +lseek(3, 0, SEEK_CUR) = 671662 +read(3, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(3, 671669, SEEK_SET) = 671669 +lseek(3, 2238, SEEK_CUR) = 673907 +lseek(3, 0, SEEK_CUR) = 673907 +read(3, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(3, 673915, SEEK_SET) = 673915 +lseek(3, 0, SEEK_CUR) = 673915 +read(3, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(3, 673922, SEEK_SET) = 673922 +lseek(3, 1424, SEEK_CUR) = 675346 +lseek(3, 0, SEEK_CUR) = 675346 +read(3, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(3, 675366, SEEK_SET) = 675366 +lseek(3, 0, SEEK_CUR) = 675366 +read(3, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(3, 675373, SEEK_SET) = 675373 +lseek(3, 9237, SEEK_CUR) = 684610 +lseek(3, 0, SEEK_CUR) = 684610 +read(3, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(3, 684618, SEEK_SET) = 684618 +lseek(3, 0, SEEK_CUR) = 684618 +read(3, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(3, 684626, SEEK_SET) = 684626 +lseek(3, 40318, SEEK_CUR) = 724944 +lseek(3, 0, SEEK_CUR) = 724944 +read(3, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(3, 724952, SEEK_SET) = 724952 +lseek(3, 0, SEEK_CUR) = 724952 +read(3, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 724959, SEEK_SET) = 724959 +lseek(3, 65908, SEEK_CUR) = 790867 +lseek(3, 0, SEEK_CUR) = 790867 +read(3, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(3, 790881, SEEK_SET) = 790881 +lseek(3, 0, SEEK_CUR) = 790881 +read(3, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(3, 790888, SEEK_SET) = 790888 +lseek(3, 6878, SEEK_CUR) = 797766 +lseek(3, 0, SEEK_CUR) = 797766 +read(3, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(3, 797776, SEEK_SET) = 797776 +lseek(3, 0, SEEK_CUR) = 797776 +read(3, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 797783, SEEK_SET) = 797783 +lseek(3, 61376, SEEK_CUR) = 859159 +lseek(3, 0, SEEK_CUR) = 859159 +read(3, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(3, 859170, SEEK_SET) = 859170 +lseek(3, 0, SEEK_CUR) = 859170 +read(3, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(3, 859178, SEEK_SET) = 859178 +lseek(3, 31353, SEEK_CUR) = 890531 +lseek(3, 0, SEEK_CUR) = 890531 +read(3, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(3, 890540, SEEK_SET) = 890540 +lseek(3, 0, SEEK_CUR) = 890540 +read(3, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(3, 890547, SEEK_SET) = 890547 +lseek(3, 1127, SEEK_CUR) = 891674 +lseek(3, 0, SEEK_CUR) = 891674 +read(3, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(3, 891685, SEEK_SET) = 891685 +lseek(3, 0, SEEK_CUR) = 891685 +read(3, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(3, 891691, SEEK_SET) = 891691 +lseek(3, 467, SEEK_CUR) = 892158 +lseek(3, 0, SEEK_CUR) = 892158 +read(3, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(3, 892167, SEEK_SET) = 892167 +lseek(3, 0, SEEK_CUR) = 892167 +read(3, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(3, 892174, SEEK_SET) = 892174 +lseek(3, 1276, SEEK_CUR) = 893450 +lseek(3, 0, SEEK_CUR) = 893450 +read(3, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(3, 893463, SEEK_SET) = 893463 +lseek(3, 0, SEEK_CUR) = 893463 +read(3, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(3, 893470, SEEK_SET) = 893470 +lseek(3, 0, SEEK_CUR) = 893470 +read(3, "6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7\34\32\33"..., 1953) = 1953 +close(3) = 0 +brk(0x810e000) = 0x810e000 +brk(0x810f000) = 0x810f000 +brk(0x8110000) = 0x8110000 +brk(0x8112000) = 0x8112000 +brk(0x8115000) = 0x8115000 +brk(0x811a000) = 0x811a000 +brk(0x811b000) = 0x811b000 +brk(0x811c000) = 0x811c000 +brk(0x811d000) = 0x811d000 +brk(0x811e000) = 0x811e000 +brk(0x811f000) = 0x811f000 +brk(0x8120000) = 0x8120000 +brk(0x8121000) = 0x8121000 +brk(0x8122000) = 0x8122000 +stat64("../../lib/", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 +stat64("../../lib//i686-linux/auto", 0xbffff8c0) = -1 ENOENT (No such file or directory) +stat64("../../lib//5.6.1", 0xbffff8c0) = -1 ENOENT (No such file or directory) +stat64("../../lib//5.6.1/i686-linux", 0xbffff8c0) = -1 ENOENT (No such file or directory) +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//Multigate/Users.pmc", 0xbffff794) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 3 +lseek(3, 671652, SEEK_SET) = 671652 +lseek(3, 0, SEEK_CUR) = 671652 +read(3, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(3, 671662, SEEK_SET) = 671662 +lseek(3, 0, SEEK_CUR) = 671662 +read(3, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(3, 671669, SEEK_SET) = 671669 +lseek(3, 2238, SEEK_CUR) = 673907 +lseek(3, 0, SEEK_CUR) = 673907 +read(3, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(3, 673915, SEEK_SET) = 673915 +lseek(3, 0, SEEK_CUR) = 673915 +read(3, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(3, 673922, SEEK_SET) = 673922 +lseek(3, 1424, SEEK_CUR) = 675346 +lseek(3, 0, SEEK_CUR) = 675346 +read(3, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(3, 675366, SEEK_SET) = 675366 +lseek(3, 0, SEEK_CUR) = 675366 +read(3, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(3, 675373, SEEK_SET) = 675373 +lseek(3, 9237, SEEK_CUR) = 684610 +lseek(3, 0, SEEK_CUR) = 684610 +read(3, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(3, 684618, SEEK_SET) = 684618 +lseek(3, 0, SEEK_CUR) = 684618 +read(3, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(3, 684626, SEEK_SET) = 684626 +lseek(3, 40318, SEEK_CUR) = 724944 +lseek(3, 0, SEEK_CUR) = 724944 +read(3, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(3, 724952, SEEK_SET) = 724952 +lseek(3, 0, SEEK_CUR) = 724952 +read(3, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 724959, SEEK_SET) = 724959 +lseek(3, 65908, SEEK_CUR) = 790867 +lseek(3, 0, SEEK_CUR) = 790867 +read(3, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(3, 790881, SEEK_SET) = 790881 +lseek(3, 0, SEEK_CUR) = 790881 +read(3, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(3, 790888, SEEK_SET) = 790888 +lseek(3, 6878, SEEK_CUR) = 797766 +lseek(3, 0, SEEK_CUR) = 797766 +read(3, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(3, 797776, SEEK_SET) = 797776 +lseek(3, 0, SEEK_CUR) = 797776 +read(3, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 797783, SEEK_SET) = 797783 +lseek(3, 61376, SEEK_CUR) = 859159 +lseek(3, 0, SEEK_CUR) = 859159 +read(3, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(3, 859170, SEEK_SET) = 859170 +lseek(3, 0, SEEK_CUR) = 859170 +read(3, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(3, 859178, SEEK_SET) = 859178 +lseek(3, 31353, SEEK_CUR) = 890531 +lseek(3, 0, SEEK_CUR) = 890531 +read(3, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(3, 890540, SEEK_SET) = 890540 +lseek(3, 0, SEEK_CUR) = 890540 +read(3, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(3, 890547, SEEK_SET) = 890547 +lseek(3, 1127, SEEK_CUR) = 891674 +lseek(3, 0, SEEK_CUR) = 891674 +read(3, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(3, 891685, SEEK_SET) = 891685 +lseek(3, 0, SEEK_CUR) = 891685 +read(3, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(3, 891691, SEEK_SET) = 891691 +lseek(3, 467, SEEK_CUR) = 892158 +lseek(3, 0, SEEK_CUR) = 892158 +read(3, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(3, 892167, SEEK_SET) = 892167 +lseek(3, 0, SEEK_CUR) = 892167 +read(3, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(3, 892174, SEEK_SET) = 892174 +lseek(3, 1276, SEEK_CUR) = 893450 +lseek(3, 0, SEEK_CUR) = 893450 +read(3, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(3, 893463, SEEK_SET) = 893463 +lseek(3, 0, SEEK_CUR) = 893463 +read(3, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(3, 893470, SEEK_SET) = 893470 +lseek(3, 1953, SEEK_CUR) = 895423 +lseek(3, 0, SEEK_CUR) = 895423 +read(3, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(3, 895438, SEEK_SET) = 895438 +lseek(3, 0, SEEK_CUR) = 895438 +read(3, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(3, 895445, SEEK_SET) = 895445 +lseek(3, 1794, SEEK_CUR) = 897239 +lseek(3, 0, SEEK_CUR) = 897239 +read(3, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(3, 897260, SEEK_SET) = 897260 +lseek(3, 0, SEEK_CUR) = 897260 +read(3, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(3, 897267, SEEK_SET) = 897267 +lseek(3, 3542, SEEK_CUR) = 900809 +lseek(3, 0, SEEK_CUR) = 900809 +read(3, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(3, 900824, SEEK_SET) = 900824 +lseek(3, 0, SEEK_CUR) = 900824 +read(3, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(3, 900831, SEEK_SET) = 900831 +lseek(3, 8564, SEEK_CUR) = 909395 +lseek(3, 0, SEEK_CUR) = 909395 +read(3, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(3, 909427, SEEK_SET) = 909427 +lseek(3, 0, SEEK_CUR) = 909427 +read(3, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(3, 964051, SEEK_SET) = 964051 +lseek(3, 352, SEEK_CUR) = 964403 +lseek(3, 0, SEEK_CUR) = 964403 +read(3, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(3, 964419, SEEK_SET) = 964419 +lseek(3, 0, SEEK_CUR) = 964419 +read(3, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(3, 964425, SEEK_SET) = 964425 +lseek(3, 638, SEEK_CUR) = 965063 +lseek(3, 0, SEEK_CUR) = 965063 +read(3, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(3, 965077, SEEK_SET) = 965077 +lseek(3, 0, SEEK_CUR) = 965077 +read(3, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(3, 965084, SEEK_SET) = 965084 +lseek(3, 2839, SEEK_CUR) = 967923 +lseek(3, 0, SEEK_CUR) = 967923 +read(3, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(3, 967942, SEEK_SET) = 967942 +lseek(3, 0, SEEK_CUR) = 967942 +read(3, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(3, 967949, SEEK_SET) = 967949 +lseek(3, 4356, SEEK_CUR) = 972305 +lseek(3, 0, SEEK_CUR) = 972305 +read(3, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(3, 972318, SEEK_SET) = 972318 +lseek(3, 0, SEEK_CUR) = 972318 +read(3, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(3, 972325, SEEK_SET) = 972325 +lseek(3, 1865, SEEK_CUR) = 974190 +lseek(3, 0, SEEK_CUR) = 974190 +read(3, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(3, 974204, SEEK_SET) = 974204 +lseek(3, 0, SEEK_CUR) = 974204 +read(3, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(3, 974211, SEEK_SET) = 974211 +lseek(3, 6757, SEEK_CUR) = 980968 +lseek(3, 0, SEEK_CUR) = 980968 +read(3, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(3, 980975, SEEK_SET) = 980975 +lseek(3, 0, SEEK_CUR) = 980975 +read(3, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(3, 980981, SEEK_SET) = 980981 +lseek(3, 307, SEEK_CUR) = 981288 +lseek(3, 0, SEEK_CUR) = 981288 +read(3, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(3, 981295, SEEK_SET) = 981295 +lseek(3, 0, SEEK_CUR) = 981295 +read(3, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(3, 981302, SEEK_SET) = 981302 +lseek(3, 15208, SEEK_CUR) = 996510 +lseek(3, 0, SEEK_CUR) = 996510 +read(3, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(3, 996518, SEEK_SET) = 996518 +lseek(3, 0, SEEK_CUR) = 996518 +read(3, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(3, 996525, SEEK_SET) = 996525 +lseek(3, 7669, SEEK_CUR) = 1004194 +lseek(3, 0, SEEK_CUR) = 1004194 +read(3, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(3, 1004203, SEEK_SET) = 1004203 +lseek(3, 0, SEEK_CUR) = 1004203 +read(3, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(3, 1004210, SEEK_SET) = 1004210 +lseek(3, 1002, SEEK_CUR) = 1005212 +lseek(3, 0, SEEK_CUR) = 1005212 +read(3, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(3, 1005223, SEEK_SET) = 1005223 +lseek(3, 0, SEEK_CUR) = 1005223 +read(3, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(3, 1005230, SEEK_SET) = 1005230 +lseek(3, 3383, SEEK_CUR) = 1008613 +lseek(3, 0, SEEK_CUR) = 1008613 +read(3, "", 256) = 0 +lseek(3, 1008613, SEEK_SET) = 1008613 +close(3) = 0 +open("../../lib//Multigate/Users.pm", O_RDONLY) = 3 +fstat64(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 20), ...}) = 0 +old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000 +write(1, "use ::Multigate::Users; #perl"..., 37) = 37 +fstat64(3, {st_mode=S_IFREG|0755, st_size=12618, ...}) = 0 +old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40015000 +read(3, "package Multigate::Users;\n\n#\n# T"..., 4096) = 4096 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//strict.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//strict.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/strict.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 0, SEEK_CUR) = 891691 +read(4, "6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~*}}}$c"..., 467) = 467 +close(4) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//vars.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//vars.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/vars.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 0, SEEK_CUR) = 892174 +read(4, "6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R\23IFGD\20"..., 1276) = 1276 +close(4) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//warnings/register.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//warnings/register.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/warnings/register.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//warnings.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/warnings.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//Carp.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/Carp.pmc", 0xbfffed44) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 0, SEEK_CUR) = 890547 +read(4, "6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc~*}}}$c"..., 1127) = 1127 +close(4) = 0 +brk(0x812d000) = 0x812d000 +brk(0x812e000) = 0x812e000 +brk(0x812f000) = 0x812f000 +brk(0x8130000) = 0x8130000 +brk(0x8131000) = 0x8131000 +brk(0x8132000) = 0x8132000 +brk(0x8133000) = 0x8133000 +brk(0x8134000) = 0x8134000 +brk(0x8135000) = 0x8135000 +brk(0x8136000) = 0x8136000 +brk(0x8137000) = 0x8137000 +brk(0x8138000) = 0x8138000 +brk(0x8139000) = 0x8139000 +brk(0x813a000) = 0x813a000 +brk(0x813b000) = 0x813b000 +brk(0x813c000) = 0x813c000 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//DBI.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//DBI.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/DBI.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +brk(0x8146000) = 0x8146000 +lseek(4, 0, SEEK_CUR) = 684626 +read(4, "eOVi\tUR!b @\26\2^\33AEXAY\0DYC[[\20EXG\31I"..., 40318) = 40318 +brk(0x8150000) = 0x8150000 +close(4) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//DynaLoader.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//DynaLoader.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/DynaLoader.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 0, SEEK_CUR) = 900831 +read(4, "LexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc~*}}}$c"..., 8564) = 8564 +close(4) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +brk(0x8151000) = 0x8151000 +brk(0x8152000) = 0x8152000 +brk(0x8153000) = 0x8153000 +brk(0x8154000) = 0x8154000 +brk(0x8155000) = 0x8155000 +stat64("../../lib//AutoLoader.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//AutoLoader.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/AutoLoader.pmc", 0xbffff0b4) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//auto/DynaLoader/dl_findfile.al", O_RDONLY) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//Exporter/Heavy.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/Exporter/Heavy.pmc", 0xbffff104) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO \0\2\f\35U*|cyc~"..., 80) = 80 +lseek(4, 964051, SEEK_SET) = 964051 +lseek(4, 352, SEEK_CUR) = 964403 +lseek(4, 0, SEEK_CUR) = 964403 +read(4, "IO/Seekable.pm\r\n-638\r\neexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 964419, SEEK_SET) = 964419 +lseek(4, 0, SEEK_CUR) = 964419 +read(4, "-638\r\neexP\f\f\31\4G\fN/ HW2\21\f\4\17B\32\fHc~"..., 80) = 80 +lseek(4, 964425, SEEK_SET) = 964425 +lseek(4, 638, SEEK_CUR) = 965063 +lseek(4, 0, SEEK_CUR) = 965063 +read(4, "File/Spec.pm\r\n-2839\r\n6\16\21K\f\10\27Ef\0\2"..., 256) = 256 +lseek(4, 965077, SEEK_SET) = 965077 +lseek(4, 0, SEEK_CUR) = 965077 +read(4, "-2839\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nTd*\3\32\26"..., 80) = 80 +lseek(4, 965084, SEEK_SET) = 965084 +lseek(4, 2839, SEEK_CUR) = 967923 +lseek(4, 0, SEEK_CUR) = 967923 +read(4, "File/Spec/Unix.pm\r\n-4356\r\n6\16\21K\f\10"..., 256) = 256 +lseek(4, 967942, SEEK_SET) = 967942 +lseek(4, 0, SEEK_CUR) = 967942 +read(4, "-4356\r\n6\16\21K\f\10\27Ef\0\2\3UH>\21\21\nUTu\30\0\v"..., 80) = 80 +lseek(4, 967949, SEEK_SET) = 967949 +lseek(4, 4356, SEEK_CUR) = 972305 +lseek(4, 0, SEEK_CUR) = 972305 +read(4, "XSLoader.pm\r\n-1865\r\neO5E\3\n\0\4T\f\nF"..., 256) = 256 +lseek(4, 972318, SEEK_SET) = 972318 +lseek(4, 0, SEEK_CUR) = 972318 +read(4, "-1865\r\neO5E\3\n\0\4T\f\nF\t\0\2\fT1<\"O\27\r\26\33"..., 80) = 80 +lseek(4, 972325, SEEK_SET) = 972325 +lseek(4, 1865, SEEK_CUR) = 974190 +lseek(4, 0, SEEK_CUR) = 974190 +read(4, "IO/Handle.pm\r\n-6757\r\nL\37\23C\6\16\25\0\0 !"..., 256) = 256 +lseek(4, 974204, SEEK_SET) = 974204 +lseek(4, 0, SEEK_CUR) = 974204 +read(4, "-6757\r\nL\37\23C\6\16\25\0\0 !\\U:\f\17\20\5\nU*|cyc"..., 80) = 80 +lseek(4, 974211, SEEK_SET) = 974211 +lseek(4, 6757, SEEK_CUR) = 980968 +lseek(4, 0, SEEK_CUR) = 980968 +read(4, "IO.pm\r\n-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\n"..., 256) = 256 +lseek(4, 980975, SEEK_SET) = 980975 +lseek(4, 0, SEEK_CUR) = 980975 +read(4, "-307\r\neexP\f\f\31\4G\fN/ Igk\1\32\nNx%%\34\10\20"..., 80) = 80 +lseek(4, 980981, SEEK_SET) = 980981 +lseek(4, 307, SEEK_CUR) = 981288 +lseek(4, 0, SEEK_CUR) = 981288 +read(4, "IO.so\r\n15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0"..., 256) = 256 +lseek(4, 981295, SEEK_SET) = 981295 +lseek(4, 0, SEEK_CUR) = 981295 +read(4, "15208\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 981302, SEEK_SET) = 981302 +lseek(4, 15208, SEEK_CUR) = 996510 +lseek(4, 0, SEEK_CUR) = 996510 +read(4, "Cwd.pm\r\n-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1"..., 256) = 256 +lseek(4, 996518, SEEK_SET) = 996518 +lseek(4, 0, SEEK_CUR) = 996518 +read(4, "-7669\r\n6\16\21K\f\10\27Ec\36\n]e\0\10\20\1\0\35\v\0C"..., 80) = 80 +lseek(4, 996525, SEEK_SET) = 996525 +lseek(4, 7669, SEEK_CUR) = 1004194 +lseek(4, 0, SEEK_CUR) = 1004194 +read(4, "base.pm\r\n-1002\r\nLex*gexo*cdlexgk"..., 256) = 256 +lseek(4, 1004203, SEEK_SET) = 1004203 +lseek(4, 0, SEEK_CUR) = 1004203 +read(4, "-1002\r\nLex*gexo*cdlexgk~ced*|cyc"..., 80) = 80 +lseek(4, 1004210, SEEK_SET) = 1004210 +lseek(4, 1002, SEEK_CUR) = 1005212 +lseek(4, 0, SEEK_CUR) = 1005212 +read(4, "fields.pm\r\n-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1"..., 256) = 256 +lseek(4, 1005223, SEEK_SET) = 1005223 +lseek(4, 0, SEEK_CUR) = 1005223 +read(4, "-3383\r\n6\16\21K\f\10\27EF\0\v\n\v\1Vk~ced*|cyc"..., 80) = 80 +lseek(4, 1005230, SEEK_SET) = 1005230 +lseek(4, 3383, SEEK_CUR) = 1008613 +lseek(4, 0, SEEK_CUR) = 1008613 +read(4, "", 256) = 0 +lseek(4, 1008613, SEEK_SET) = 1008613 +close(4) = 0 +open("../../lib//FileHandle.pm", O_RDONLY) = -1 ENOENT (No such file or directory) +stat64("PERL2EXE_STORAGE/FileHandle.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 0, SEEK_CUR) = 895445 +read(4, "6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32\26IA\16"..., 1794) = 1794 +close(4) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 +stat64("../../lib//IO/File.pmc", 0xbffff424) = -1 ENOENT (No such file or directory) +open("/home/multilink/multidev/commands/group/group", O_RDONLY) = 4 +lseek(4, 671652, SEEK_SET) = 671652 +lseek(4, 0, SEEK_CUR) = 671652 +read(4, "group.pl\r\n-2238\r\neN]U\36\35]\7I\7A\26\n\0\1"..., 256) = 256 +lseek(4, 671662, SEEK_SET) = 671662 +lseek(4, 0, SEEK_CUR) = 671662 +read(4, "-2238\r\neN]U\36\35]\7I\7A\26\n\0\1AY\36edU\5\fS\5"..., 80) = 80 +lseek(4, 671669, SEEK_SET) = 671669 +lseek(4, 2238, SEEK_CUR) = 673907 +lseek(4, 0, SEEK_CUR) = 673907 +read(4, "lib.pm\r\n-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21"..., 256) = 256 +lseek(4, 673915, SEEK_SET) = 673915 +lseek(4, 0, SEEK_CUR) = 673915 +read(4, "-1424\r\n6\16\21K\f\10\27EL\0\f]ex\30\22\21IZ@\20F\\,_"..., 80) = 80 +lseek(4, 673922, SEEK_SET) = 673922 +lseek(4, 1424, SEEK_CUR) = 675346 +lseek(4, 0, SEEK_CUR) = 675346 +read(4, "Multigate/Users.pm\r\n-9237\r\n6\16\21K\f"..., 256) = 256 +lseek(4, 675366, SEEK_SET) = 675366 +lseek(4, 0, SEEK_CUR) = 675366 +read(4, "-9237\r\n6\16\21K\f\10\27Em\34\2\22\6\25\f\25\21SU;S\23"..., 80) = 80 +lseek(4, 675373, SEEK_SET) = 675373 +lseek(4, 9237, SEEK_CUR) = 684610 +lseek(4, 0, SEEK_CUR) = 684610 +read(4, "DBI.pm\r\n-40318\r\neOVi\tUR!b @\26\2^\33A"..., 256) = 256 +lseek(4, 684618, SEEK_SET) = 684618 +lseek(4, 0, SEEK_CUR) = 684618 +read(4, "-40318\r\neOVi\tUR!b @\26\2^\33AEXAY\0DYC"..., 80) = 80 +lseek(4, 684626, SEEK_SET) = 684626 +lseek(4, 40318, SEEK_CUR) = 724944 +lseek(4, 0, SEEK_CUR) = 724944 +read(4, "DBI.so\r\n65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3"..., 256) = 256 +lseek(4, 724952, SEEK_SET) = 724952 +lseek(4, 0, SEEK_CUR) = 724952 +read(4, "65908\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 724959, SEEK_SET) = 724959 +lseek(4, 65908, SEEK_CUR) = 790867 +lseek(4, 0, SEEK_CUR) = 790867 +read(4, "DBD/mysql.pm\r\n-6878\r\neOR\0\"\32\0EB\f\2"..., 256) = 256 +lseek(4, 790881, SEEK_SET) = 790881 +lseek(4, 0, SEEK_CUR) = 790881 +read(4, "-6878\r\neOR\0\"\32\0EB\f\2\t\31\27\tA1\4\16\rSV\36\32"..., 80) = 80 +lseek(4, 790888, SEEK_SET) = 790888 +lseek(4, 6878, SEEK_CUR) = 797766 +lseek(4, 0, SEEK_CUR) = 797766 +read(4, "mysql.so\r\n61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0"..., 256) = 256 +lseek(4, 797776, SEEK_SET) = 797776 +lseek(4, 0, SEEK_CUR) = 797776 +read(4, "61376\r\n\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0"..., 80) = 80 +lseek(4, 797783, SEEK_SET) = 797783 +lseek(4, 61376, SEEK_CUR) = 859159 +lseek(4, 0, SEEK_CUR) = 859159 +read(4, "Config.pm\r\n-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6"..., 256) = 256 +lseek(4, 859170, SEEK_SET) = 859170 +lseek(4, 0, SEEK_CUR) = 859170 +read(4, "-31353\r\n6\16\21K\f\10\27Ec\6\0\0\6\25Vk\1\32\nNe\16\31"..., 80) = 80 +lseek(4, 859178, SEEK_SET) = 859178 +lseek(4, 31353, SEEK_CUR) = 890531 +lseek(4, 0, SEEK_CUR) = 890531 +read(4, "Carp.pm\r\n-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk"..., 256) = 256 +lseek(4, 890540, SEEK_SET) = 890540 +lseek(4, 0, SEEK_CUR) = 890540 +read(4, "-1127\r\n6\16\21K\f\10\27Ec\10\34\26Txgk~ced*|cyc"..., 80) = 80 +lseek(4, 890547, SEEK_SET) = 890547 +lseek(4, 1127, SEEK_CUR) = 891674 +lseek(4, 0, SEEK_CUR) = 891674 +read(4, "strict.pm\r\n-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6V"..., 256) = 256 +lseek(4, 891685, SEEK_SET) = 891685 +lseek(4, 0, SEEK_CUR) = 891685 +read(4, "-467\r\n6\16\21K\f\10\27ES\35\34\17\f\6Vk~ced*|cyc~"..., 80) = 80 +lseek(4, 891691, SEEK_SET) = 891691 +lseek(4, 467, SEEK_CUR) = 892158 +lseek(4, 0, SEEK_CUR) = 892158 +read(4, "vars.pm\r\n-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23"..., 256) = 256 +lseek(4, 892167, SEEK_SET) = 892167 +lseek(4, 0, SEEK_CUR) = 892167 +read(4, "-1276\r\n6\16\21K\f\10\27EV\10\34\25Txg\23\21\30\32\7R"..., 80) = 80 +lseek(4, 892174, SEEK_SET) = 892174 +lseek(4, 1276, SEEK_CUR) = 893450 +lseek(4, 0, SEEK_CUR) = 893450 +read(4, "Exporter.pm\r\n-1953\r\n6\16\21K\f\10\27Ee\21\36\t"..., 256) = 256 +lseek(4, 893463, SEEK_SET) = 893463 +lseek(4, 0, SEEK_CUR) = 893463 +read(4, "-1953\r\n6\16\21K\f\10\27Ee\21\36\t\35\6\10\23Oce\34E\7"..., 80) = 80 +lseek(4, 893470, SEEK_SET) = 893470 +lseek(4, 1953, SEEK_CUR) = 895423 +lseek(4, 0, SEEK_CUR) = 895423 +read(4, "FileHandle.pm\r\n-1794\r\n6\16\21K\f\10\27Ef\0"..., 256) = 256 +lseek(4, 895438, SEEK_SET) = 895438 +lseek(4, 0, SEEK_CUR) = 895438 +read(4, "-1794\r\n6\16\21K\f\10\27Ef\0\2\3\'\23\3\5\30\fTd*\3\32"..., 80) = 80 +lseek(4, 895445, SEEK_SET) = 895445 +lseek(4, 1794, SEEK_CUR) = 897239 +lseek(4, 0, SEEK_CUR) = 897239 +read(4, "Multigate/Config.pm\r\n-3542\r\neex*"..., 256) = 256 +lseek(4, 897260, SEEK_SET) = 897260 +lseek(4, 0, SEEK_CUR) = 897260 +read(4, "-3542\r\neex*gex\25A\n\5\7\10\27M,\1\5\33\7G\27\35\26S"..., 80) = 80 +lseek(4, 897267, SEEK_SET) = 897267 +lseek(4, 3542, SEEK_CUR) = 900809 +lseek(4, 0, SEEK_CUR) = 900809 +read(4, "DynaLoader.pm\r\n-8564\r\nLexP\f\f\31\4G\f"..., 256) = 256 +lseek(4, 900824, SEEK_SET) = 900824 +lseek(4, 0, SEEK_CUR) = 900824 +read(4, "-8564\r\nLexP\f\f\31\4G\fN\"\26\34\f-\33\10\v\vRMcyc"..., 80) = 80 +lseek(4, 900831, SEEK_SET) = 900831 +lseek(4, 8564, SEEK_CUR) = 909395 +lseek(4, 0, SEEK_CUR) = 909395 +read(4, "auto/DynaLoader/dl_findfile.al\r\n"..., 256) = 256 +lseek(4, 909427, SEEK_SET) = 909427 +lseek(4, 0, SEEK_CUR) = 909427 +read(4, "-3094\r\neO