Thanks Jim,

I am still unable to sum up the field $rlptxat.

The error I am getting is below:

Scalar found where operator expected at ./jim.pl line 52, near "$sum"
        (Missing semicolon on previous line?)
"my" variable %sum masks earlier declaration in same scope at ./jim.pl line 54.
"my" variable %sum masks earlier declaration in same statement at ./jim.pl line 
55.
"my" variable $cell masks earlier declaration in same statement at ./jim.pl 
line 55.
"my" variable %sum masks earlier declaration in same scope at ./jim.pl line 56.
"my" variable $cell masks earlier declaration in same scope at ./jim.pl line 56.
"my" variable $sect masks earlier declaration in same scope at ./jim.pl line 56.
"my" variable %sum masks earlier declaration in same scope at ./jim.pl line 58.
"my" variable $cell masks earlier declaration in same scope at ./jim.pl line 58.
"my" variable $sect masks earlier declaration in same scope at ./jim.pl line 58.
"my" variable $chan masks earlier declaration in same scope at ./jim.pl line 58.
syntax error at ./jim.pl line 52, near "$sum"
Global symbol "%sum" requires explicit package name at ./jim.pl line 52.
Global symbol "$cell" requires explicit package name at ./jim.pl line 52.
Global symbol "$sect" requires explicit package name at ./jim.pl line 52.
Global symbol "$chan" requires explicit package name at ./jim.pl line 52.
Global symbol "$rlptxat" requires explicit package name at ./jim.pl line 54.
Execution of ./jim.pl aborted due to compilation errors.

My code is as follows:

#!/usr/bin/perl

use warnings;
use strict;

my @records = ();

while (<DATA>){

        next unless /;/;
        chomp;
    my @data = split /;/;
    my($cell,$sect,$chan,$carr,$rlptxat1,$dist,$precis) = 
@data[31,32,38,39,44,261,262];

        $carr =
                ( $chan == 75 )   ? 2 :
                ( $chan == 1025 ) ? 2 : 1 ; #nested ternary operator

        $dist =
                ( length( $dist ) > 1 ) ? $dist/6.6/8/2*10/10 : '' ;

        push @records, {
                cell            => $cell,
                sect            => $sect,
                carr            => $carr,
                chan            => $chan,
                RTD             => $dist,
                RLP1                    => $rlptxat1,
                Precis          => $precis,
        };
}

my @sorted = sort {
            $a->{cell} <=> $b->{cell} ||
            $a->{sect} <=> $b->{sect} ||
            $a->{carr} <=> $b->{carr}
      } @records ;

        my %sum

        $sum{$cell}{$sect}{$chan} += $rlptxat

        for my $cell ( sort keys %sum ) {
                for my $sect ( sort keys %{$sum{$cell}} ) {
                        for my $chan ( sort keys %{$sum{$cell}{$sect}} ) {
                        print "Value of sum($cell,$sect,$chan) is " .
            $sum{$cell}{$sect}{$chan} . "\n";
                }
        }
}

__DATA__
PACE | EVDOPCMD | 33.0 | 101218 | 07 |
8;1023240136;1218;0;1;00a000001a2bcdc7;0310003147702376;ac016d4a;;;5.6.128.8;0;;;;;43234169;43234349;;;10000;1;1;;0;;19;5.6.128.22;172.30.151.5;304;3;304;3;;;;;15;175;15;175;15;175;1;1798;1251;0;0;2;19;20;;;;;1;1;1;0;128;5.6.128.8;;;;;;;301;5.6.128.8;;;8;304;3;;;;1;43244037;;;1;18;43234169;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43234416;0;0;304;3;21;19;175;15;405;1;1;1;1;0;125;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240137;1218;0;1;00a000001db74ace;;ac0174ca;43243423;1678442111;5.6.128.8;1;0;;43242544;43244207;43243423;43243647;;;1000;1;1;;0;;19;5.6.128.26;;372;2;372;2;;43243012;0;43243562;15;175;15;175;15;175;1;;;;;5;48;19;20;49;50;;0;1;2;0;68;5.6.128.8;;;;;;;301;5.6.128.8;;;8;372;2;;;;1;43244207;;;1;18;43243423;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43242544;0;0;372;2;21;19;175;15;177;3;1;0;0;0;68;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43243753;0;0;372;2;21;19;175;15;177;3;1;1;1;0;71;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240138;1218;0;1;00a000002017ccdb;0310003147833882;aca344d7;;;5.6.128.13;0;;;;;43234160;43234358;;;10000;1;1;;0;;19;5.6.128.31;172.30.151.5;320;2;320;2;;;;;15;75;15;75;15;75;1;2162;1317;0;0;2;19;20;;;;;1;1;1;0;104;5.6.128.13;;;;;;;306;5.6.128.13;;;8;320;2;;;;1;43244164;;;1;18;43234160;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43234404;0;0;320;2;21;19;75;15;279;6;1;1;1;0;64;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240139;1218;0;1;00a1000009237b21;0310003147774000;aca3141e;;;5.6.128.13;0;;;;;43235644;43235820;;;9000;1;1;;0;;19;5.6.128.19;172.30.151.5;502;1;502;1;;;;;15;175;15;175;15;175;1;48;79;0;0;2;19;20;;;;;1;1;1;0;124;5.6.128.13;;;;;;;306;5.6.128.13;;;8;502;1;;;;1;43244194;;;1;18;43235644;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235887;0;0;502;1;21;19;175;15;27;1;1;1;1;0;127;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240140;1218;0;1;00a100000fb342be;0310003147858660;ac21c6e9;;;5.6.128.9;0;;;;;43235440;43235634;;;9000;1;1;;0;;19;5.6.128.31;172.30.151.5;383;2;383;2;;;;;15;175;15;175;15;175;1;0;112;0;0;2;19;20;;;;;1;1;1;0;104;5.6.128.9;;;;;;;302;5.6.128.9;;;8;383;2;;;;1;43244036;;;1;18;43235440;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235681;0;0;383;2;21;19;175;15;333;3;1;1;1;0;64;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240141;1218;0;1;00a0000013260981;0310003147737788;ac21cca6;;;5.6.128.9;0;;;;;43232669;43232853;;;12000;1;1;;0;;19;5.6.128.16;172.30.151.5;497;2;497;2;;;;;15;175;15;175;15;175;1;2054;1515;0;0;2;19;20;;;;;1;1;1;0;124;5.6.128.11;;;;;;;302;5.6.128.11;;;8;497;2;;;;1;43244113;;;1;18;43232669;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43232923;0;0;497;2;21;19;175;15;207;1;1;1;1;0;123;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240142;1218;0;1;00a000001a294cbd;0310003147712684;ac835deb;;;5.6.128.12;0;;;;;43233939;43234151;;;10000;1;1;;0;;19;5.6.128.18;172.30.151.5;429;1;429;1;;;;;15;175;15;175;15;175;1;1910;1248;0;0;2;19;20;;;;;1;1;1;0;140;5.6.128.12;;;;;;;305;5.6.128.12;;;8;429;1;;;;1;43243864;;;1;18;43233939;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43234217;0;0;429;1;21;19;175;15;21;1;1;1;1;0;140;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240143;1218;0;1;00a00000132663ee;0310003147852767;ac83d878;;;5.6.128.12;0;;;;;43238251;43238508;;;6000;1;2;;1;;19;5.6.128.29;172.30.151.5;385;3;385;3;1;;;;15;175;15;175;15;175;1;184;141;0;0;2;17;18;;;;;1;1;1;0;276;5.6.128.11;2;0;;385;3;0;305;5.6.128.11;;;8;385;3;;;;1;43243876;;;1;18;43238251;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43238569;0;2;380;1;21;19;175;15;48;14;1;1;1;0;273;1;;;;385;3;21;19;175;15;22080;12;1;1;1;0;273;1;;;;303;2;21;19;175;15;16728;14;1;1;1;0;657;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240144;1218;0;1;00a000001a1b8d14;0310003147796298;acc2c91f;;;5.6.128.14;0;;;;;43234802;43234980;;;9000;1;1;;0;;19;5.6.128.19;172.30.151.5;354;1;354;1;;;;;15;175;15;175;15;175;1;126;178;0;0;2;19;20;;;;;1;1;1;0;328;5.6.128.12;;;;;;;307;5.6.128.12;;;8;354;1;;;;1;43243741;;;1;18;43234802;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235059;0;0;354;1;21;19;175;15;132;3;1;1;1;0;328;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240145;1218;0;1;00a000000e4d17b9;0310003147796012;acc2f0ef;;;5.6.128.14;0;;;;;43243972;43244168;;;1000;1;2;;0;;19;5.6.128.31;172.30.151.5;430;2;430;2;;;;;15;175;15;175;15;175;1;17;17;0;0;2;19;20;;;;;1;1;1;0;72;5.6.128.14;;;;;;;307;5.6.128.14;;;8;430;2;;;;1;43244216;;;1;18;43243972;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43244215;0;0;430;2;21;19;175;15;258;3;1;1;1;0;64;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240146;1218;0;1;00a0000012b8b162;;ac638e6c;43242138;2482837299;5.6.128.11;1;0;;43241711;43244042;43242139;43242387;;;2000;1;1;;0;;19;5.6.128.17;;545;2;545;2;;43241739;0;43243339;15;175;15;175;15;175;1;;;;;5;48;19;20;49;50;;1;1;2;0;760;5.6.128.11;;;;;;;304;5.6.128.11;;;8;545;2;;;;1;43244042;;;1;18;43242139;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43241711;0;1;545;2;21;19;175;15;246;13;1;0;0;0;756;1;;;;;;;;75;1;21692;12;1;0;0;0;692;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43242547;0;1;545;2;21;19;175;15;246;12;1;1;1;0;757;1;;;;;;;;75;1;21692;12;1;0;0;0;693;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240147;1218;0;1;00a000001358ec87;0310003147853326;ac638797;;;5.6.128.11;0;;;;;43222634;43222818;;;22000;1;1;;0;;19;5.6.128.31;172.30.151.5;507;1;507;1;;;;;15;175;15;175;15;175;1;11644;19238;0;0;2;19;20;;;;;1;1;2;0;156;5.6.128.11;;;;;;;304;5.6.128.11;;;8;507;1;;;;1;43244372;;;1;18;43222634;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43222885;0;1;509;2;21;19;175;15;267;14;1;1;1;0;154;1;;;;507;1;21;19;175;15;9024;9;1;1;1;0;154;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43238558;2;1;509;2;21;19;175;15;267;18;0;1;0;0;134;1;;;;507;1;21;19;175;15;9026;7;1;1;1;1;150;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240148;1218;0;1;00a000001a29071c;0310003147863277;aca34724;;;5.6.128.13;0;;;;;43235441;43235623;;;9000;1;1;;0;;19;5.6.128.23;172.30.151.5;372;2;372;2;;;;;15;175;15;175;15;175;1;126;178;0;0;2;19;20;;;;;1;1;2;0;56;5.6.128.8;;;;;;;306;5.6.128.8;;;8;372;2;;;;1;43244232;;;1;18;43235441;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235689;0;1;372;2;21;19;175;15;177;3;1;1;1;0;55;1;;;;372;3;21;19;175;15;22080;11;1;1;1;0;55;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43239562;2;1;372;2;21;19;175;15;177;2;1;1;1;1;54;1;;;;372;3;21;19;175;15;22080;11;0;1;0;0;54;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240149;1218;0;1;00a0000013e401b1;0310003147860965;aca33922;;;5.6.128.13;0;;;;;43235032;43235199;;;10000;1;1;;0;;19;5.6.128.20;172.30.151.5;449;2;449;2;;;;;15;175;15;175;15;175;1;1052;1083;0;0;2;19;20;;;;;1;1;1;0;56;5.6.128.8;;;;;;;306;5.6.128.8;;;8;449;2;;;;1;43244285;;;1;18;43235032;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235265;0;0;449;2;21;19;175;15;276;2;1;1;1;0;55;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240150;1218;0;1;00a100000fb15359;0310003147737648;ace2cdc8;;;5.6.128.15;0;;;;;43237780;43237964;;;6000;1;2;;1;;19;5.6.128.20;172.30.151.5;355;1;355;1;1;;;;15;175;15;175;15;175;1;248;1477;0;0;2;17;18;;;;;1;1;1;0;60;5.6.128.15;2;0;;355;1;0;308;5.6.128.15;;;8;355;1;;;;1;43243860;;;1;18;43237780;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43238031;0;0;355;1;21;19;175;15;27;1;1;1;1;0;61;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240151;1218;0;1;00a000001a966e2b;0310003147852721;ace3111a;;;5.6.128.15;0;;;;;43235234;43235462;;;9000;1;1;;0;;19;5.6.128.24;172.30.151.5;355;1;355;1;;;;;15;75;15;75;15;75;1;130;181;0;0;2;19;20;;;;;1;1;1;0;316;5.6.128.15;;;;;;;308;5.6.128.15;;;8;355;1;;;;1;43244301;;;1;18;43235234;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235534;0;0;355;1;21;19;75;15;27;1;1;1;1;0;319;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240152;1218;0;1;00a000001a2aa9e9;0310003147764810;ac8313a5;;;5.6.128.12;0;;;;;43233740;43233944;;43232949;11000;22;2206;;0;;19;5.6.128.28;172.30.151.5;469;3;469;3;;;;;15;175;15;175;15;175;1;2011;1711;0;0;2;19;20;;;;;1;1;2;0;244;5.6.128.12;;;;;;;305;5.6.128.12;;;8;469;3;;;;1;43244272;;;1;18;43233740;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43234029;1;1;469;3;21;19;175;15;396;21;1;1;1;1;245;1;;;;467;2;21;19;175;15;12097;23;1;0;1;1;261;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43238682;2;1;469;3;21;19;175;15;396;23;1;1;1;1;246;1;;;;467;2;21;19;175;15;12096;26;0;1;0;0;246;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240153;1218;0;1;00a10000092f5eef;0310003147730954;ac834e31;;;5.6.128.12;0;;;;;43198109;43198305;;;46000;1;1;;0;;19;5.6.128.24;172.30.151.5;434;2;434;2;;;;;15;175;15;175;15;175;1;6461;14892;0;0;2;19;20;;;;;1;1;1;0;92;5.6.128.12;;;;;;;305;5.6.128.12;;;8;434;2;;;;1;43244285;;;1;18;43198109;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43198378;0;0;434;2;21;19;175;15;324;2;1;1;1;0;81;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240154;1218;0;1;00a000001a2bb7e4;0310003147723872;ac21bd70;;;5.6.128.9;0;;;;;43238663;43238829;;;6000;1;2;;1;;19;5.6.128.16;172.30.151.5;383;2;383;2;1;;;;15;175;15;175;15;175;1;144;91;0;0;2;17;18;;;;;1;1;2;0;76;5.6.128.9;2;0;;383;2;0;302;5.6.128.9;;;8;383;2;;;;1;43244263;;;1;18;43238663;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43238892;0;1;383;3;21;19;175;15;501;19;1;1;1;0;74;1;;;;383;2;21;19;175;15;21312;1;1;1;1;0;74;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43242749;2;1;383;3;21;19;175;15;501;17;0;1;0;0;74;1;;;;383;2;21;19;175;15;21312;2;1;1;1;1;74;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240155;1218;0;1;00a100001304fa6a;0310003147779494;ac21d0e9;;;5.6.128.9;0;;;;;43230982;43231183;;;14000;1;1;;0;;19;5.6.128.18;172.30.151.5;383;2;383;2;;;;;15;175;15;175;15;175;1;712;2682;0;0;2;19;20;;;;;1;1;1;0;128;5.6.128.9;;;;;;;302;5.6.128.9;;;8;383;2;;;;1;43244337;;;1;18;43230982;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43231249;0;0;383;2;21;19;175;15;333;6;1;1;1;0;128;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240156;1218;0;1;00a000001adb5185;0310003147875158;aca333b2;;;5.6.128.13;0;;;;;43233513;43233705;;;11000;1;1;;0;;19;5.6.128.25;172.30.151.5;514;1;514;2;;;;;15;75;15;75;15;75;1;1721;1286;0;0;2;19;20;;;;;1;1;2;0;112;5.6.128.13;;;;;;;306;5.6.128.13;;;8;514;1;;;;1;43244419;;;1;18;43233513;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43233772;0;1;514;1;21;19;75;15;117;7;1;1;1;0;110;1;;;;514;2;21;19;75;15;18240;6;1;1;1;0;110;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43240831;2;1;514;1;21;19;75;15;117;7;0;1;0;0;110;1;;;;514;2;21;19;75;15;18240;6;1;1;1;1;110;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240157;1218;0;1;00a0000015417cce;0310003147778365;aca3205c;;;5.6.128.13;0;;;;;43233102;43233284;;;12000;1;1;;0;;19;5.6.128.26;172.30.151.5;433;2;488;1;;;;;15;175;15;175;15;175;1;6686;1761;0;0;2;19;20;;;;;1;1;2;0;232;5.6.128.13;;;;;;;306;5.6.128.10;;;8;433;2;;;;1;43244438;;;1;18;43233102;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43233358;0;1;433;2;21;19;175;15;279;17;1;1;1;0;242;1;;;;488;1;21;19;175;15;8448;18;1;1;1;0;242;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43243171;2;1;488;1;21;19;175;15;132;6;1;1;1;1;250;1;;;;490;2;21;19;175;15;12482;25;0;1;0;0;282;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240158;1218;0;1;00a100001306586e;0310003147860474;ac638f98;;;5.6.128.11;0;;;;;43187008;43187179;;;58000;1;1;;0;;19;5.6.128.24;172.30.151.5;460;1;460;1;;;;;15;175;15;175;15;175;1;10468;20396;0;0;2;19;20;;;;;1;1;1;0;128;5.6.128.11;;;;;;;304;5.6.128.11;;;8;460;1;;;;1;43244392;;;1;18;43187008;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43187232;0;0;460;1;21;19;175;15;105;7;1;1;1;0;128;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240159;1218;0;0;0000000050c36279;0310003147712640;ac623dde;;;5.6.128.11;0;;;;;43235866;43236049;;;9000;1;1;;0;;19;5.6.128.28;172.30.151.5;301;2;301;2;;;;;15;175;15;175;15;175;1;325;77;0;0;2;19;20;;;;;1;1;1;0;52;5.6.128.11;;;;;;;304;5.6.128.11;;;8;301;2;;;;1;43244456;;;1;18;43235866;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43236115;0;0;301;2;21;19;175;15;180;3;1;1;1;0;52;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240160;1218;0;1;00a0000023dc7816;0310003147858979;ac42e9b5;;;5.6.128.10;0;;;;;43243634;43243854;;;1000;1;2;;0;;19;5.6.128.18;172.30.151.5;390;2;390;2;;;;;15;175;15;175;15;175;1;16;16;0;0;2;19;20;;;;;0;1;1;0;144;5.6.128.13;;;;;;;303;5.6.128.13;;;8;390;2;;;;1;43243962;;;1;18;43243634;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43243934;0;1;390;2;21;19;175;15;216;6;1;1;1;0;145;1;;;;390;3;21;19;175;15;24576;10;1;1;1;0;145;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240161;1218;0;1;00a000000878afaf;0310003147759104;ac43fa8d;;;5.6.128.10;0;;;;;43235666;43235869;;;9000;1;1;;0;;19;5.6.128.22;172.30.151.5;560;3;560;3;;;;;15;175;15;175;15;175;1;49;93;0;0;2;19;20;;;;;1;1;2;0;72;5.6.128.10;;;;;;;303;5.6.128.10;;;8;560;3;;;;1;43244363;;;1;18;43235666;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235943;0;1;560;3;21;19;175;15;351;4;1;1;1;0;72;1;;;;560;1;21;19;175;15;960;23;1;1;1;0;72;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43239776;2;1;560;3;21;19;175;15;351;7;1;1;1;1;66;1;;;;560;1;21;19;175;15;961;25;0;1;0;0;82;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240162;1218;0;1;00a10000092ccd02;0310003147741789;ace31333;;;5.6.128.15;0;;;;;43220501;43220714;;;24000;1;1;;0;;19;5.6.128.20;172.30.151.5;361;1;361;1;;;;;15;175;15;175;15;175;1;91702;14979;121;0;2;19;20;;;;;1;1;2;0;616;5.6.128.15;;;;;;;308;5.6.128.15;;;8;361;1;;;;1;43244423;;;1;18;43220501;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43220782;0;1;359;1;21;19;175;15;57;23;1;1;1;0;616;1;;;;361;1;21;19;175;15;10368;13;1;1;1;0;616;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|43224616;2;1;359;1;21;19;175;15;57;29;0;1;0;0;591;1;;;;361;1;21;19;175;15;10371;13;1;1;1;1;615;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240163;1218;0;0;0000000050d7fe0f;0310003147711696;ace37e8d;;;5.6.128.15;0;;;;;43235442;43235624;;;9000;1;1;;0;;19;5.6.128.17;172.30.151.5;392;2;392;2;;;;;15;175;15;175;15;175;1;0;2552;0;0;2;19;20;;;;;1;1;1;0;176;5.6.128.15;;;;;;;308;5.6.128.15;;;8;392;2;;;;1;43244424;;;1;18;43235442;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235711;0;0;392;2;21;19;175;15;279;5;1;1;1;0;173;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|
8;1023240164;1218;0;1;00a000002015026d;0310003147776524;ac635992;;;5.6.128.11;0;;;;;43235434;43235617;;;9000;1;1;;0;;19;5.6.128.31;172.30.151.5;514;1;514;1;;;;;15;75;15;75;15;75;1;1068;733;0;0;2;19;20;;;;;1;1;1;0;344;5.6.128.13;;;;;;;304;5.6.128.13;;;8;514;1;;;;1;43244561;;;1;18;43235434;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;43235681;0;0;514;1;21;19;75;15;117;1;1;1;1;0;332;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;|

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to