spicy-redis: Add synchronization and pipeline support

Also adds some command support
This commit is contained in:
Evan Typanski 2024-09-26 13:25:32 -04:00
parent 4210e62e57
commit 97d26a689d
35 changed files with 2469 additions and 108 deletions

View file

@ -11,18 +11,30 @@ export {
6379/tcp, 6379/tcp,
} &redef; } &redef;
type RESPData: record { type SetCommand: record {
simple_string: string &optional &log; key: string &log;
simple_error: string &optional &log; value: string &log;
i: int &optional &log; nx: bool;
bulk_string: string &optional &log; xx: bool;
#array: get: bool;
is_null: bool &log; ex: count &optional;
boolean: bool &optional &log; px: count &optional;
double_: double &optional &log; exat: count &optional;
big_num: string &optional &log; pxat: count &optional;
bulk_error: string &optional &log; keep_ttl: bool;
verbatim_string: string &optional &log; };
type GetCommand: record {
key: string &log;
};
type Command: record {
## The raw command, exactly as parsed
raw: vector of string &log;
## The key, if this command is known to have a key
key: string &log &optional;
## The value, if this command is known to have a value
value: string &log &optional;
}; };
## Record type containing the column fields of the RESP log. ## Record type containing the column fields of the RESP log.
@ -33,7 +45,8 @@ export {
uid: string &log; uid: string &log;
## The connection's 4-tuple of endpoint addresses/ports. ## The connection's 4-tuple of endpoint addresses/ports.
id: conn_id &log; id: conn_id &log;
resp_data: RESPData &log; ## The Redis command
cmd: Command &log;
}; };
## A default logging policy hook for the stream. ## A default logging policy hook for the stream.
@ -69,12 +82,12 @@ event zeek_init() &priority=5
} }
# Initialize logging state. # Initialize logging state.
hook set_session(c: connection) hook set_session(c: connection, cmd: Command)
{ {
if ( c?$redis_resp ) if ( c?$redis_resp )
return; return;
c$redis_resp = Info($ts=network_time(), $uid=c$uid, $id=c$id); c$redis_resp = Info($ts=network_time(), $uid=c$uid, $id=c$id, $cmd=cmd);
} }
function emit_log(c: connection) function emit_log(c: connection)
@ -86,12 +99,10 @@ function emit_log(c: connection)
delete c$redis_resp; delete c$redis_resp;
} }
# Example event defined in resp.evt. event RESP::command(c: connection, is_orig: bool, command: Command)
event RESP::data(c: connection, payload: RESPData)
{ {
hook set_session(c); hook set_session(c, command);
local info = c$redis_resp; local info = c$redis_resp;
info$resp_data = payload;
emit_log(c); emit_log(c);
} }

View file

@ -5,4 +5,12 @@ protocol analyzer spicy::RESP over TCP:
import RESP; import RESP;
import Zeek_RESP; import Zeek_RESP;
on RESP::Data -> event RESP::data($conn, Zeek_RESP::create_data(self)); on RESP::Array if ( Zeek_RESP::is_set(self) ) -> event RESP::set_command($conn, $is_orig, Zeek_RESP::make_set(self));
on RESP::Array if ( Zeek_RESP::is_get(self) ) -> event RESP::get_command($conn, $is_orig, Zeek_RESP::make_get(self));
# Generic catch-all for commands. A command is an array of bulk strings, so we hope that
# this will catch those, but the server can provide that as well.
on RESP::Array if ( Zeek_RESP::is_command(self) ) -> event RESP::command($conn, $is_orig, Zeek_RESP::make_command(self));
# These are from commands that weren't serialized
on RESP::Data if ( self?.not_serialized ) -> event RESP::command($conn, $is_orig, Zeek_RESP::unserialized_command(self));

View file

@ -1,10 +1,13 @@
module RESP; module RESP;
import spicy;
public type Messages = unit { public type Messages = unit {
: Data[]; : (Data &synchronize)[];
}; };
public type Data = unit { public type Data = unit {
%synchronize-after=b"\x0d\x0a";
ty: uint8 &convert=DataType($$); ty: uint8 &convert=DataType($$);
switch ( self.ty ) { switch ( self.ty ) {
DataType::SIMPLE_STRING -> simple_string: SimpleString(False); DataType::SIMPLE_STRING -> simple_string: SimpleString(False);
@ -26,6 +29,11 @@ public type Data = unit {
# "Push events are encoded similarly to arrays, differing only in their # "Push events are encoded similarly to arrays, differing only in their
# first byte" - TODO: can probably make it more obvious, though # first byte" - TODO: can probably make it more obvious, though
DataType::PUSH -> push: Array; DataType::PUSH -> push: Array;
# HACK: If the type isn't recognized, this is just some random unserialized
# string until \r\n - do this by prepending the type to the remaining bytes.
# We will, however, cap this data off at 1024 bytes. This may be encrypted, we
# don't want to accept random gibberish here.
* -> not_serialized: bytes &convert=(pack(cast<uint8>(self.ty), spicy::ByteOrder::Network) + $$) &until=b"\x0d\x0a" &max-size=1024;
}; };
}; };
@ -60,7 +68,7 @@ type BulkString = unit(is_error: bool) {
content: bytes &size=uint64( self.length ) if ( self.length >= 0 ); content: bytes &size=uint64( self.length ) if ( self.length >= 0 );
# Consume last CLRF # Consume last CLRF
: bytes &until=b"\x0d\x0a"; : skip bytes &until=b"\x0d\x0a";
}; };
type Array = unit { type Array = unit {
@ -71,12 +79,12 @@ type Array = unit {
type Null_ = unit { type Null_ = unit {
# Still must consume CLRF # Still must consume CLRF
: bytes &until=b"\x0d\x0a"; : skip bytes &until=b"\x0d\x0a";
}; };
type Boolean = unit { type Boolean = unit {
val: uint8 &convert=$$ == 't'; val: uint8 &convert=$$ == 't';
: bytes &until=b"\x0d\x0a"; : skip bytes &until=b"\x0d\x0a";
}; };
type Double = unit { type Double = unit {

View file

@ -15,58 +15,311 @@ on RESP::Data::%error {
zeek::reject_protocol("error while parsing RESP data"); zeek::reject_protocol("error while parsing RESP data");
} }
type ZeekData = tuple< type KnownCommand = enum {
optional<bytes>, APPEND,
optional<bytes>, BITCOUNT,
optional<int64>, BITFIELD,
optional<bytes>, BITFIELD_RO,
#optional<vector<ZeekData>>, # TODO: This segfaults because recursive type :( BITOP,
bool, BITPOS,
optional<bool>, BLMPOP,
optional<real>, BLPOP,
optional<string>, BRPOP,
COPY,
DECR,
DECRBY,
DEL,
DUMP,
EXISTS,
EXPIRE,
EXPIREAT,
EXPIRETIME,
GET,
GETBIT,
GETDEL,
GETEX,
GETRANGE,
GETSET,
HDEL,
HGET,
HSET,
INCR,
INCRBY,
KEYS,
MGET,
MOVE,
MSET,
PERSIST,
RENAME,
SET,
STRLEN,
TTL,
TYPE,
};
# Determines whether the structure of the array is a command. A command is just an array
# of bulk strings, so that's what we're looking for.
#
# TODO: Really commands will only go from client->server, so maybe encode that somehow?
public function is_command(arr: RESP::Array): bool {
if (arr.num_elements < 1)
return False;
return True;
}
type Command = tuple<
# raw command
vector<bytes>,
# key
optional<bytes>, optional<bytes>,
# value
optional<bytes>, optional<bytes>,
>; >;
public function create_data(data: RESP::Data): ZeekData { # This just assumes all elements in the array is a bulk string and puts them in a vector
local simple_string: optional<bytes>; public function make_command(arr: RESP::Array): Command {
local simple_error: optional<bytes>; local v: vector<bytes>;
local i: optional<int64>; for ( ele in arr.elements ) {
local bulk_string: optional<bytes>; # TODO: Stringify the other data too. Apparently commands *can* have other stuff
#local array: optional<vector<ZeekData>>; # such as SUBSCRIBE, which will magically put an integer after it.
local null: bool; if ( ele?.bulk_string )
local boolean: optional<bool>; v.push_back(ele.bulk_string.content);
local double: optional<real>; }
local big_num: optional<string>; return parse_command(v);
local bulk_error: optional<bytes>; }
local verbatim_string: optional<bytes>;
if (data?.simple_string) public function unserialized_command(unserialized: RESP::Data): Command {
simple_string = data.simple_string.content; # Only call this if it's unserialized :)
if (data?.simple_error) assert unserialized?.not_serialized;
simple_error = data.simple_error.content; local content = unserialized.not_serialized;
if (data?.integer) # TODO: escaping/strings? For example, string "Hi there" should be one element.
i = data.integer.int; return parse_command(content.split());
if (data?.bulk_string) }
bulk_string = data.bulk_string.content;
#if (data?.array) { # Parses the vector of bytes to get a Command object
# for ( data in data.array.elements ) { function parse_command(raw: vector<bytes>): Command {
# array.push_back(data); assert |raw| >= 1;
# } local parsed: Command = (raw, Null, Null);
#} local cmd = command_from(raw[0]);
if (data?.null) if ( ! cmd )
null = True; return parsed;
else
null = False; if ( |raw| >= 2 ) {
if (data?.boolean) switch ( *cmd ) {
boolean = data.boolean.val; case KnownCommand::KEYS:
if (data?.double) parsed[2] = raw[1];
double = data.double.val; case KnownCommand::APPEND, KnownCommand::BITCOUNT, KnownCommand::BITFIELD,
if (data?.big_num) KnownCommand::BITFIELD_RO, KnownCommand::BITPOS, KnownCommand::BLPOP,
big_num = data.big_num.val; KnownCommand::BRPOP, KnownCommand::COPY, KnownCommand::DECR,
if (data?.bulk_error) KnownCommand::DECRBY, KnownCommand::DEL, KnownCommand::DUMP,
bulk_error = data.bulk_error.content; KnownCommand::EXISTS, KnownCommand::EXPIRE, KnownCommand::EXPIREAT,
if (data?.verbatim_string) KnownCommand::EXPIRETIME, KnownCommand::GET, KnownCommand::GETBIT,
verbatim_string = data.verbatim_string.content; KnownCommand::GETDEL, KnownCommand::GETEX, KnownCommand::GETRANGE,
return (simple_string, simple_error, i, bulk_string, null, boolean, double, big_num, bulk_error, verbatim_string); KnownCommand::GETSET, KnownCommand::HDEL, KnownCommand::HGET,
KnownCommand::HSET, KnownCommand::INCR, KnownCommand::INCRBY,
KnownCommand::MGET, KnownCommand::MOVE, KnownCommand::MSET,
KnownCommand::PERSIST, KnownCommand::RENAME, KnownCommand::SET,
KnownCommand::STRLEN, KnownCommand::TTL, KnownCommand::TYPE:
parsed[1] = raw[1];
default: ();
}
}
if ( |raw| >= 3 ) {
switch ( *cmd ) {
case KnownCommand::SET, KnownCommand::APPEND, KnownCommand::DECRBY,
KnownCommand::EXPIRE, KnownCommand::EXPIREAT, KnownCommand::GETBIT,
KnownCommand::GETSET, KnownCommand::HDEL, KnownCommand::HGET,
KnownCommand::INCRBY, KnownCommand::MOVE, KnownCommand::MSET,
KnownCommand::RENAME:
parsed[2] = raw[2];
# Op first, destination second, then a list of keys. Just log dest
case KnownCommand::BITOP: parsed[1] = raw[2];
default: ();
}
}
if ( |raw| >= 4 ) {
switch ( *cmd ) {
# timeout, numkeys, then key
case KnownCommand::BLMPOP: parsed[1] = raw[3];
default: ();
}
}
return parsed;
}
function command_from(cmd_bytes: bytes): optional<KnownCommand> {
local cmd: optional<KnownCommand> = Null;
switch (cmd_bytes.lower()) {
case b"set": cmd = KnownCommand::SET;
case b"append": cmd = KnownCommand::APPEND;
case b"bitcount": cmd = KnownCommand::BITCOUNT;
case b"bitfield": cmd = KnownCommand::BITFIELD;
case b"bitfield_ro": cmd = KnownCommand::BITFIELD_RO;
case b"bitop": cmd = KnownCommand::BITOP;
case b"bitpos": cmd = KnownCommand::BITPOS;
case b"blmpop": cmd = KnownCommand::BLMPOP;
case b"blpop": cmd = KnownCommand::BLPOP;
case b"brpop": cmd = KnownCommand::BRPOP;
case b"copy": cmd = KnownCommand::COPY;
case b"decr": cmd = KnownCommand::DECR;
case b"decrby": cmd = KnownCommand::DECRBY;
case b"del": cmd = KnownCommand::DEL;
case b"dump": cmd = KnownCommand::DUMP;
case b"exists": cmd = KnownCommand::EXISTS;
case b"expire": cmd = KnownCommand::EXPIRE;
case b"expireat": cmd = KnownCommand::EXPIREAT;
case b"expiretime": cmd = KnownCommand::EXPIRETIME;
case b"expiretime": cmd = KnownCommand::EXPIRETIME;
case b"get": cmd = KnownCommand::GET;
case b"getbit": cmd = KnownCommand::GETBIT;
case b"getdel": cmd = KnownCommand::GETDEL;
case b"getex": cmd = KnownCommand::GETEX;
case b"getrange": cmd = KnownCommand::GETRANGE;
case b"getset": cmd = KnownCommand::GETSET;
case b"hdel": cmd = KnownCommand::HDEL;
case b"hget": cmd = KnownCommand::HGET;
case b"hset": cmd = KnownCommand::HSET;
case b"incr": cmd = KnownCommand::INCR;
case b"incrby": cmd = KnownCommand::INCRBY;
case b"keys": cmd = KnownCommand::KEYS;
case b"mget": cmd = KnownCommand::MGET;
case b"move": cmd = KnownCommand::MOVE;
case b"mset": cmd = KnownCommand::MSET;
case b"persist": cmd = KnownCommand::PERSIST;
case b"rename": cmd = KnownCommand::RENAME;
case b"strlen": cmd = KnownCommand::STRLEN;
case b"ttl": cmd = KnownCommand::TTL;
case b"type": cmd = KnownCommand::TYPE;
default: cmd = Null;
}
return cmd;
}
type Set = tuple<
# key
bytes,
# value
bytes,
# NX
bool,
# XX
bool,
# GET
bool,
# EX
optional<uint64>,
# PX
optional<uint64>,
# EXAT
optional<uint64>,
# PXAT
optional<uint64>,
# KEEPTTL
bool,
>;
public function make_set(arr: RESP::Array): Set {
assert arr.num_elements >= 3 : "Must have at least 3 elements in SET";
local key = arr.elements[1].bulk_string.content;
local value = arr.elements[2].bulk_string.content;
local nx = False;
local xx = False;
local get = False;
local ex: optional<uint64> = Null;
local px: optional<uint64> = Null;
local exat: optional<uint64> = Null;
local pxat: optional<uint64> = Null;
local keep_ttl = False;
local i = 3;
local elements = cast<uint64>(arr.num_elements);
while ( i < elements ) {
# All array elements in a command will be a bulk string by default
if ( ! arr.elements[i]?.bulk_string ) {
++i;
continue;
}
local content = arr.elements[i].bulk_string.content;
switch (content.lower()) {
case b"nx": nx = True;
case b"xx": xx = True;
case b"get": get = True;
case b"ex": {
++i;
if ( i >= elements || ! arr.elements[i]?.bulk_string )
break;
local inner = arr.elements[i].bulk_string.content;
ex = inner.to_uint();
}
case b"px": {
++i;
if ( i >= elements || ! arr.elements[i]?.bulk_string )
break;
local inner = arr.elements[i].bulk_string.content;
px = inner.to_uint();
}
case b"exat": {
++i;
if ( i >= elements || ! arr.elements[i]?.bulk_string )
break;
local inner = arr.elements[i].bulk_string.content;
exat = inner.to_uint();
}
case b"pxat": {
++i;
if ( i >= elements || ! arr.elements[i]?.bulk_string )
break;
local inner = arr.elements[i].bulk_string.content;
pxat = inner.to_uint();
}
case b"keepttl": keep_ttl = True;
default: ();
}
++i;
}
return (key, value, nx, xx, get, ex, px, exat, pxat, keep_ttl);
}
# Convenience method to avoid comparison with an optional in the evt
public function is_set(arr: RESP::Array): bool {
# SET key value
if (arr.num_elements < 3)
return False;
local first = arr.elements[0];
if (!first?.bulk_string)
return False;
local cmd_bytes = first.bulk_string.content;
local cmd = command_from(cmd_bytes);
return cmd && (*cmd == KnownCommand::SET);
}
type Get = tuple<bytes>;
public function make_get(arr: RESP::Array): Get {
return (arr.elements[1].bulk_string.content, );
}
# Convenience method to avoid comparison with an optional in the evt
public function is_get(arr: RESP::Array): bool {
# GET key
if (arr.num_elements != 2)
return False;
local first = arr.elements[0];
if (!first?.bulk_string)
return False;
local cmd_bytes = first.bulk_string.content;
local cmd = command_from(cmd_bytes);
return cmd && (*cmd == KnownCommand::GET);
} }

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,153 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
SET: :1:factorial_1 1 expires in 60000 milliseconds
SET: :1:factorial_2 2 expires in 60000 milliseconds
SET: :1:factorial_3 6 expires in 60000 milliseconds
SET: :1:factorial_4 24 expires in 60000 milliseconds
SET: :1:factorial_5 120 expires in 60000 milliseconds
SET: :1:factorial_6 720 expires in 60000 milliseconds
SET: :1:factorial_7 5040 expires in 60000 milliseconds
SET: :1:factorial_8 40320 expires in 60000 milliseconds
SET: :1:factorial_9 362880 expires in 60000 milliseconds
SET: :1:factorial_10 3628800 expires in 60000 milliseconds
SET: :1:factorial_11 39916800 expires in 60000 milliseconds
SET: :1:factorial_12 479001600 expires in 60000 milliseconds
SET: :1:factorial_13 6227020800 expires in 60000 milliseconds
SET: :1:factorial_14 87178291200 expires in 60000 milliseconds
SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds
SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds
SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds
SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds
SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds
SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds
SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds
SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds
SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds
SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds
SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds
SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds
SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds
SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds
SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds
SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds
SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds
SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds
SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds
SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds
SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds
SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds
SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds
SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds
SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds
SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds
SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds
SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds
SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds
SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds
SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds
SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds
SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds
SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds
SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds
SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds
SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds
SET: :1:factorial_1 1 expires in 60000 milliseconds
SET: :1:factorial_2 2 expires in 60000 milliseconds
SET: :1:factorial_3 6 expires in 60000 milliseconds
SET: :1:factorial_4 24 expires in 60000 milliseconds
SET: :1:factorial_5 120 expires in 60000 milliseconds
SET: :1:factorial_6 720 expires in 60000 milliseconds
SET: :1:factorial_7 5040 expires in 60000 milliseconds
SET: :1:factorial_8 40320 expires in 60000 milliseconds
SET: :1:factorial_9 362880 expires in 60000 milliseconds
SET: :1:factorial_10 3628800 expires in 60000 milliseconds
SET: :1:factorial_11 39916800 expires in 60000 milliseconds
SET: :1:factorial_12 479001600 expires in 60000 milliseconds
SET: :1:factorial_13 6227020800 expires in 60000 milliseconds
SET: :1:factorial_14 87178291200 expires in 60000 milliseconds
SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds
SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds
SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds
SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds
SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds
SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds
SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds
SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds
SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds
SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds
SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds
SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds
SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds
SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds
SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds
SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds
SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds
SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds
SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds
SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds
SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds
SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds
SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds
SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds
SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds
SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds
SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds
SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds
SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds
SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds
SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds
SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds
SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds
SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds
SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds
SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds
SET: :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000 expires in 60000 milliseconds
SET: :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000 expires in 60000 milliseconds
SET: :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000 expires in 60000 milliseconds
SET: :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000 expires in 60000 milliseconds
SET: :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000 expires in 60000 milliseconds
SET: :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000 expires in 60000 milliseconds
SET: :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000 expires in 60000 milliseconds
SET: :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000 expires in 60000 milliseconds
SET: :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000 expires in 60000 milliseconds
SET: :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000 expires in 60000 milliseconds
SET: :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000 expires in 60000 milliseconds
SET: :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000 expires in 60000 milliseconds
SET: :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000 expires in 60000 milliseconds
SET: :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000 expires in 60000 milliseconds
SET: :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000 expires in 60000 milliseconds
SET: :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000 expires in 60000 milliseconds
SET: :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000 expires in 60000 milliseconds
SET: :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000 expires in 60000 milliseconds
SET: :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 expires in 60000 milliseconds
SET: :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000 expires in 60000 milliseconds
SET: :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000 expires in 60000 milliseconds
SET: :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000 expires in 60000 milliseconds
SET: :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000 expires in 60000 milliseconds
SET: :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000 expires in 60000 milliseconds
SET: :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 expires in 60000 milliseconds

View file

@ -0,0 +1,168 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
#separator \x09
#set_separator ,
#empty_field (empty)
#unset_field -
#path resp
#open XXXX-XX-XX-XX-XX-XX
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value
#types time string addr port addr port vector[string] string string
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_3 :1:factorial_3 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_3 :1:factorial_3 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_50 :1:factorial_50 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_50 :1:factorial_50 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_50 :1:factorial_50 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_100 :1:factorial_100 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_51,1551118753287382280224243016469303211063259720016986112000000000000,PX,60000 :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_52,80658175170943878571660636856403766975289505440883277824000000000000,PX,60000 :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_53,4274883284060025564298013753389399649690343788366813724672000000000000,PX,60000 :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_54,230843697339241380472092742683027581083278564571807941132288000000000000,PX,60000 :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_55,12696403353658275925965100847566516959580321051449436762275840000000000000,PX,60000 :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_56,710998587804863451854045647463724949736497978881168458687447040000000000000,PX,60000 :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_57,40526919504877216755680601905432322134980384796226602145184481280000000000000,PX,60000 :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_58,2350561331282878571829474910515074683828862318181142924420699914240000000000000,PX,60000 :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_59,138683118545689835737939019720389406345902876772687432540821294940160000000000000,PX,60000 :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_60,8320987112741390144276341183223364380754172606361245952449277696409600000000000000,PX,60000 :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_61,507580213877224798800856812176625227226004528988036003099405939480985600000000000000,PX,60000 :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_62,31469973260387937525653122354950764088012280797258232192163168247821107200000000000000,PX,60000 :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_63,1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000,PX,60000 :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_64,126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000,PX,60000 :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_65,8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000,PX,60000 :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_66,544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000,PX,60000 :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_67,36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000,PX,60000 :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_68,2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000,PX,60000 :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_69,171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000,PX,60000 :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_70,11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000,PX,60000 :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_71,850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000,PX,60000 :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_72,61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000,PX,60000 :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_73,4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000,PX,60000 :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_74,330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000,PX,60000 :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_75,24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000,PX,60000 :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_76,1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000,PX,60000 :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_77,145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000,PX,60000 :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_78,11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000,PX,60000 :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_79,894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000,PX,60000 :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_80,71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000,PX,60000 :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_81,5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000,PX,60000 :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_82,475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000,PX,60000 :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_83,39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000,PX,60000 :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_84,3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000,PX,60000 :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_85,281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000,PX,60000 :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_86,24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000,PX,60000 :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_87,2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000,PX,60000 :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_88,185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000,PX,60000 :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_89,16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000,PX,60000 :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_90,1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000,PX,60000 :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_91,135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000,PX,60000 :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_92,12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000,PX,60000 :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_93,1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000,PX,60000 :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_94,108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000,PX,60000 :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_95,10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000,PX,60000 :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_96,991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000,PX,60000 :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_97,96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000,PX,60000 :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_98,9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000,PX,60000 :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_99,933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000,PX,60000 :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_100,93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000,PX,60000 :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_100,93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000,PX,60000 :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000
#close XXXX-XX-XX-XX-XX-XX

View file

@ -0,0 +1,309 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
SET: :1:factorial_1 1 expires in 60000 milliseconds
SET: :1:factorial_2 2 expires in 60000 milliseconds
SET: :1:factorial_3 6 expires in 60000 milliseconds
SET: :1:factorial_4 24 expires in 60000 milliseconds
SET: :1:factorial_5 120 expires in 60000 milliseconds
SET: :1:factorial_6 720 expires in 60000 milliseconds
SET: :1:factorial_7 5040 expires in 60000 milliseconds
SET: :1:factorial_8 40320 expires in 60000 milliseconds
SET: :1:factorial_9 362880 expires in 60000 milliseconds
SET: :1:factorial_10 3628800 expires in 60000 milliseconds
SET: :1:factorial_11 39916800 expires in 60000 milliseconds
SET: :1:factorial_12 479001600 expires in 60000 milliseconds
SET: :1:factorial_13 6227020800 expires in 60000 milliseconds
SET: :1:factorial_14 87178291200 expires in 60000 milliseconds
SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds
SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds
SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds
SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds
SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds
SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds
SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds
SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds
SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds
SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds
SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds
SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds
SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds
SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds
SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds
SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds
SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds
SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds
SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds
SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds
SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds
SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds
SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds
SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds
SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds
SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds
SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds
SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds
SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds
SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds
SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds
SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds
SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds
SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds
SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds
SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds
SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds
SET: :1:factorial_1 1 expires in 60000 milliseconds
SET: :1:factorial_2 2 expires in 60000 milliseconds
SET: :1:factorial_3 6 expires in 60000 milliseconds
SET: :1:factorial_4 24 expires in 60000 milliseconds
SET: :1:factorial_5 120 expires in 60000 milliseconds
SET: :1:factorial_6 720 expires in 60000 milliseconds
SET: :1:factorial_7 5040 expires in 60000 milliseconds
SET: :1:factorial_8 40320 expires in 60000 milliseconds
SET: :1:factorial_9 362880 expires in 60000 milliseconds
SET: :1:factorial_10 3628800 expires in 60000 milliseconds
SET: :1:factorial_11 39916800 expires in 60000 milliseconds
SET: :1:factorial_12 479001600 expires in 60000 milliseconds
SET: :1:factorial_13 6227020800 expires in 60000 milliseconds
SET: :1:factorial_14 87178291200 expires in 60000 milliseconds
SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds
SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds
SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds
SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds
SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds
SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds
SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds
SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds
SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds
SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds
SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds
SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds
SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds
SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds
SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds
SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds
SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds
SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds
SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds
SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds
SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds
SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds
SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds
SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds
SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds
SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds
SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds
SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds
SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds
SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds
SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds
SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds
SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds
SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds
SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds
SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds
SET: :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000 expires in 60000 milliseconds
SET: :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000 expires in 60000 milliseconds
SET: :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000 expires in 60000 milliseconds
SET: :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000 expires in 60000 milliseconds
SET: :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000 expires in 60000 milliseconds
SET: :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000 expires in 60000 milliseconds
SET: :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000 expires in 60000 milliseconds
SET: :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000 expires in 60000 milliseconds
SET: :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000 expires in 60000 milliseconds
SET: :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000 expires in 60000 milliseconds
SET: :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000 expires in 60000 milliseconds
SET: :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000 expires in 60000 milliseconds
SET: :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000 expires in 60000 milliseconds
SET: :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000 expires in 60000 milliseconds
SET: :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000 expires in 60000 milliseconds
SET: :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000 expires in 60000 milliseconds
SET: :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000 expires in 60000 milliseconds
SET: :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000 expires in 60000 milliseconds
SET: :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 expires in 60000 milliseconds
SET: :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000 expires in 60000 milliseconds
SET: :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000 expires in 60000 milliseconds
SET: :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000 expires in 60000 milliseconds
SET: :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000 expires in 60000 milliseconds
SET: :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000 expires in 60000 milliseconds
SET: :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_101 9425947759838359420851623124482936749562312794702543768327889353416977599316221476503087861591808346911623490003549599583369706302603264000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_102 961446671503512660926865558697259548455355905059659464369444714048531715130254590603314961882364451384985595980362059157503710042865532928000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_103 99029007164861804075467152545817733490901658221144924830052805546998766658416222832141441073883538492653516385977292093222882134415149891584000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_104 10299016745145627623848583864765044283053772454999072182325491776887871732475287174542709871683888003235965704141638377695179741979175588724736000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_105 1081396758240290900504101305800329649720646107774902579144176636573226531909905153326984536526808240339776398934872029657993872907813436816097280000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_106 114628056373470835453434738414834942870388487424139673389282723476762012382449946252660360871841673476016298287096435143747350528228224302506311680000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_107 12265202031961379393517517010387338887131568154382945052653251412013535324922144249034658613287059061933743916719318560380966506520420000368175349760000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_108 1324641819451828974499891837121832599810209360673358065686551152497461815091591578895743130235002378688844343005686404521144382704205360039762937774080000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_109 144385958320249358220488210246279753379312820313396029159834075622223337844983482099636001195615259277084033387619818092804737714758384244334160217374720000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_110 15882455415227429404253703127090772871724410234473563207581748318444567162948183030959960131517678520479243672638179990208521148623422266876757623911219200000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_111 1762952551090244663872161047107075788761409536026565516041574063347346955087248316436555574598462315773196047662837978913145847497199871623320096254145331200000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_112 197450685722107402353682037275992488341277868034975337796656295094902858969771811440894224355027779366597957338237853638272334919686385621811850780464277094400000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_113 22311927486598136465966070212187151182564399087952213171022161345724023063584214692821047352118139068425569179220877461124773845924561575264739138192463311667200000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_114 2543559733472187557120132004189335234812341496026552301496526393412538629248600474981599398141467853800514886431180030568224218435400019580180261753940817530060800000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_115 292509369349301569068815180481773552003419272043053514672100535242441942363589054622883930786268803187059211939585703515345785120071002251720730101703194015956992000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_116 33931086844518982011982560935885732032396635556994207701963662088123265314176330336254535971207181169698868584991941607780111073928236261199604691797570505851011072000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_117 3969937160808720895401959629498630647790406360168322301129748464310422041758630649341780708631240196854767624444057168110272995649603642560353748940315749184568295424000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_118 468452584975429065657431236280838416439267950499862031533310318788629800927518416622330123618486343228862579684398745837012213486653229822121742374957258403779058860032000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_119 55745857612076058813234317117419771556272886109483581752463927935846946310374691578057284710599874844234646982443450754604453404911734348832487342619913750049708004343808000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_120 6689502913449127057588118054090372586752746333138029810295671352301633557244962989366874165271984981308157637893214090552534408589408121859898481114389650005964960521256960000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_121 809429852527344373968162284544935082997082306309701607045776233628497660426640521713391773997910182738287074185078904956856663439318382745047716214841147650721760223072092160000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_122 98750442008336013624115798714482080125644041369783596059584700502676714572050143649033796427745042294071023050579626404736512939596842694895821378210620013388054747214795243520000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_123 12146304367025329675766243241881295855454217088483382315328918161829235892362167668831156960612640202170735835221294047782591091570411651472186029519906261646730733907419814952960000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_124 1506141741511140879795014161993280686076322918971939407100785852066825250652908790935063463115967385069171243567440461925041295354731044782551067660468376444194611004520057054167040000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_125 188267717688892609974376770249160085759540364871492425887598231508353156331613598866882932889495923133646405445930057740630161919341380597818883457558547055524326375565007131770880000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_126 23721732428800468856771473051394170805702085973808045661837377170052497697783313457227249544076486314839447086187187275319400401837013955325179315652376928996065123321190898603130880000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_127 3012660018457659544809977077527059692324164918673621799053346900596667207618480809067860692097713761984609779945772783965563851033300772326297773087851869982500270661791244122597621760000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_128 385620482362580421735677065923463640617493109590223590278828403276373402575165543560686168588507361534030051833058916347592172932262498857766114955245039357760034644709279247692495585280000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_129 49745042224772874403902341504126809639656611137138843145968864022652168932196355119328515747917449637889876686464600208839390308261862352651828829226610077151044469167497022952331930501120000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_130 6466855489220473672507304395536485253155359447828049608975952322944781961185526165512707047229268452925683969240398027149120740074042105844737747799459310029635780991774612983803150965145600000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_131 847158069087882051098456875815279568163352087665474498775849754305766436915303927682164623187034167333264599970492141556534816949699515865660644961729169613882287309922474300878212776434073600000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_132 111824865119600430744996307607616902997562475571842633838412167568361169672820118454045730260688510087990927196104962685462595837360336094267205134948250389032461924909766607715924086489297715200000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_133 14872707060906857289084508911813048098675809251055070300508818286592035566485075754388082124671571841702793317081960037166525246368924700537538282948117301741317436012998958826217903503076596121600000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_134 1992942746161518876737324194182948445222558439641379420268181650403332765909000151088003004705990626788174304488982644980314383013435909872030129915047718433336536425741860482713199069412263880294400000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_135 269047270731805048359538766214698040105045389351586221736204522804449923397715020396880405635308734616403531106012657072342441706813847832724067538531441988500432417475151165166281874370655623839744000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_136 36590428819525486576897272205198933454286172951815726156123815101405189582089242773975735166401987907830880230417721361838572072126683305250473185240276110436058808776620558462614334914409164842205184000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_137 5012888748274991661034926292112253883237205694398754483388962668892510972746226260034675717797072343372830591567227826571884373881355612819314826377917827129740056802397016509378163883274055583382110208000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_138 691778647261948849222819828311491035886734385827028118707676848307166514238979223884785249055995983385450621636277440066920043595627074569065446040152660143904127838730788278294186615891819670506731208704000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_139 96157231969410890041971956135297253988256079629956908500367081914696145479218112119985149618783441690577636407442564169301886059792163365100096999581219760002673769583579570682891939608962934200435638009856000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_140 13462012475717524605876073858941615558355851148193967190051391468057460367090535696797920946629681836680869097041958983702264048370902871114013579941370766400374327741701139895604871545254810788060989321379840000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_141 1898143759076170969428526414110767793728175011895349373797246196996101911759765533248506853474785138972002542682916216702019230820297304827075914771733278062452780211579860725280286887880928321116599494314557440000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_142 269536413788816277658850750803729026709400851689139611079208959973446471469886705721287973193419489734024361060974102771686730776482217285444779897586125484868294790044340222989800738079091821598557128192667156480000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_143 38543707171800727705215657364933250819444321791546964384326881276202845420193798918144180166658987031965483631719296696351202501036957071818603525354815944336166154976340651887541505545310130488593669331551403376640000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_144 5550293832739304789551054660550388117999982337982762871343070903773209740507907044212761943998894132603029642967578724274573160149321818341878907651093495984407926316593053871805976798524658790357488383743402086236160000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_145 804792605747199194484902925779806277109997439007500616344745281047115412373646521410850481879839649227439298230298915019813108221651663659572441609408556917739149315905992811411866635786075524601835815642793302504243200000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_146 117499720439091082394795827163851716458059626095095089986332811032878850206552392125984170354456588787206137541623641592892713800361142894297576474973649309989915800122274950466132528824767026591868029083847822165619507200000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_147 17272458904546389112034986593086202319334765035978978227990923221833190980363201642519673042105118551719302218618675314155228928653088005461743741821126448568517622617974417718521481737240752909004600275325629858346067558400000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_148 2556323917872865588581178015776757943261545225324888777742656636831312265093753843092911610231557545654456728355563946494973881440657024808338073789526714388140608147460213822341179297111631430532680840748193219035217998643200000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_149 380892263763056972698595524350736933545970238573408427883655838887865527498969322620843829924502074302514052524979028027751108334657896696442372994639480443832950613971571859528835715269633083149369445271480789636247481797836800000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_150 57133839564458545904789328652610540031895535786011264182548375833179829124845398393126574488675311145377107878746854204162666250198684504466355949195922066574942592095735778929325357290444962472405416790722118445437122269675520000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_151 8627209774233240431623188626544191544816225903687700891564804750810154197851655157362112747789971982951943289690774984828562603780001360174419748328584232052816331406456102618328128950857189333333217935399039885261005462721003520000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_152 1311335885683452545606724671234717114812066337360530535517850322123143438073451583919041137664075741408695380032997797693941515774560206746511801745944803272028082373781327597985875600530292778666649126180654062559672830333592535040000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_153 200634390509568239477828874698911718566246149616161171934231099284840946025238092339613294062603588435530393145048663047173051913507711632216305667129554900620296603188543122491838966881134795135997316305640071571629943041039657861120000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_154 30897696138473508879585646703632404659201907040888820477871589289865505687886666220300447285640952619071680544337494109264649994680187591361311072737951454695525676891035640863743200899694758450943586711068571022031011228320107310612480000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_155 4789142901463393876335775239063022722176295591337767174070096339929153381622433264146569329274347655956110484372311586936020749175429076661003216274382475477806479918110524333880196139452687559896255940215628508414806740389616633144934400000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_156 747106292628289444708380937293831544659502112248691679154935029028947927533099589206864815366798234329153235562080607562019236871366935959116501738803666174537810867225241796085310597754619259343815926673638047312709851500780194770609766400000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_157 117295687942641442819215807155131552511541831623044593627324799557544824622696635505477776012587322789677057983246655387237020188804608945581290772992175589402436306154362961985393763847475223716979100487761173428095446685622490578985733324800000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_158 18532718694937347965436097530510785296823609396441045793117318330092082290386068409865488609988797000768975161352971551183449189831128213401843942132763743125584936372389347993692214687901085347282697877066265401639080576328353511479745865318400000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_159 2946702272495038326504339507351214862194953894034126281105653614484641084171384877168612688988218723122267050655122476638168421183149385930893186799109435156968004883209906330997062135376272570217948962453536198860613811636208208325279592585625600000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_160 471472363599206132240694321176194377951192623045460204976904578317542573467421580346978030238114995699562728104819596262106947389303901748942909887857509625114880781313585012959529941660203611234871833992565791817698209861793313332044734813700096000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_161 75907050539472187290751785709367294850142012310319093001281637109124354328254874435863462868336514307629599224875954998199218529677928181579808491945059049643495805791487187086484320607292781408814365272803092482649411787748723446459202305005715456000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_162 12296942187394494341101789284917501765723005994271693066207625211678145401177289658609880984670515317835995074429904709708273401807824365415928975695099566042246320538220924308010459938381430588227927174194100982189204709615293198326390773410925903872000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_163 2004401576545302577599591653441552787812849977066285969791842909503537700391898214353410600501293996807267197132074467682448564494675371562796423038301229264886150247730010662205704969956173185881152129393638460096840367667292791327201696065980922331136000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_164 328721858553429622726333031164414657201307396238870899045862237158580182864271307153959338482212215476391820329660212699921564577126760936298613378281401599441328640627721748601735615072812402484508949220556707455881820297436017777661078154820871262306304000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_165 54239106661315887749844950142128418438215720379413698342567269131165730172604765680403290849565015553604650354393935095487058155225915554489271207416431263907819225703574088519286376487014046409943976621391856730220500349076942933314077895545443758280540160000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_166 9003691705778437366474261723593317460743809582982673924866166675773511208652391102946946281027792581898371958829393225850851653767501982045219020431127589808697991466793298694201538496844331704050700119151048217216603057946772526930136930660543663874569666560000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_167 1503616514864999040201201707840084015944216200358106545452649834854176371844949314192140028931641361177028117124508668717092226179172831001551576411998307498052564574954480881931656928973003394576466919898225052275172710677111011997332867420310791867053134315520000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_168 252607574497319838753801886917134114678628321660161899636045172255501630469951484784279524860515748677740723676917456344471493998101035608260664837215715659672830848592352788164518364067464570288846442542901808782229015393754650015551921726612213033664926565007360000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_169 42690680090047052749392518888995665380688186360567361038491634111179775549421800928543239701427161526538182301399050122215682485679075017796052357489455946484708413412107621199803603527401512378815048789750405684196703601544535852628274771797464002689372589486243840000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_170 7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_171 1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_172 213455108077438865629072570145733886730056159330291227886899710221263324938130981514753340236723864719151973034287306573083301055694802251980973629541579310661401455397074590303866009781148657954570396550703618437210885875866741044575478989978191912006970522334798649753600000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_173 36927733697396923753829554635211962404299715564140382424433649868278555214296659802052327860953228596413291334931704037143411082635200789592708437910693220744422451783693904122568819692138717826140678603271725989637483256524946200711557865266227200777205900363920166407372800000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_174 6425425663347064733166342506526881458348150508160426541851455077080468607287618805557105047805861775775912692278116502462953528378524937389131268196460620409529506610362739317326974626432136901748478076969280322196922086635340638923811068556323532935233826663322108954882867200000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_175 1124449491085736328304109938642204255210926338928074644824004638489082006275333290972493383366025810760784721148670387931016867466241864043097971934380608571667663656813479380532220559625623957805983663469624056384461365161184611811666936997356618263665919666081369067104501760000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_176 197903110431089593781523349201027948917123035651341137489024816374078433104458659211158835472420542693898110922165988275858968674058568071585243060450987108613508803599172370973670818494109816573853124770653833923665200268368491678853380911534764814405201861230320955810392309760000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_177 35028850546302858099329632808581946958330777310287381335557392498211882659489182680375113878618436056819965633223379924827037455308366548670588021699824718224591058237053509662339734873457437533572003084405728604488740447501223027157048421341653372149720729437766809178439438827520000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_178 6235135397241908741680674639927586558582878361231153877729215864681715113389074517106770270394081618113953882713761626619212667044889245663364667862568799843977208366195524719896472807475423880975816549024219691598995799655217698833954618998814300242650289839922492033762220111298560000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_179 1116089236106301664760840760547037993986335226660376544113529639778027005296644338562111878400540609642397745005763331164839067401035174973742275547399815172071920297548998924861468632538100874694671162275335324796220248138283968091277876800787759743434401881346126074043437399922442240000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_180 200896062499134299656951336898466838917540340798867777940435335160044860953395980941180138112097309735631594101037399609671032132186331495273609598531966730972945653558819806475064353856858157445040809209560358463319644664891114256430017824141796753818192338642302693327818731986039603200000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_181 36362187312343308237908191978622497844074801684595067807218795663968119832564672550353604998289613062149318532287769329350456815925726000644523337334285978306103163294146384971986648048091326497552386466930424881860855684345291680413833226169665212441092813294256787492335190489473168179200000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_182 6617918090846482099299290940109294607621613906596302340913820810842197809526770404164356109688709577311175972876374017941783140498482132117303247394840048051710775719534642064901569944752621422554534336981337328498675734550843085835317647162879068664278892019554735323605004669084116608614400000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_183 1211079010624906224171770242040000913194755344907123328387229208384122199143398983962077168073033852647945203036376445283346314711222230177466494273255728793463071956674839497876987299889729720327479783667584731115257659422804284707863129430806869565563037239578516564219715854442393339376435200000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_184 222838537954982745247605724535360168027834983462910692423250174342678484642385413049022198925438228887221917358693265932135721906864890352653834946279054097997205240028170467609365663179710268540256280194835590525207409333795988386246815815268464000063598852082447047816427717217400374445264076800000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_185 41225129521671807870807059039041631085149471940638478098301282253395519658841301414069106801206072344136054711358254197445108552770004715240959465061625008129482969405211536507732647688246399679947411836044584247163370726752257851455660925824665840011765787635252703846039127685219069272373854208000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_186 7667874091030956263970112981261743381837801780958756926284038499131566656544482063016853865024329456009306176312635280724790190815220877034818460501462251512083832309369345790438272470013830340470218601504292669972386955175919960370752932203387846242188436500157002915363277749450746884661536882688000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_187 1433892455022788821362411127495946012403668933039287545215115199337602964773818145784151672759549608273740254970462797495535765682446304005511052113773441032759676641852067662811956951892586273667930878481302729284836360617897032589330798322033527247289237625529359545172932939147289667431707397062656000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_188 269571781544284298416133291969237850331889759411386058500441657475469357377477811407420514478795326355463167934447005929160723948299905153036077797389406914158819208668188720608647906955806219449571005154484913105549235796164642126794190084542303122490376673599519594492511392559690457477160990647779328000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_189 50949066711869732400649192182185953712727164528751965056583473262863708544343306356002477236492316681182538739610484120611376826228682073923818703706597906776016830438287668195034454414647375475968919974197648576948805565475117361964101925978495290150681191310309203359084653193781496463183427232430292992000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_190 9680322675255249156123346514615331205418161260462873360750859919944104623425228207640470674933540169424682360525991982916161596983449594045525553704253602287443197783274656957056546338783001340434094795097553229620273057440272298773179365935914105128629426348958748638226084106818484328004851174161755668480000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_191 1848941630973752588819559184291528260234868800748408811903414244709323983074218587659329898912306172360114330860464468736986865023838872462695380757512438036901650776605459478797800350707553256022912105863632666857472153971092009065677258893759594079568220432651120989901182064402330506648926574264895332679680000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_192 354996793146960497053355363383973425965094809743694491885455534984190204750249968830591340591162785093141951525209177997501478084577063512837513105442388103085116949108248219929177667335850225156399124325817472036634653562449665740610033707601842063277098323069015230061026956365247457276593902258859903874498560000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_193 68514381077363375931297585133106871211263298280533036933892918251948709516798243984304128734094417522976396644365371353517785270323373257977640029350380903895427571177891906446331289795819093455185030994882772103070488137552785487937736505567155518212479976352319939401778202578492759254382623135959961447778222080000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_194 13291789929008494930671731515822733014985079866423409165175226140878049646258859332955000974414316999457420949006882042582450342442734412047662165693973895355712948808511029850588270220388904130305896013007257787995674698685240384659920882080028170533221115412350068243944971300227595295350228888376232520868975083520000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_195 2591899036156656511480987645585432937922090573952564787209169097471219681020477569926225190010791814894197085056341998303577816776333210349294122310324909594364025017659650820864712692975836305409649722536415268659156566243621875008684572005605493253978117505408263307569269403544381082593294633233365341569450141286400000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_196 508012211086704676250273578534744855832729752494702698292997143104359057480013603705540137242115195719262628671043031667501252088161309228461647972823682280495348903461291560889483687823263915860291345617137392657194686983749887501702176113098676677779711031060019608283576803094698692188285748113739606947612227692134400000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_197 100078405584080821221303894971344736599047761241456431563720437191558734323562679929991407036696693556694737848195477238497746661367777918006944650646265409257583733981874437495228286501182991424477395086576066353467353335798727837835328694280439305522603073118823862831864630209655642361092292378406702568679608855350476800000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_198 19815524305648002601818171204326257846611456725808373449616646563928629396065410626138298593265945324225558093942704493222553838950820027765375040827960551033001579328411138624055200727234232302046524227142061137986535960488148111891395081467526982493475408477527124840709196781511817187496273890924527108598562553359394406400000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_199 3943289336823952517761816069660925311475679888435866316473712666221797249817016714601521420059923119520886060694598194151288213951213185525309633124764149655567314286353816586186984944719612228107258321201270166459320656137141474266387621212037869516201606287027897843301130159520851620311758504293980894611113948118519486873600000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_200 788657867364790503552363213932185062295135977687173263294742533244359449963403342920304284011984623904177212138919638830257642790242637105061926624952829931113462857270763317237396988943922445621451664240254033291864131227428294853277524242407573903240321257405579568660226031904170324062351700858796178922222789623703897374720000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_201 158520231340322891214025006000369197521322331515121825922243249182116249442644071926981161086408909404739619639922847404881786200838770058117447251615518816153806034311423426764716794777728411569911784512291060691664690376713087265508782372723922354551304572738521493300705432412738235136532691872618031963366780714364483372318720000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_202 32021086730745224025233051212074577899307110966054608836293136334787482387414102529250194539454599699757403167264415175786120812569431551739724344826334800863068818930907532206472792545101139137122180471482794259716267456096043627632774039290232315619363523693181341646742497347373123497579603758268842456600089704301625641208381440000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_203 6500280606341280477122309396051139313559343526109085593767506675961858924645062813437789491509283739050752842954676280684582524951594605003164041999745964575202970242974229037913976886655531244835802635711007234722402293587496856409453129975917160070730795309715812354288726961516744070008659562928575018689818209973230005165301432320000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_204 1326057243693621217332951116794432419966106079326253461128571361896219220627592813941309056267893882766353579962753961259654835090125299420645464567948176773341405929566742723734451284877728373946503737685045475883370067891849358707528438515087100654429082243182025720274900300149415790281766550837429303812722914834538921053721492193280000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_205 271841734957192349553254978942858646093051746261881959531357129188724940228656526857968356534918245967102483892364562058229241193475686381232320236429376238534988215561182258365562513399934316659033266225434322556090863917829118535043329895592855634157961859852315272656354561530630237007762142921673007281608197541080478816012905899622400000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_206 55999397401181624007970525662228881095168659729947683663459568612877337687103244532741481446193158669223111681827099783995223685855991394533857968704451505138207572405603545223305877760386469231760852842439470446554717967072798418218925958492128260636540143129576946167209039675309828823599001441864639500011288693462578636098658615322214400000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_207 11591875262044596169649898812081378386699912564099170518336130702865608901230371618277486659361983844529184118138209655287011302972190218668508599521821461563608967487959933861224316696399999130974496538384970382436826619184069272571317673407870549951763809627822427856612271212789134566484993298465980376502336759546753777672422333371698380800000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_208 2411110054505276003287178952912926704433581813332627467813915186196046651455917296601717225147292639662070296572747608299698351018215565483049788700538864005230665237495666243134657872851199819242695279984073839546859936790286408694834076068837074389966872402587064994175352412260139989828878606080923918312486045985724785755863845341313263206400000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_209 503922001391602684687020401158801681226618598986519140773108273914973750154286714989758900055784161689372691983704250134636955362807053185957405838412622577093209034636594244815143495425900762221723313516671432465293726789169859417220321898386948547503076332140696583782648654162369257874235628670913098927309583611016480222975543676334472010137600000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_210 105823620292236563784274284243348353057589905787169019562352737522144487532400210147849369011714673954768265316577892528273760626189481169051055226066650741189573897273684791411180134039439160066561895838501000817711682625725670477616267598661259194975646029749546282594356217374097544153589482020891750774735012558313460846824864172030239122128896000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_211 22328783881661914958481873975346502495151470121092663127656427617172486869336444341196216861471796204456103981797935323465763492125980526669772652700063306391000092324747490987759008282321662774044560021923711172537165034028116470777032463317525690139861312277154265627409161865934581816407380706408159413469087649804140238680046340298380454769197056000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_212 4733702182912325971198157282773458528972111665671644583063162654840567216299326200333597974632020795344694044141162288574741860330707871653991802372413420954892019572846468089404909755852192508097446724647826768577878987213960691804730882223315446309650598202756704313010742315578131345078364709758529795655446581758477730600169824143256656411069775872000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_213 1008278564960325431865207501230746666671059784788060296192453645481040817071756480671056368596620429408419831402067567466420016250440776662300253905324058663392000169016297703043245777996517004224756152349987101707088224276573627354407677913566190063955577417187178018671288113218141976501691683178566846474610121914555756617836172542513667815557862260736000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_214 215771612901509642419154405263379786667606793944644903385185080132942734853355886863606062879676771893401843920042459437813883477594326205732254335739348553965888036169487708451254596491254638904097816602897239765316879995186756253843243073503164673686493567278056095995655656228682382971362020200213305145566566089714931916216940924097924912529382523797504000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_215 46390896773824573120118197131626654133535460698098654227814792228582687993471515675675303519130505957081396442809128779129984947682780134232434682183959939102665927776439857317019738245619747364381030569622906549543129198965152594576297260803180404842596116964782060639065966089166712338842834343045860606296811709288710361986642298681053856193817242616463360000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_216 10020433703146107793945530580431357292843659510789309313207995121373860606589847385945865560132189286729581631646771816292076748699480508994205891351735346846175840399711009180476263461053865430706302603038547814701315906976472960428480208333486967446000761264392925098038248675260009865190052218097905890960111329206361438189114736515107632937864524405156085760000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_217 2174434113582705391286180135953604532547074113841280120966134941338127751629996882750252826548685075220319214067349484135380654467787270451742678423326570265620157366737288992163349171048688798463267664859364875790185551813894632412980205208366671935782165194373264746274299962531422140746241331327245578338344158437780432087037897823778356347516601795918870609920000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_218 474026636761029775300387269637885788095262156817399066370617417211711849855339320439555116187613346398029588666682187541512982673977624958479903896285192317905194305948729000291610119288614158064992350939341542922260450295429029866029684735423934482000512012373371714687797391831850026682680610229339536077759026539436134194974261725583681683758619191510313792962560000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_219 103811833450665520790784812050696987592862412343010395535165214369364895118319311176262570445087322861168479918003399071591343205601099865907098953286457117621237553002771651063862616124206500616233324855715797899975038614698957540660500957057841651558112130709768405516627628811175155843507053640225358401029226812136513388699363317902826288743137602940758720658800640000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_220 22838603359146414573972658651153337270429730715462287017736347161260276926030248458777765497919211029457065581960747795750095505232241970499561769723020565876672261660609763234049775547325430135571331468257475537994508495233770658945310210552725163342784668756149049213658078338458534285571551800849578848226429898670032945513859929938621783523490272646966918544936140800000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_221 5047331342371357620847957561904887536764970488117165430919732722638521200652684909389886175040145637510011493613325262860771106656325475480403151108787545058744569826994757674725000395958920059961264254484902093896786377446663315626913556532152261098755411795108939876218435312799336077111312947987756925458041007606077280958563044516435414158691350254979688998430887116800000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_222 1120507558006441391828246578742885033161823448362010725664180664425751706544896049884554730858912331527222551582158208355091185677704255556649499546150835003041294501592836203788950087902880253311400664495648264845086575793159256069174809550137801963923701418514184652520492639441452609118711474453282037451685103688549156372800995882648661943229479756605490957651656939929600000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_223 249873185435436430377698987059663362395086628984728391823112288166942630559511819124255704981537449930570629002821280463185334406128048989132838398791636205678208673855202473444935869602342296488442348182529563060454306401874514103425982529680729837954985416328663177512069858595443931833472658803081894351725778122546461871134622081830651613340173985723024483556319497604300800000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_224 55971593537537760404604573101364593176499404892579159768377152549395149245330647483833277915864388784447820896631966823753514906972682973565755801329326510071918742943565354051665634790924674413411085992886622125541764634019891159167420086648483483701916733257620551762703648325379440730697875571890344334786574299450407459134155346330065961388198972801957484316615567463363379200000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_225 12593608545945996091036028947807033464712366100830310947884859323613908580199395683862487531069487476500759701742192535344540854068853669052295055299098464766181717162302204661624767827958051743017494348399489978246897042654475510812669519495908783832931264982964624146608320873210374164407022003675327475326979217376341678305184952924264841312344768880440433971238502679256760320000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_226 2846155531383795116574142542204389563024994738787650274221978207136743339125063424552922182021704169689171692593735512987866233019560929205818682497596253037157068078680298253527197529118519693921953722738284735083798731639911465443663311406075385146242465886150005057133480517345544561155986972830624009423897303127053219296971799360883854136589917766979538077499901605512027832320000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_227 646077305624121491462330357080396430806673805704796612248389053020040737981389397373513335318926846519441974218777961448245634895440330929720840926954349439434654453860427703550673839109903970520283495061590634864022312082259902655711571689179112428197039756156051147969300077437438615382409042832551650139224687809841080780412598454920634889005911333104355143592477664451230317936640000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_228 147305625682299700053411321414330386223921627700693627592632704088569288259756782601161040452715321006432770121881375210200004756160395451976351731345591672191101215480177516409553635317058105278624636874042664748997087154755257805502238345132837633628925064403579661737000417655736004307189261765821776231743228820643766417934072447721904754693347783947792972739084907494880512489553920000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_229 33732988281246631312231192603881658445278052743458840718712889236282367011484303215665878263671808510473104357910834923135801089160730558502584546478140492931762178344960651257787782487606306108805041844155770227520332958438954037460012581035419818101023839748419742537773095643163544986346340944373186757069199399927422509706902590528316188824776642524044590757250443816327637360107847680000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_230 7758587304686725201813174298892781442413952130995533365303964524344944412641389739603152000644515957408814002319492032321234250506968028455594445689972313374305301019340949789291189972149450405025159624155827152329676580440959428615802893638146558163235483142136540783687811997927615346859658417205832954125915861983307177232587595821512723429698627780530255874167602077755356592824804966400000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_231 1792233667382633521618843263044232513197622942259968207385215805123682159320161029848328112148883186161436034535802659466205111867109614573242316954383604389464524535467759401326264883566523043560811873179996072188155290081861628010250468430411854935707396605833540921031884571521279145124581094374547412403086564118143957940727734634769439112260383017302489106932716079961487372942529947238400000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_232 415798210832770977015571637026261943061848522604312624113370066788694260962277358924812122018540899189453160012306216996159585953169430580992217533416996218355769692228520181107693452987433346106108354577759088747652027298991897698378108675855550345084116012553381493679397220592936761668902813894894999677516082875409398242248834435266509874044408860014177472808390130551065070522666947759308800000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_233 96880983124035637644628191427119032733410705766804841418415225561765762804210624629481224430320029511142586282867348560105183527088477325371186685286160118876894338289245202198092574546071969642723246616617867678202922360665112163722099321474343230404599030924937888027299552398154265468854355637510534924861247309970389790443978423417096800652347264383303351164354900418398161431781398827918950400000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_234 22670150051024339208842996793945853659618105149432332891909162781453188496185286163298606516694886905607365190190959563064612945338703694136857684356961467817193275159683377314353662443780840896397239708288581036699483832395636246310971241224996315914676173236435465798388095261168098119711919219177465172417531870533071210963890951079600651352649259865692984172459046697905169775036847325733034393600000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_235 5327485261990719714078104246577275610010254710116598229598653253641499296603542248375172531423298422817730819694875497320184042154595368122161555823885944937040419662525593668873110674288497610653351331447816543624378700612974517883078241687874134239948900710562334462621202386374503058132301016506704315518119989575271734576514373503706153067872576068437851280527875974007714897133659121547263082496000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_236 1257286521829809852522432602192237043962420111587517182185282167859393833998435970616540717415898427784984473447990617367563433948484506876830127174437083005141539040356040105854054119132085436114190914221684704295353373344661986220406465038338295680627940567692710933178603763184382721719223039895582218462276317539764129360057392146874652124017927952151332902204578729865820715723543552685154087469056000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_237 297976905673664935047816526719560179419093566446241572177911873782676338657629325036120150027567927385041320207173776316112533845790828129808740140341588672218544752564381505087410826234304248359063246670539274917998749482684890734236332214086176076308821914543172491163329091874698705047455860455252985775559487256924098658333601938809292553392248924659865897822485158978199509626479821986381518730166272000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_238 70918503550332254541380333359255322701744268814205494178343025960276968600515779358596595706561166717639834209307358763234783055298217094894480153401298103988013651110322798210803776643764411109457052707588347430483702376879003994748247066952509906161499615661275052896872323866178291801294494788350210614583157967147935480683397261436611627707355244069048083681751467836811483291102197632758801457779572736000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_239 16949522348529408835389899672862022125716880246595113108623983204506195495523271266704586373868118845515920376024458744413113150216273885679780756662910246853135262615367148772382102617859694255160235597113615035885604868074081954744831049001649867572598408143044737642352485404016611740509384254415700336885374754148356579883331945483350179022057903332502491999938600812997944506573425234229353548409317883904000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_240 4067885363647058120493575921486885310172051259182827146069755969081486918925585104009100729728348522923820890245870098659147156051905732563147381599098459244752463027688115705371704628286326621238456543307267608612545168337779669138759451760395968217423617954330737034164596496963986817722252221059768080852489940995605579171999666916004042965293896799800598079985264195119506681577622056215044851618236292136960000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_241 980360372638941007038951797078339359751464353463061342202811188548638347461066010066193275864531994024640834549254693776854464608509281547718518965382728677985343589672835884994580815417004715718468026937051493675623385569404900262441027874255428340399091926993707625233667755768320823071062785275404107485450075779940944580451919726756974354635829128751944137276448671023801110260206915547825809239994946405007360000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_242 237247210178623723703426334892958125059854373538060844813080307628770480085577974436018772759216742553963081960919635893998780435259246134547881589622620340072453148700826284168688557330915141203869262518766461469500859307795985863510728745569813658376580246332477245306547596895933639183197194036647794011478918338745708588469364573875187793821870649157970481220900578387759868682970073562573845836078777030011781120000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_243 57651072073405564859932599378988824389544612769748785289578514753791226660795447787952561780489668440613028916503471522241703645767996810695135226278296742637606115134300787052991319431412379312540230792060250137088708811794424564833107085173464718985508999858791970609491066045711874321516918150905413944789377156315207186998055591451670633898714567745386826936678840548225648089961727875705444538167142818292862812160000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_244 14066861585910957825823554248473273151048885515818703610657157599925059305234089260260425074439479099509579055626847051426975689567391221809612995211904405203575892092769392040929881941264620552259816313262701033449644950077839593819278128782325391432464195965545240828715820115153697334450128028820921002528608026140910553627525564314207634671286354529874385772549637093767058133950661601672128467312782847663458526167040000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_245 3446381088548184667326770790875951922006976951375582384611003611981639529782351868763804143237672379379846868628577527599609043944010849343355183826916579274876093562728501050027821075609832035303654996749361753195163012769070700485723141551669720900953728011558584003035375928212655846940281367061125645619508966404523085638743763256980870494465156859819224514274661087972929242817912092409671474491631797677547338910924800000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_246 847809747782853428162385614555484172813716330038393266614306888547483324326458559715895819236467405327442329682630071789503824810226668938465375221421478501619519016431211258306843984600018680684699129200342991286010101141191392319487892821710751341634617090843411664746702478340313338347309216297036908822399205735512679067130965761217294141638428587515529230511566627641340593733206374732779182724941422228676645372087500800000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_247 209409007702364796756109246795204590684987933519483136853733801471228381108635264249826267351407449115878255431609627732007444728125987227800947679691105189900021197058509180801790464196204614129120684912484718847644494981874273902913509526962555581383750421438322681192435512150057394571785376425368116479132603816671631729581348543020671652984691861116335719936356957027411126652101974558996458133060531290483131406905612697600000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_248 51933433910186469595515093205210738489877007512831817939725982764864638514941545533956914303149047380737807347039187677537846292575244832494635024563394087095205256870510276838844035120658744304021929858296210274215834755504819927922550362686713784183170104516704024935724007013214233853802773353491292886824885746534564668936174438669126569940203581556851258544216525342797959409721289690631121616999011760039816588912591949004800000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_249 12931425043636430929283258208097473883979374870695122666991769708451294990220444837955271661484112797803714029412757731706923726851235963291164121116285127686706108960757058932872164745044027331701460534715756358279742854120700162052715040308991732261609356024659302208995277746290344229596890565019331928819396550887106602565107435228612515915110691807655963377509914810356691893020601132967149282632753928249914330639235395302195200000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_250 3232856260909107732320814552024368470994843717673780666747942427112823747555111209488817915371028199450928507353189432926730931712808990822791030279071281921676527240189264733218041186261006832925365133678939089569935713530175040513178760077247933065402339006164825552248819436572586057399222641254832982204849137721776650641276858807153128978777672951913990844377478702589172973255150283241787320658188482062478582659808848825548800000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_251 811446921488186040812524452558116486219705773136118947353733549205318760636332913581693296758128078062183055345650547664609463859915056696520548600046891762340808337287505448037728337751512715064266648553413711482053864096073935168807868779389231199415987090547371213614453678579719100407204882954963078533417133568165939310960491560595435373673195910930411701938747154349882416287042721093688617485205308997682124247612021055212748800000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_252 204484624215022882284756162044645354527365854830301974733140854399740327680355894222586710783048275671670129947103938011481584892698594287523178247211816724109883700996451372905507541113381204196195195435460255293477573752210631662539582932406086262252828746817937545830842327002089213302615630504650695790421117659177816706362043873270049714165645369554463748888564282896170368904334765715609531606271737867415895310398229305913612697600000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_253 51734609926400789218043308997295274695423561272066399607484636163134302903130041238314437828111213744932542876617296316904840977852744354743364096544589631199800576352102197345093407901685444661637384445171444589249826159309289810622514481898739824349965672944938199095203108731528570965561754517676626034976542767771987626709597099937322577683908278497279328468806763572731103332796695726049211496386749680456221513530752014396144012492800000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_254 13140590921305800461383000485312999772637584563104865500301097585436112937395030474531867208340248291212865890660793264493829608374597066104814480522325766324749346393433958125653725607028102944055895649073546925669455844464559611898118678402279915384891280928014302570181589617808257025252685647489863012884041863014084857184237663384079934731712702738308949431076917947473700246530360714416499720082234418835880264436811011656620579173171200000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_255 3350850684932979117652665123754814942022584063591740702576779884286208799035732771005626138126763314259280802118502282445926550135522251856727692533193070412811083330325659322041700029792166250734253390513754466045711240338462701034020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds
SET: :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds

View file

@ -0,0 +1,326 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
#separator \x09
#set_separator ,
#empty_field (empty)
#unset_field -
#path resp
#open XXXX-XX-XX-XX-XX-XX
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value
#types time string addr port addr port vector[string] string string
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 CLIENT,SETINFO,LIB-NAME,redis-py - -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 CLIENT,SETINFO,LIB-VER,5.1.1 - -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_50 :1:factorial_50 -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_50 :1:factorial_50 -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_10 :1:factorial_10 -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_25 :1:factorial_25 -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_256 :1:factorial_256 -
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_51,1551118753287382280224243016469303211063259720016986112000000000000,PX,60000 :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_52,80658175170943878571660636856403766975289505440883277824000000000000,PX,60000 :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_53,4274883284060025564298013753389399649690343788366813724672000000000000,PX,60000 :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_54,230843697339241380472092742683027581083278564571807941132288000000000000,PX,60000 :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_55,12696403353658275925965100847566516959580321051449436762275840000000000000,PX,60000 :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_56,710998587804863451854045647463724949736497978881168458687447040000000000000,PX,60000 :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_57,40526919504877216755680601905432322134980384796226602145184481280000000000000,PX,60000 :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_58,2350561331282878571829474910515074683828862318181142924420699914240000000000000,PX,60000 :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_59,138683118545689835737939019720389406345902876772687432540821294940160000000000000,PX,60000 :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_60,8320987112741390144276341183223364380754172606361245952449277696409600000000000000,PX,60000 :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_61,507580213877224798800856812176625227226004528988036003099405939480985600000000000000,PX,60000 :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_62,31469973260387937525653122354950764088012280797258232192163168247821107200000000000000,PX,60000 :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_63,1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000,PX,60000 :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_64,126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000,PX,60000 :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_65,8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000,PX,60000 :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_66,544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000,PX,60000 :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_67,36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000,PX,60000 :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_68,2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000,PX,60000 :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_69,171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000,PX,60000 :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_70,11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000,PX,60000 :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_71,850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000,PX,60000 :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_72,61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000,PX,60000 :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_73,4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000,PX,60000 :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_74,330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000,PX,60000 :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_75,24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000,PX,60000 :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_76,1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000,PX,60000 :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_77,145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000,PX,60000 :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_78,11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000,PX,60000 :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_79,894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000,PX,60000 :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_80,71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000,PX,60000 :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_81,5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000,PX,60000 :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_82,475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000,PX,60000 :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_83,39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000,PX,60000 :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_84,3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000,PX,60000 :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_85,281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000,PX,60000 :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_86,24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000,PX,60000 :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_87,2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000,PX,60000 :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_88,185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000,PX,60000 :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_89,16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000,PX,60000 :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_90,1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000,PX,60000 :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_91,135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000,PX,60000 :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_92,12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000,PX,60000 :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_93,1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000,PX,60000 :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_94,108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000,PX,60000 :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_95,10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000,PX,60000 :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_96,991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000,PX,60000 :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_97,96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000,PX,60000 :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_98,9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000,PX,60000 :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_99,933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000,PX,60000 :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_100,93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000,PX,60000 :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_101,9425947759838359420851623124482936749562312794702543768327889353416977599316221476503087861591808346911623490003549599583369706302603264000000000000000000000000,PX,60000 :1:factorial_101 9425947759838359420851623124482936749562312794702543768327889353416977599316221476503087861591808346911623490003549599583369706302603264000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_102,961446671503512660926865558697259548455355905059659464369444714048531715130254590603314961882364451384985595980362059157503710042865532928000000000000000000000000,PX,60000 :1:factorial_102 961446671503512660926865558697259548455355905059659464369444714048531715130254590603314961882364451384985595980362059157503710042865532928000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_103,99029007164861804075467152545817733490901658221144924830052805546998766658416222832141441073883538492653516385977292093222882134415149891584000000000000000000000000,PX,60000 :1:factorial_103 99029007164861804075467152545817733490901658221144924830052805546998766658416222832141441073883538492653516385977292093222882134415149891584000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_104,10299016745145627623848583864765044283053772454999072182325491776887871732475287174542709871683888003235965704141638377695179741979175588724736000000000000000000000000,PX,60000 :1:factorial_104 10299016745145627623848583864765044283053772454999072182325491776887871732475287174542709871683888003235965704141638377695179741979175588724736000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_105,1081396758240290900504101305800329649720646107774902579144176636573226531909905153326984536526808240339776398934872029657993872907813436816097280000000000000000000000000,PX,60000 :1:factorial_105 1081396758240290900504101305800329649720646107774902579144176636573226531909905153326984536526808240339776398934872029657993872907813436816097280000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_106,114628056373470835453434738414834942870388487424139673389282723476762012382449946252660360871841673476016298287096435143747350528228224302506311680000000000000000000000000,PX,60000 :1:factorial_106 114628056373470835453434738414834942870388487424139673389282723476762012382449946252660360871841673476016298287096435143747350528228224302506311680000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_107,12265202031961379393517517010387338887131568154382945052653251412013535324922144249034658613287059061933743916719318560380966506520420000368175349760000000000000000000000000,PX,60000 :1:factorial_107 12265202031961379393517517010387338887131568154382945052653251412013535324922144249034658613287059061933743916719318560380966506520420000368175349760000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_108,1324641819451828974499891837121832599810209360673358065686551152497461815091591578895743130235002378688844343005686404521144382704205360039762937774080000000000000000000000000,PX,60000 :1:factorial_108 1324641819451828974499891837121832599810209360673358065686551152497461815091591578895743130235002378688844343005686404521144382704205360039762937774080000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_109,144385958320249358220488210246279753379312820313396029159834075622223337844983482099636001195615259277084033387619818092804737714758384244334160217374720000000000000000000000000,PX,60000 :1:factorial_109 144385958320249358220488210246279753379312820313396029159834075622223337844983482099636001195615259277084033387619818092804737714758384244334160217374720000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_110,15882455415227429404253703127090772871724410234473563207581748318444567162948183030959960131517678520479243672638179990208521148623422266876757623911219200000000000000000000000000,PX,60000 :1:factorial_110 15882455415227429404253703127090772871724410234473563207581748318444567162948183030959960131517678520479243672638179990208521148623422266876757623911219200000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_111,1762952551090244663872161047107075788761409536026565516041574063347346955087248316436555574598462315773196047662837978913145847497199871623320096254145331200000000000000000000000000,PX,60000 :1:factorial_111 1762952551090244663872161047107075788761409536026565516041574063347346955087248316436555574598462315773196047662837978913145847497199871623320096254145331200000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_112,197450685722107402353682037275992488341277868034975337796656295094902858969771811440894224355027779366597957338237853638272334919686385621811850780464277094400000000000000000000000000,PX,60000 :1:factorial_112 197450685722107402353682037275992488341277868034975337796656295094902858969771811440894224355027779366597957338237853638272334919686385621811850780464277094400000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_113,22311927486598136465966070212187151182564399087952213171022161345724023063584214692821047352118139068425569179220877461124773845924561575264739138192463311667200000000000000000000000000,PX,60000 :1:factorial_113 22311927486598136465966070212187151182564399087952213171022161345724023063584214692821047352118139068425569179220877461124773845924561575264739138192463311667200000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_114,2543559733472187557120132004189335234812341496026552301496526393412538629248600474981599398141467853800514886431180030568224218435400019580180261753940817530060800000000000000000000000000,PX,60000 :1:factorial_114 2543559733472187557120132004189335234812341496026552301496526393412538629248600474981599398141467853800514886431180030568224218435400019580180261753940817530060800000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_115,292509369349301569068815180481773552003419272043053514672100535242441942363589054622883930786268803187059211939585703515345785120071002251720730101703194015956992000000000000000000000000000,PX,60000 :1:factorial_115 292509369349301569068815180481773552003419272043053514672100535242441942363589054622883930786268803187059211939585703515345785120071002251720730101703194015956992000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_116,33931086844518982011982560935885732032396635556994207701963662088123265314176330336254535971207181169698868584991941607780111073928236261199604691797570505851011072000000000000000000000000000,PX,60000 :1:factorial_116 33931086844518982011982560935885732032396635556994207701963662088123265314176330336254535971207181169698868584991941607780111073928236261199604691797570505851011072000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_117,3969937160808720895401959629498630647790406360168322301129748464310422041758630649341780708631240196854767624444057168110272995649603642560353748940315749184568295424000000000000000000000000000,PX,60000 :1:factorial_117 3969937160808720895401959629498630647790406360168322301129748464310422041758630649341780708631240196854767624444057168110272995649603642560353748940315749184568295424000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_118,468452584975429065657431236280838416439267950499862031533310318788629800927518416622330123618486343228862579684398745837012213486653229822121742374957258403779058860032000000000000000000000000000,PX,60000 :1:factorial_118 468452584975429065657431236280838416439267950499862031533310318788629800927518416622330123618486343228862579684398745837012213486653229822121742374957258403779058860032000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_119,55745857612076058813234317117419771556272886109483581752463927935846946310374691578057284710599874844234646982443450754604453404911734348832487342619913750049708004343808000000000000000000000000000,PX,60000 :1:factorial_119 55745857612076058813234317117419771556272886109483581752463927935846946310374691578057284710599874844234646982443450754604453404911734348832487342619913750049708004343808000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_120,6689502913449127057588118054090372586752746333138029810295671352301633557244962989366874165271984981308157637893214090552534408589408121859898481114389650005964960521256960000000000000000000000000000,PX,60000 :1:factorial_120 6689502913449127057588118054090372586752746333138029810295671352301633557244962989366874165271984981308157637893214090552534408589408121859898481114389650005964960521256960000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_121,809429852527344373968162284544935082997082306309701607045776233628497660426640521713391773997910182738287074185078904956856663439318382745047716214841147650721760223072092160000000000000000000000000000,PX,60000 :1:factorial_121 809429852527344373968162284544935082997082306309701607045776233628497660426640521713391773997910182738287074185078904956856663439318382745047716214841147650721760223072092160000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_122,98750442008336013624115798714482080125644041369783596059584700502676714572050143649033796427745042294071023050579626404736512939596842694895821378210620013388054747214795243520000000000000000000000000000,PX,60000 :1:factorial_122 98750442008336013624115798714482080125644041369783596059584700502676714572050143649033796427745042294071023050579626404736512939596842694895821378210620013388054747214795243520000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_123,12146304367025329675766243241881295855454217088483382315328918161829235892362167668831156960612640202170735835221294047782591091570411651472186029519906261646730733907419814952960000000000000000000000000000,PX,60000 :1:factorial_123 12146304367025329675766243241881295855454217088483382315328918161829235892362167668831156960612640202170735835221294047782591091570411651472186029519906261646730733907419814952960000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_124,1506141741511140879795014161993280686076322918971939407100785852066825250652908790935063463115967385069171243567440461925041295354731044782551067660468376444194611004520057054167040000000000000000000000000000,PX,60000 :1:factorial_124 1506141741511140879795014161993280686076322918971939407100785852066825250652908790935063463115967385069171243567440461925041295354731044782551067660468376444194611004520057054167040000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_125,188267717688892609974376770249160085759540364871492425887598231508353156331613598866882932889495923133646405445930057740630161919341380597818883457558547055524326375565007131770880000000000000000000000000000000,PX,60000 :1:factorial_125 188267717688892609974376770249160085759540364871492425887598231508353156331613598866882932889495923133646405445930057740630161919341380597818883457558547055524326375565007131770880000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_126,23721732428800468856771473051394170805702085973808045661837377170052497697783313457227249544076486314839447086187187275319400401837013955325179315652376928996065123321190898603130880000000000000000000000000000000,PX,60000 :1:factorial_126 23721732428800468856771473051394170805702085973808045661837377170052497697783313457227249544076486314839447086187187275319400401837013955325179315652376928996065123321190898603130880000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_127,3012660018457659544809977077527059692324164918673621799053346900596667207618480809067860692097713761984609779945772783965563851033300772326297773087851869982500270661791244122597621760000000000000000000000000000000,PX,60000 :1:factorial_127 3012660018457659544809977077527059692324164918673621799053346900596667207618480809067860692097713761984609779945772783965563851033300772326297773087851869982500270661791244122597621760000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_128,385620482362580421735677065923463640617493109590223590278828403276373402575165543560686168588507361534030051833058916347592172932262498857766114955245039357760034644709279247692495585280000000000000000000000000000000,PX,60000 :1:factorial_128 385620482362580421735677065923463640617493109590223590278828403276373402575165543560686168588507361534030051833058916347592172932262498857766114955245039357760034644709279247692495585280000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_129,49745042224772874403902341504126809639656611137138843145968864022652168932196355119328515747917449637889876686464600208839390308261862352651828829226610077151044469167497022952331930501120000000000000000000000000000000,PX,60000 :1:factorial_129 49745042224772874403902341504126809639656611137138843145968864022652168932196355119328515747917449637889876686464600208839390308261862352651828829226610077151044469167497022952331930501120000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_130,6466855489220473672507304395536485253155359447828049608975952322944781961185526165512707047229268452925683969240398027149120740074042105844737747799459310029635780991774612983803150965145600000000000000000000000000000000,PX,60000 :1:factorial_130 6466855489220473672507304395536485253155359447828049608975952322944781961185526165512707047229268452925683969240398027149120740074042105844737747799459310029635780991774612983803150965145600000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_131,847158069087882051098456875815279568163352087665474498775849754305766436915303927682164623187034167333264599970492141556534816949699515865660644961729169613882287309922474300878212776434073600000000000000000000000000000000,PX,60000 :1:factorial_131 847158069087882051098456875815279568163352087665474498775849754305766436915303927682164623187034167333264599970492141556534816949699515865660644961729169613882287309922474300878212776434073600000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_132,111824865119600430744996307607616902997562475571842633838412167568361169672820118454045730260688510087990927196104962685462595837360336094267205134948250389032461924909766607715924086489297715200000000000000000000000000000000,PX,60000 :1:factorial_132 111824865119600430744996307607616902997562475571842633838412167568361169672820118454045730260688510087990927196104962685462595837360336094267205134948250389032461924909766607715924086489297715200000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_133,14872707060906857289084508911813048098675809251055070300508818286592035566485075754388082124671571841702793317081960037166525246368924700537538282948117301741317436012998958826217903503076596121600000000000000000000000000000000,PX,60000 :1:factorial_133 14872707060906857289084508911813048098675809251055070300508818286592035566485075754388082124671571841702793317081960037166525246368924700537538282948117301741317436012998958826217903503076596121600000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_134,1992942746161518876737324194182948445222558439641379420268181650403332765909000151088003004705990626788174304488982644980314383013435909872030129915047718433336536425741860482713199069412263880294400000000000000000000000000000000,PX,60000 :1:factorial_134 1992942746161518876737324194182948445222558439641379420268181650403332765909000151088003004705990626788174304488982644980314383013435909872030129915047718433336536425741860482713199069412263880294400000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_135,269047270731805048359538766214698040105045389351586221736204522804449923397715020396880405635308734616403531106012657072342441706813847832724067538531441988500432417475151165166281874370655623839744000000000000000000000000000000000,PX,60000 :1:factorial_135 269047270731805048359538766214698040105045389351586221736204522804449923397715020396880405635308734616403531106012657072342441706813847832724067538531441988500432417475151165166281874370655623839744000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_136,36590428819525486576897272205198933454286172951815726156123815101405189582089242773975735166401987907830880230417721361838572072126683305250473185240276110436058808776620558462614334914409164842205184000000000000000000000000000000000,PX,60000 :1:factorial_136 36590428819525486576897272205198933454286172951815726156123815101405189582089242773975735166401987907830880230417721361838572072126683305250473185240276110436058808776620558462614334914409164842205184000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_137,5012888748274991661034926292112253883237205694398754483388962668892510972746226260034675717797072343372830591567227826571884373881355612819314826377917827129740056802397016509378163883274055583382110208000000000000000000000000000000000,PX,60000 :1:factorial_137 5012888748274991661034926292112253883237205694398754483388962668892510972746226260034675717797072343372830591567227826571884373881355612819314826377917827129740056802397016509378163883274055583382110208000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_138,691778647261948849222819828311491035886734385827028118707676848307166514238979223884785249055995983385450621636277440066920043595627074569065446040152660143904127838730788278294186615891819670506731208704000000000000000000000000000000000,PX,60000 :1:factorial_138 691778647261948849222819828311491035886734385827028118707676848307166514238979223884785249055995983385450621636277440066920043595627074569065446040152660143904127838730788278294186615891819670506731208704000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_139,96157231969410890041971956135297253988256079629956908500367081914696145479218112119985149618783441690577636407442564169301886059792163365100096999581219760002673769583579570682891939608962934200435638009856000000000000000000000000000000000,PX,60000 :1:factorial_139 96157231969410890041971956135297253988256079629956908500367081914696145479218112119985149618783441690577636407442564169301886059792163365100096999581219760002673769583579570682891939608962934200435638009856000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_140,13462012475717524605876073858941615558355851148193967190051391468057460367090535696797920946629681836680869097041958983702264048370902871114013579941370766400374327741701139895604871545254810788060989321379840000000000000000000000000000000000,PX,60000 :1:factorial_140 13462012475717524605876073858941615558355851148193967190051391468057460367090535696797920946629681836680869097041958983702264048370902871114013579941370766400374327741701139895604871545254810788060989321379840000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_141,1898143759076170969428526414110767793728175011895349373797246196996101911759765533248506853474785138972002542682916216702019230820297304827075914771733278062452780211579860725280286887880928321116599494314557440000000000000000000000000000000000,PX,60000 :1:factorial_141 1898143759076170969428526414110767793728175011895349373797246196996101911759765533248506853474785138972002542682916216702019230820297304827075914771733278062452780211579860725280286887880928321116599494314557440000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_142,269536413788816277658850750803729026709400851689139611079208959973446471469886705721287973193419489734024361060974102771686730776482217285444779897586125484868294790044340222989800738079091821598557128192667156480000000000000000000000000000000000,PX,60000 :1:factorial_142 269536413788816277658850750803729026709400851689139611079208959973446471469886705721287973193419489734024361060974102771686730776482217285444779897586125484868294790044340222989800738079091821598557128192667156480000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_143,38543707171800727705215657364933250819444321791546964384326881276202845420193798918144180166658987031965483631719296696351202501036957071818603525354815944336166154976340651887541505545310130488593669331551403376640000000000000000000000000000000000,PX,60000 :1:factorial_143 38543707171800727705215657364933250819444321791546964384326881276202845420193798918144180166658987031965483631719296696351202501036957071818603525354815944336166154976340651887541505545310130488593669331551403376640000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_144,5550293832739304789551054660550388117999982337982762871343070903773209740507907044212761943998894132603029642967578724274573160149321818341878907651093495984407926316593053871805976798524658790357488383743402086236160000000000000000000000000000000000,PX,60000 :1:factorial_144 5550293832739304789551054660550388117999982337982762871343070903773209740507907044212761943998894132603029642967578724274573160149321818341878907651093495984407926316593053871805976798524658790357488383743402086236160000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_145,804792605747199194484902925779806277109997439007500616344745281047115412373646521410850481879839649227439298230298915019813108221651663659572441609408556917739149315905992811411866635786075524601835815642793302504243200000000000000000000000000000000000,PX,60000 :1:factorial_145 804792605747199194484902925779806277109997439007500616344745281047115412373646521410850481879839649227439298230298915019813108221651663659572441609408556917739149315905992811411866635786075524601835815642793302504243200000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_146,117499720439091082394795827163851716458059626095095089986332811032878850206552392125984170354456588787206137541623641592892713800361142894297576474973649309989915800122274950466132528824767026591868029083847822165619507200000000000000000000000000000000000,PX,60000 :1:factorial_146 117499720439091082394795827163851716458059626095095089986332811032878850206552392125984170354456588787206137541623641592892713800361142894297576474973649309989915800122274950466132528824767026591868029083847822165619507200000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_147,17272458904546389112034986593086202319334765035978978227990923221833190980363201642519673042105118551719302218618675314155228928653088005461743741821126448568517622617974417718521481737240752909004600275325629858346067558400000000000000000000000000000000000,PX,60000 :1:factorial_147 17272458904546389112034986593086202319334765035978978227990923221833190980363201642519673042105118551719302218618675314155228928653088005461743741821126448568517622617974417718521481737240752909004600275325629858346067558400000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_148,2556323917872865588581178015776757943261545225324888777742656636831312265093753843092911610231557545654456728355563946494973881440657024808338073789526714388140608147460213822341179297111631430532680840748193219035217998643200000000000000000000000000000000000,PX,60000 :1:factorial_148 2556323917872865588581178015776757943261545225324888777742656636831312265093753843092911610231557545654456728355563946494973881440657024808338073789526714388140608147460213822341179297111631430532680840748193219035217998643200000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_149,380892263763056972698595524350736933545970238573408427883655838887865527498969322620843829924502074302514052524979028027751108334657896696442372994639480443832950613971571859528835715269633083149369445271480789636247481797836800000000000000000000000000000000000,PX,60000 :1:factorial_149 380892263763056972698595524350736933545970238573408427883655838887865527498969322620843829924502074302514052524979028027751108334657896696442372994639480443832950613971571859528835715269633083149369445271480789636247481797836800000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_150,57133839564458545904789328652610540031895535786011264182548375833179829124845398393126574488675311145377107878746854204162666250198684504466355949195922066574942592095735778929325357290444962472405416790722118445437122269675520000000000000000000000000000000000000,PX,60000 :1:factorial_150 57133839564458545904789328652610540031895535786011264182548375833179829124845398393126574488675311145377107878746854204162666250198684504466355949195922066574942592095735778929325357290444962472405416790722118445437122269675520000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_151,8627209774233240431623188626544191544816225903687700891564804750810154197851655157362112747789971982951943289690774984828562603780001360174419748328584232052816331406456102618328128950857189333333217935399039885261005462721003520000000000000000000000000000000000000,PX,60000 :1:factorial_151 8627209774233240431623188626544191544816225903687700891564804750810154197851655157362112747789971982951943289690774984828562603780001360174419748328584232052816331406456102618328128950857189333333217935399039885261005462721003520000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_152,1311335885683452545606724671234717114812066337360530535517850322123143438073451583919041137664075741408695380032997797693941515774560206746511801745944803272028082373781327597985875600530292778666649126180654062559672830333592535040000000000000000000000000000000000000,PX,60000 :1:factorial_152 1311335885683452545606724671234717114812066337360530535517850322123143438073451583919041137664075741408695380032997797693941515774560206746511801745944803272028082373781327597985875600530292778666649126180654062559672830333592535040000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_153,200634390509568239477828874698911718566246149616161171934231099284840946025238092339613294062603588435530393145048663047173051913507711632216305667129554900620296603188543122491838966881134795135997316305640071571629943041039657861120000000000000000000000000000000000000,PX,60000 :1:factorial_153 200634390509568239477828874698911718566246149616161171934231099284840946025238092339613294062603588435530393145048663047173051913507711632216305667129554900620296603188543122491838966881134795135997316305640071571629943041039657861120000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_154,30897696138473508879585646703632404659201907040888820477871589289865505687886666220300447285640952619071680544337494109264649994680187591361311072737951454695525676891035640863743200899694758450943586711068571022031011228320107310612480000000000000000000000000000000000000,PX,60000 :1:factorial_154 30897696138473508879585646703632404659201907040888820477871589289865505687886666220300447285640952619071680544337494109264649994680187591361311072737951454695525676891035640863743200899694758450943586711068571022031011228320107310612480000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_155,4789142901463393876335775239063022722176295591337767174070096339929153381622433264146569329274347655956110484372311586936020749175429076661003216274382475477806479918110524333880196139452687559896255940215628508414806740389616633144934400000000000000000000000000000000000000,PX,60000 :1:factorial_155 4789142901463393876335775239063022722176295591337767174070096339929153381622433264146569329274347655956110484372311586936020749175429076661003216274382475477806479918110524333880196139452687559896255940215628508414806740389616633144934400000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_156,747106292628289444708380937293831544659502112248691679154935029028947927533099589206864815366798234329153235562080607562019236871366935959116501738803666174537810867225241796085310597754619259343815926673638047312709851500780194770609766400000000000000000000000000000000000000,PX,60000 :1:factorial_156 747106292628289444708380937293831544659502112248691679154935029028947927533099589206864815366798234329153235562080607562019236871366935959116501738803666174537810867225241796085310597754619259343815926673638047312709851500780194770609766400000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_157,117295687942641442819215807155131552511541831623044593627324799557544824622696635505477776012587322789677057983246655387237020188804608945581290772992175589402436306154362961985393763847475223716979100487761173428095446685622490578985733324800000000000000000000000000000000000000,PX,60000 :1:factorial_157 117295687942641442819215807155131552511541831623044593627324799557544824622696635505477776012587322789677057983246655387237020188804608945581290772992175589402436306154362961985393763847475223716979100487761173428095446685622490578985733324800000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_158,18532718694937347965436097530510785296823609396441045793117318330092082290386068409865488609988797000768975161352971551183449189831128213401843942132763743125584936372389347993692214687901085347282697877066265401639080576328353511479745865318400000000000000000000000000000000000000,PX,60000 :1:factorial_158 18532718694937347965436097530510785296823609396441045793117318330092082290386068409865488609988797000768975161352971551183449189831128213401843942132763743125584936372389347993692214687901085347282697877066265401639080576328353511479745865318400000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_159,2946702272495038326504339507351214862194953894034126281105653614484641084171384877168612688988218723122267050655122476638168421183149385930893186799109435156968004883209906330997062135376272570217948962453536198860613811636208208325279592585625600000000000000000000000000000000000000,PX,60000 :1:factorial_159 2946702272495038326504339507351214862194953894034126281105653614484641084171384877168612688988218723122267050655122476638168421183149385930893186799109435156968004883209906330997062135376272570217948962453536198860613811636208208325279592585625600000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_160,471472363599206132240694321176194377951192623045460204976904578317542573467421580346978030238114995699562728104819596262106947389303901748942909887857509625114880781313585012959529941660203611234871833992565791817698209861793313332044734813700096000000000000000000000000000000000000000,PX,60000 :1:factorial_160 471472363599206132240694321176194377951192623045460204976904578317542573467421580346978030238114995699562728104819596262106947389303901748942909887857509625114880781313585012959529941660203611234871833992565791817698209861793313332044734813700096000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_161,75907050539472187290751785709367294850142012310319093001281637109124354328254874435863462868336514307629599224875954998199218529677928181579808491945059049643495805791487187086484320607292781408814365272803092482649411787748723446459202305005715456000000000000000000000000000000000000000,PX,60000 :1:factorial_161 75907050539472187290751785709367294850142012310319093001281637109124354328254874435863462868336514307629599224875954998199218529677928181579808491945059049643495805791487187086484320607292781408814365272803092482649411787748723446459202305005715456000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_162,12296942187394494341101789284917501765723005994271693066207625211678145401177289658609880984670515317835995074429904709708273401807824365415928975695099566042246320538220924308010459938381430588227927174194100982189204709615293198326390773410925903872000000000000000000000000000000000000000,PX,60000 :1:factorial_162 12296942187394494341101789284917501765723005994271693066207625211678145401177289658609880984670515317835995074429904709708273401807824365415928975695099566042246320538220924308010459938381430588227927174194100982189204709615293198326390773410925903872000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_163,2004401576545302577599591653441552787812849977066285969791842909503537700391898214353410600501293996807267197132074467682448564494675371562796423038301229264886150247730010662205704969956173185881152129393638460096840367667292791327201696065980922331136000000000000000000000000000000000000000,PX,60000 :1:factorial_163 2004401576545302577599591653441552787812849977066285969791842909503537700391898214353410600501293996807267197132074467682448564494675371562796423038301229264886150247730010662205704969956173185881152129393638460096840367667292791327201696065980922331136000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_164,328721858553429622726333031164414657201307396238870899045862237158580182864271307153959338482212215476391820329660212699921564577126760936298613378281401599441328640627721748601735615072812402484508949220556707455881820297436017777661078154820871262306304000000000000000000000000000000000000000,PX,60000 :1:factorial_164 328721858553429622726333031164414657201307396238870899045862237158580182864271307153959338482212215476391820329660212699921564577126760936298613378281401599441328640627721748601735615072812402484508949220556707455881820297436017777661078154820871262306304000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_165,54239106661315887749844950142128418438215720379413698342567269131165730172604765680403290849565015553604650354393935095487058155225915554489271207416431263907819225703574088519286376487014046409943976621391856730220500349076942933314077895545443758280540160000000000000000000000000000000000000000,PX,60000 :1:factorial_165 54239106661315887749844950142128418438215720379413698342567269131165730172604765680403290849565015553604650354393935095487058155225915554489271207416431263907819225703574088519286376487014046409943976621391856730220500349076942933314077895545443758280540160000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_166,9003691705778437366474261723593317460743809582982673924866166675773511208652391102946946281027792581898371958829393225850851653767501982045219020431127589808697991466793298694201538496844331704050700119151048217216603057946772526930136930660543663874569666560000000000000000000000000000000000000000,PX,60000 :1:factorial_166 9003691705778437366474261723593317460743809582982673924866166675773511208652391102946946281027792581898371958829393225850851653767501982045219020431127589808697991466793298694201538496844331704050700119151048217216603057946772526930136930660543663874569666560000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_167,1503616514864999040201201707840084015944216200358106545452649834854176371844949314192140028931641361177028117124508668717092226179172831001551576411998307498052564574954480881931656928973003394576466919898225052275172710677111011997332867420310791867053134315520000000000000000000000000000000000000000,PX,60000 :1:factorial_167 1503616514864999040201201707840084015944216200358106545452649834854176371844949314192140028931641361177028117124508668717092226179172831001551576411998307498052564574954480881931656928973003394576466919898225052275172710677111011997332867420310791867053134315520000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_168,252607574497319838753801886917134114678628321660161899636045172255501630469951484784279524860515748677740723676917456344471493998101035608260664837215715659672830848592352788164518364067464570288846442542901808782229015393754650015551921726612213033664926565007360000000000000000000000000000000000000000,PX,60000 :1:factorial_168 252607574497319838753801886917134114678628321660161899636045172255501630469951484784279524860515748677740723676917456344471493998101035608260664837215715659672830848592352788164518364067464570288846442542901808782229015393754650015551921726612213033664926565007360000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_169,42690680090047052749392518888995665380688186360567361038491634111179775549421800928543239701427161526538182301399050122215682485679075017796052357489455946484708413412107621199803603527401512378815048789750405684196703601544535852628274771797464002689372589486243840000000000000000000000000000000000000000,PX,60000 :1:factorial_169 42690680090047052749392518888995665380688186360567361038491634111179775549421800928543239701427161526538182301399050122215682485679075017796052357489455946484708413412107621199803603527401512378815048789750405684196703601544535852628274771797464002689372589486243840000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_170,7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000,PX,60000 :1:factorial_170 7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_171,1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000,PX,60000 :1:factorial_171 1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_172,213455108077438865629072570145733886730056159330291227886899710221263324938130981514753340236723864719151973034287306573083301055694802251980973629541579310661401455397074590303866009781148657954570396550703618437210885875866741044575478989978191912006970522334798649753600000000000000000000000000000000000000000,PX,60000 :1:factorial_172 213455108077438865629072570145733886730056159330291227886899710221263324938130981514753340236723864719151973034287306573083301055694802251980973629541579310661401455397074590303866009781148657954570396550703618437210885875866741044575478989978191912006970522334798649753600000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_173,36927733697396923753829554635211962404299715564140382424433649868278555214296659802052327860953228596413291334931704037143411082635200789592708437910693220744422451783693904122568819692138717826140678603271725989637483256524946200711557865266227200777205900363920166407372800000000000000000000000000000000000000000,PX,60000 :1:factorial_173 36927733697396923753829554635211962404299715564140382424433649868278555214296659802052327860953228596413291334931704037143411082635200789592708437910693220744422451783693904122568819692138717826140678603271725989637483256524946200711557865266227200777205900363920166407372800000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_174,6425425663347064733166342506526881458348150508160426541851455077080468607287618805557105047805861775775912692278116502462953528378524937389131268196460620409529506610362739317326974626432136901748478076969280322196922086635340638923811068556323532935233826663322108954882867200000000000000000000000000000000000000000,PX,60000 :1:factorial_174 6425425663347064733166342506526881458348150508160426541851455077080468607287618805557105047805861775775912692278116502462953528378524937389131268196460620409529506610362739317326974626432136901748478076969280322196922086635340638923811068556323532935233826663322108954882867200000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_175,1124449491085736328304109938642204255210926338928074644824004638489082006275333290972493383366025810760784721148670387931016867466241864043097971934380608571667663656813479380532220559625623957805983663469624056384461365161184611811666936997356618263665919666081369067104501760000000000000000000000000000000000000000000,PX,60000 :1:factorial_175 1124449491085736328304109938642204255210926338928074644824004638489082006275333290972493383366025810760784721148670387931016867466241864043097971934380608571667663656813479380532220559625623957805983663469624056384461365161184611811666936997356618263665919666081369067104501760000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_176,197903110431089593781523349201027948917123035651341137489024816374078433104458659211158835472420542693898110922165988275858968674058568071585243060450987108613508803599172370973670818494109816573853124770653833923665200268368491678853380911534764814405201861230320955810392309760000000000000000000000000000000000000000000,PX,60000 :1:factorial_176 197903110431089593781523349201027948917123035651341137489024816374078433104458659211158835472420542693898110922165988275858968674058568071585243060450987108613508803599172370973670818494109816573853124770653833923665200268368491678853380911534764814405201861230320955810392309760000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_177,35028850546302858099329632808581946958330777310287381335557392498211882659489182680375113878618436056819965633223379924827037455308366548670588021699824718224591058237053509662339734873457437533572003084405728604488740447501223027157048421341653372149720729437766809178439438827520000000000000000000000000000000000000000000,PX,60000 :1:factorial_177 35028850546302858099329632808581946958330777310287381335557392498211882659489182680375113878618436056819965633223379924827037455308366548670588021699824718224591058237053509662339734873457437533572003084405728604488740447501223027157048421341653372149720729437766809178439438827520000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_178,6235135397241908741680674639927586558582878361231153877729215864681715113389074517106770270394081618113953882713761626619212667044889245663364667862568799843977208366195524719896472807475423880975816549024219691598995799655217698833954618998814300242650289839922492033762220111298560000000000000000000000000000000000000000000,PX,60000 :1:factorial_178 6235135397241908741680674639927586558582878361231153877729215864681715113389074517106770270394081618113953882713761626619212667044889245663364667862568799843977208366195524719896472807475423880975816549024219691598995799655217698833954618998814300242650289839922492033762220111298560000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_179,1116089236106301664760840760547037993986335226660376544113529639778027005296644338562111878400540609642397745005763331164839067401035174973742275547399815172071920297548998924861468632538100874694671162275335324796220248138283968091277876800787759743434401881346126074043437399922442240000000000000000000000000000000000000000000,PX,60000 :1:factorial_179 1116089236106301664760840760547037993986335226660376544113529639778027005296644338562111878400540609642397745005763331164839067401035174973742275547399815172071920297548998924861468632538100874694671162275335324796220248138283968091277876800787759743434401881346126074043437399922442240000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_180,200896062499134299656951336898466838917540340798867777940435335160044860953395980941180138112097309735631594101037399609671032132186331495273609598531966730972945653558819806475064353856858157445040809209560358463319644664891114256430017824141796753818192338642302693327818731986039603200000000000000000000000000000000000000000000,PX,60000 :1:factorial_180 200896062499134299656951336898466838917540340798867777940435335160044860953395980941180138112097309735631594101037399609671032132186331495273609598531966730972945653558819806475064353856858157445040809209560358463319644664891114256430017824141796753818192338642302693327818731986039603200000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_181,36362187312343308237908191978622497844074801684595067807218795663968119832564672550353604998289613062149318532287769329350456815925726000644523337334285978306103163294146384971986648048091326497552386466930424881860855684345291680413833226169665212441092813294256787492335190489473168179200000000000000000000000000000000000000000000,PX,60000 :1:factorial_181 36362187312343308237908191978622497844074801684595067807218795663968119832564672550353604998289613062149318532287769329350456815925726000644523337334285978306103163294146384971986648048091326497552386466930424881860855684345291680413833226169665212441092813294256787492335190489473168179200000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_182,6617918090846482099299290940109294607621613906596302340913820810842197809526770404164356109688709577311175972876374017941783140498482132117303247394840048051710775719534642064901569944752621422554534336981337328498675734550843085835317647162879068664278892019554735323605004669084116608614400000000000000000000000000000000000000000000,PX,60000 :1:factorial_182 6617918090846482099299290940109294607621613906596302340913820810842197809526770404164356109688709577311175972876374017941783140498482132117303247394840048051710775719534642064901569944752621422554534336981337328498675734550843085835317647162879068664278892019554735323605004669084116608614400000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_183,1211079010624906224171770242040000913194755344907123328387229208384122199143398983962077168073033852647945203036376445283346314711222230177466494273255728793463071956674839497876987299889729720327479783667584731115257659422804284707863129430806869565563037239578516564219715854442393339376435200000000000000000000000000000000000000000000,PX,60000 :1:factorial_183 1211079010624906224171770242040000913194755344907123328387229208384122199143398983962077168073033852647945203036376445283346314711222230177466494273255728793463071956674839497876987299889729720327479783667584731115257659422804284707863129430806869565563037239578516564219715854442393339376435200000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_184,222838537954982745247605724535360168027834983462910692423250174342678484642385413049022198925438228887221917358693265932135721906864890352653834946279054097997205240028170467609365663179710268540256280194835590525207409333795988386246815815268464000063598852082447047816427717217400374445264076800000000000000000000000000000000000000000000,PX,60000 :1:factorial_184 222838537954982745247605724535360168027834983462910692423250174342678484642385413049022198925438228887221917358693265932135721906864890352653834946279054097997205240028170467609365663179710268540256280194835590525207409333795988386246815815268464000063598852082447047816427717217400374445264076800000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_185,41225129521671807870807059039041631085149471940638478098301282253395519658841301414069106801206072344136054711358254197445108552770004715240959465061625008129482969405211536507732647688246399679947411836044584247163370726752257851455660925824665840011765787635252703846039127685219069272373854208000000000000000000000000000000000000000000000,PX,60000 :1:factorial_185 41225129521671807870807059039041631085149471940638478098301282253395519658841301414069106801206072344136054711358254197445108552770004715240959465061625008129482969405211536507732647688246399679947411836044584247163370726752257851455660925824665840011765787635252703846039127685219069272373854208000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_186,7667874091030956263970112981261743381837801780958756926284038499131566656544482063016853865024329456009306176312635280724790190815220877034818460501462251512083832309369345790438272470013830340470218601504292669972386955175919960370752932203387846242188436500157002915363277749450746884661536882688000000000000000000000000000000000000000000000,PX,60000 :1:factorial_186 7667874091030956263970112981261743381837801780958756926284038499131566656544482063016853865024329456009306176312635280724790190815220877034818460501462251512083832309369345790438272470013830340470218601504292669972386955175919960370752932203387846242188436500157002915363277749450746884661536882688000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_187,1433892455022788821362411127495946012403668933039287545215115199337602964773818145784151672759549608273740254970462797495535765682446304005511052113773441032759676641852067662811956951892586273667930878481302729284836360617897032589330798322033527247289237625529359545172932939147289667431707397062656000000000000000000000000000000000000000000000,PX,60000 :1:factorial_187 1433892455022788821362411127495946012403668933039287545215115199337602964773818145784151672759549608273740254970462797495535765682446304005511052113773441032759676641852067662811956951892586273667930878481302729284836360617897032589330798322033527247289237625529359545172932939147289667431707397062656000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_188,269571781544284298416133291969237850331889759411386058500441657475469357377477811407420514478795326355463167934447005929160723948299905153036077797389406914158819208668188720608647906955806219449571005154484913105549235796164642126794190084542303122490376673599519594492511392559690457477160990647779328000000000000000000000000000000000000000000000,PX,60000 :1:factorial_188 269571781544284298416133291969237850331889759411386058500441657475469357377477811407420514478795326355463167934447005929160723948299905153036077797389406914158819208668188720608647906955806219449571005154484913105549235796164642126794190084542303122490376673599519594492511392559690457477160990647779328000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_189,50949066711869732400649192182185953712727164528751965056583473262863708544343306356002477236492316681182538739610484120611376826228682073923818703706597906776016830438287668195034454414647375475968919974197648576948805565475117361964101925978495290150681191310309203359084653193781496463183427232430292992000000000000000000000000000000000000000000000,PX,60000 :1:factorial_189 50949066711869732400649192182185953712727164528751965056583473262863708544343306356002477236492316681182538739610484120611376826228682073923818703706597906776016830438287668195034454414647375475968919974197648576948805565475117361964101925978495290150681191310309203359084653193781496463183427232430292992000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_190,9680322675255249156123346514615331205418161260462873360750859919944104623425228207640470674933540169424682360525991982916161596983449594045525553704253602287443197783274656957056546338783001340434094795097553229620273057440272298773179365935914105128629426348958748638226084106818484328004851174161755668480000000000000000000000000000000000000000000000,PX,60000 :1:factorial_190 9680322675255249156123346514615331205418161260462873360750859919944104623425228207640470674933540169424682360525991982916161596983449594045525553704253602287443197783274656957056546338783001340434094795097553229620273057440272298773179365935914105128629426348958748638226084106818484328004851174161755668480000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_191,1848941630973752588819559184291528260234868800748408811903414244709323983074218587659329898912306172360114330860464468736986865023838872462695380757512438036901650776605459478797800350707553256022912105863632666857472153971092009065677258893759594079568220432651120989901182064402330506648926574264895332679680000000000000000000000000000000000000000000000,PX,60000 :1:factorial_191 1848941630973752588819559184291528260234868800748408811903414244709323983074218587659329898912306172360114330860464468736986865023838872462695380757512438036901650776605459478797800350707553256022912105863632666857472153971092009065677258893759594079568220432651120989901182064402330506648926574264895332679680000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_192,354996793146960497053355363383973425965094809743694491885455534984190204750249968830591340591162785093141951525209177997501478084577063512837513105442388103085116949108248219929177667335850225156399124325817472036634653562449665740610033707601842063277098323069015230061026956365247457276593902258859903874498560000000000000000000000000000000000000000000000,PX,60000 :1:factorial_192 354996793146960497053355363383973425965094809743694491885455534984190204750249968830591340591162785093141951525209177997501478084577063512837513105442388103085116949108248219929177667335850225156399124325817472036634653562449665740610033707601842063277098323069015230061026956365247457276593902258859903874498560000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_193,68514381077363375931297585133106871211263298280533036933892918251948709516798243984304128734094417522976396644365371353517785270323373257977640029350380903895427571177891906446331289795819093455185030994882772103070488137552785487937736505567155518212479976352319939401778202578492759254382623135959961447778222080000000000000000000000000000000000000000000000,PX,60000 :1:factorial_193 68514381077363375931297585133106871211263298280533036933892918251948709516798243984304128734094417522976396644365371353517785270323373257977640029350380903895427571177891906446331289795819093455185030994882772103070488137552785487937736505567155518212479976352319939401778202578492759254382623135959961447778222080000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_194,13291789929008494930671731515822733014985079866423409165175226140878049646258859332955000974414316999457420949006882042582450342442734412047662165693973895355712948808511029850588270220388904130305896013007257787995674698685240384659920882080028170533221115412350068243944971300227595295350228888376232520868975083520000000000000000000000000000000000000000000000,PX,60000 :1:factorial_194 13291789929008494930671731515822733014985079866423409165175226140878049646258859332955000974414316999457420949006882042582450342442734412047662165693973895355712948808511029850588270220388904130305896013007257787995674698685240384659920882080028170533221115412350068243944971300227595295350228888376232520868975083520000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_195,2591899036156656511480987645585432937922090573952564787209169097471219681020477569926225190010791814894197085056341998303577816776333210349294122310324909594364025017659650820864712692975836305409649722536415268659156566243621875008684572005605493253978117505408263307569269403544381082593294633233365341569450141286400000000000000000000000000000000000000000000000,PX,60000 :1:factorial_195 2591899036156656511480987645585432937922090573952564787209169097471219681020477569926225190010791814894197085056341998303577816776333210349294122310324909594364025017659650820864712692975836305409649722536415268659156566243621875008684572005605493253978117505408263307569269403544381082593294633233365341569450141286400000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_196,508012211086704676250273578534744855832729752494702698292997143104359057480013603705540137242115195719262628671043031667501252088161309228461647972823682280495348903461291560889483687823263915860291345617137392657194686983749887501702176113098676677779711031060019608283576803094698692188285748113739606947612227692134400000000000000000000000000000000000000000000000,PX,60000 :1:factorial_196 508012211086704676250273578534744855832729752494702698292997143104359057480013603705540137242115195719262628671043031667501252088161309228461647972823682280495348903461291560889483687823263915860291345617137392657194686983749887501702176113098676677779711031060019608283576803094698692188285748113739606947612227692134400000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_197,100078405584080821221303894971344736599047761241456431563720437191558734323562679929991407036696693556694737848195477238497746661367777918006944650646265409257583733981874437495228286501182991424477395086576066353467353335798727837835328694280439305522603073118823862831864630209655642361092292378406702568679608855350476800000000000000000000000000000000000000000000000,PX,60000 :1:factorial_197 100078405584080821221303894971344736599047761241456431563720437191558734323562679929991407036696693556694737848195477238497746661367777918006944650646265409257583733981874437495228286501182991424477395086576066353467353335798727837835328694280439305522603073118823862831864630209655642361092292378406702568679608855350476800000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_198,19815524305648002601818171204326257846611456725808373449616646563928629396065410626138298593265945324225558093942704493222553838950820027765375040827960551033001579328411138624055200727234232302046524227142061137986535960488148111891395081467526982493475408477527124840709196781511817187496273890924527108598562553359394406400000000000000000000000000000000000000000000000,PX,60000 :1:factorial_198 19815524305648002601818171204326257846611456725808373449616646563928629396065410626138298593265945324225558093942704493222553838950820027765375040827960551033001579328411138624055200727234232302046524227142061137986535960488148111891395081467526982493475408477527124840709196781511817187496273890924527108598562553359394406400000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_199,3943289336823952517761816069660925311475679888435866316473712666221797249817016714601521420059923119520886060694598194151288213951213185525309633124764149655567314286353816586186984944719612228107258321201270166459320656137141474266387621212037869516201606287027897843301130159520851620311758504293980894611113948118519486873600000000000000000000000000000000000000000000000,PX,60000 :1:factorial_199 3943289336823952517761816069660925311475679888435866316473712666221797249817016714601521420059923119520886060694598194151288213951213185525309633124764149655567314286353816586186984944719612228107258321201270166459320656137141474266387621212037869516201606287027897843301130159520851620311758504293980894611113948118519486873600000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_200,788657867364790503552363213932185062295135977687173263294742533244359449963403342920304284011984623904177212138919638830257642790242637105061926624952829931113462857270763317237396988943922445621451664240254033291864131227428294853277524242407573903240321257405579568660226031904170324062351700858796178922222789623703897374720000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_200 788657867364790503552363213932185062295135977687173263294742533244359449963403342920304284011984623904177212138919638830257642790242637105061926624952829931113462857270763317237396988943922445621451664240254033291864131227428294853277524242407573903240321257405579568660226031904170324062351700858796178922222789623703897374720000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_201,158520231340322891214025006000369197521322331515121825922243249182116249442644071926981161086408909404739619639922847404881786200838770058117447251615518816153806034311423426764716794777728411569911784512291060691664690376713087265508782372723922354551304572738521493300705432412738235136532691872618031963366780714364483372318720000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_201 158520231340322891214025006000369197521322331515121825922243249182116249442644071926981161086408909404739619639922847404881786200838770058117447251615518816153806034311423426764716794777728411569911784512291060691664690376713087265508782372723922354551304572738521493300705432412738235136532691872618031963366780714364483372318720000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_202,32021086730745224025233051212074577899307110966054608836293136334787482387414102529250194539454599699757403167264415175786120812569431551739724344826334800863068818930907532206472792545101139137122180471482794259716267456096043627632774039290232315619363523693181341646742497347373123497579603758268842456600089704301625641208381440000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_202 32021086730745224025233051212074577899307110966054608836293136334787482387414102529250194539454599699757403167264415175786120812569431551739724344826334800863068818930907532206472792545101139137122180471482794259716267456096043627632774039290232315619363523693181341646742497347373123497579603758268842456600089704301625641208381440000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_203,6500280606341280477122309396051139313559343526109085593767506675961858924645062813437789491509283739050752842954676280684582524951594605003164041999745964575202970242974229037913976886655531244835802635711007234722402293587496856409453129975917160070730795309715812354288726961516744070008659562928575018689818209973230005165301432320000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_203 6500280606341280477122309396051139313559343526109085593767506675961858924645062813437789491509283739050752842954676280684582524951594605003164041999745964575202970242974229037913976886655531244835802635711007234722402293587496856409453129975917160070730795309715812354288726961516744070008659562928575018689818209973230005165301432320000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_204,1326057243693621217332951116794432419966106079326253461128571361896219220627592813941309056267893882766353579962753961259654835090125299420645464567948176773341405929566742723734451284877728373946503737685045475883370067891849358707528438515087100654429082243182025720274900300149415790281766550837429303812722914834538921053721492193280000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_204 1326057243693621217332951116794432419966106079326253461128571361896219220627592813941309056267893882766353579962753961259654835090125299420645464567948176773341405929566742723734451284877728373946503737685045475883370067891849358707528438515087100654429082243182025720274900300149415790281766550837429303812722914834538921053721492193280000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_205,271841734957192349553254978942858646093051746261881959531357129188724940228656526857968356534918245967102483892364562058229241193475686381232320236429376238534988215561182258365562513399934316659033266225434322556090863917829118535043329895592855634157961859852315272656354561530630237007762142921673007281608197541080478816012905899622400000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_205 271841734957192349553254978942858646093051746261881959531357129188724940228656526857968356534918245967102483892364562058229241193475686381232320236429376238534988215561182258365562513399934316659033266225434322556090863917829118535043329895592855634157961859852315272656354561530630237007762142921673007281608197541080478816012905899622400000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_206,55999397401181624007970525662228881095168659729947683663459568612877337687103244532741481446193158669223111681827099783995223685855991394533857968704451505138207572405603545223305877760386469231760852842439470446554717967072798418218925958492128260636540143129576946167209039675309828823599001441864639500011288693462578636098658615322214400000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_206 55999397401181624007970525662228881095168659729947683663459568612877337687103244532741481446193158669223111681827099783995223685855991394533857968704451505138207572405603545223305877760386469231760852842439470446554717967072798418218925958492128260636540143129576946167209039675309828823599001441864639500011288693462578636098658615322214400000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_207,11591875262044596169649898812081378386699912564099170518336130702865608901230371618277486659361983844529184118138209655287011302972190218668508599521821461563608967487959933861224316696399999130974496538384970382436826619184069272571317673407870549951763809627822427856612271212789134566484993298465980376502336759546753777672422333371698380800000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_207 11591875262044596169649898812081378386699912564099170518336130702865608901230371618277486659361983844529184118138209655287011302972190218668508599521821461563608967487959933861224316696399999130974496538384970382436826619184069272571317673407870549951763809627822427856612271212789134566484993298465980376502336759546753777672422333371698380800000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_208,2411110054505276003287178952912926704433581813332627467813915186196046651455917296601717225147292639662070296572747608299698351018215565483049788700538864005230665237495666243134657872851199819242695279984073839546859936790286408694834076068837074389966872402587064994175352412260139989828878606080923918312486045985724785755863845341313263206400000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_208 2411110054505276003287178952912926704433581813332627467813915186196046651455917296601717225147292639662070296572747608299698351018215565483049788700538864005230665237495666243134657872851199819242695279984073839546859936790286408694834076068837074389966872402587064994175352412260139989828878606080923918312486045985724785755863845341313263206400000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_209,503922001391602684687020401158801681226618598986519140773108273914973750154286714989758900055784161689372691983704250134636955362807053185957405838412622577093209034636594244815143495425900762221723313516671432465293726789169859417220321898386948547503076332140696583782648654162369257874235628670913098927309583611016480222975543676334472010137600000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_209 503922001391602684687020401158801681226618598986519140773108273914973750154286714989758900055784161689372691983704250134636955362807053185957405838412622577093209034636594244815143495425900762221723313516671432465293726789169859417220321898386948547503076332140696583782648654162369257874235628670913098927309583611016480222975543676334472010137600000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_210,105823620292236563784274284243348353057589905787169019562352737522144487532400210147849369011714673954768265316577892528273760626189481169051055226066650741189573897273684791411180134039439160066561895838501000817711682625725670477616267598661259194975646029749546282594356217374097544153589482020891750774735012558313460846824864172030239122128896000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_210 105823620292236563784274284243348353057589905787169019562352737522144487532400210147849369011714673954768265316577892528273760626189481169051055226066650741189573897273684791411180134039439160066561895838501000817711682625725670477616267598661259194975646029749546282594356217374097544153589482020891750774735012558313460846824864172030239122128896000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_211,22328783881661914958481873975346502495151470121092663127656427617172486869336444341196216861471796204456103981797935323465763492125980526669772652700063306391000092324747490987759008282321662774044560021923711172537165034028116470777032463317525690139861312277154265627409161865934581816407380706408159413469087649804140238680046340298380454769197056000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_211 22328783881661914958481873975346502495151470121092663127656427617172486869336444341196216861471796204456103981797935323465763492125980526669772652700063306391000092324747490987759008282321662774044560021923711172537165034028116470777032463317525690139861312277154265627409161865934581816407380706408159413469087649804140238680046340298380454769197056000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_212,4733702182912325971198157282773458528972111665671644583063162654840567216299326200333597974632020795344694044141162288574741860330707871653991802372413420954892019572846468089404909755852192508097446724647826768577878987213960691804730882223315446309650598202756704313010742315578131345078364709758529795655446581758477730600169824143256656411069775872000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_212 4733702182912325971198157282773458528972111665671644583063162654840567216299326200333597974632020795344694044141162288574741860330707871653991802372413420954892019572846468089404909755852192508097446724647826768577878987213960691804730882223315446309650598202756704313010742315578131345078364709758529795655446581758477730600169824143256656411069775872000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_213,1008278564960325431865207501230746666671059784788060296192453645481040817071756480671056368596620429408419831402067567466420016250440776662300253905324058663392000169016297703043245777996517004224756152349987101707088224276573627354407677913566190063955577417187178018671288113218141976501691683178566846474610121914555756617836172542513667815557862260736000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_213 1008278564960325431865207501230746666671059784788060296192453645481040817071756480671056368596620429408419831402067567466420016250440776662300253905324058663392000169016297703043245777996517004224756152349987101707088224276573627354407677913566190063955577417187178018671288113218141976501691683178566846474610121914555756617836172542513667815557862260736000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_214,215771612901509642419154405263379786667606793944644903385185080132942734853355886863606062879676771893401843920042459437813883477594326205732254335739348553965888036169487708451254596491254638904097816602897239765316879995186756253843243073503164673686493567278056095995655656228682382971362020200213305145566566089714931916216940924097924912529382523797504000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_214 215771612901509642419154405263379786667606793944644903385185080132942734853355886863606062879676771893401843920042459437813883477594326205732254335739348553965888036169487708451254596491254638904097816602897239765316879995186756253843243073503164673686493567278056095995655656228682382971362020200213305145566566089714931916216940924097924912529382523797504000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_215,46390896773824573120118197131626654133535460698098654227814792228582687993471515675675303519130505957081396442809128779129984947682780134232434682183959939102665927776439857317019738245619747364381030569622906549543129198965152594576297260803180404842596116964782060639065966089166712338842834343045860606296811709288710361986642298681053856193817242616463360000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_215 46390896773824573120118197131626654133535460698098654227814792228582687993471515675675303519130505957081396442809128779129984947682780134232434682183959939102665927776439857317019738245619747364381030569622906549543129198965152594576297260803180404842596116964782060639065966089166712338842834343045860606296811709288710361986642298681053856193817242616463360000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_216,10020433703146107793945530580431357292843659510789309313207995121373860606589847385945865560132189286729581631646771816292076748699480508994205891351735346846175840399711009180476263461053865430706302603038547814701315906976472960428480208333486967446000761264392925098038248675260009865190052218097905890960111329206361438189114736515107632937864524405156085760000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_216 10020433703146107793945530580431357292843659510789309313207995121373860606589847385945865560132189286729581631646771816292076748699480508994205891351735346846175840399711009180476263461053865430706302603038547814701315906976472960428480208333486967446000761264392925098038248675260009865190052218097905890960111329206361438189114736515107632937864524405156085760000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_217,2174434113582705391286180135953604532547074113841280120966134941338127751629996882750252826548685075220319214067349484135380654467787270451742678423326570265620157366737288992163349171048688798463267664859364875790185551813894632412980205208366671935782165194373264746274299962531422140746241331327245578338344158437780432087037897823778356347516601795918870609920000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_217 2174434113582705391286180135953604532547074113841280120966134941338127751629996882750252826548685075220319214067349484135380654467787270451742678423326570265620157366737288992163349171048688798463267664859364875790185551813894632412980205208366671935782165194373264746274299962531422140746241331327245578338344158437780432087037897823778356347516601795918870609920000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_218,474026636761029775300387269637885788095262156817399066370617417211711849855339320439555116187613346398029588666682187541512982673977624958479903896285192317905194305948729000291610119288614158064992350939341542922260450295429029866029684735423934482000512012373371714687797391831850026682680610229339536077759026539436134194974261725583681683758619191510313792962560000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_218 474026636761029775300387269637885788095262156817399066370617417211711849855339320439555116187613346398029588666682187541512982673977624958479903896285192317905194305948729000291610119288614158064992350939341542922260450295429029866029684735423934482000512012373371714687797391831850026682680610229339536077759026539436134194974261725583681683758619191510313792962560000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_219,103811833450665520790784812050696987592862412343010395535165214369364895118319311176262570445087322861168479918003399071591343205601099865907098953286457117621237553002771651063862616124206500616233324855715797899975038614698957540660500957057841651558112130709768405516627628811175155843507053640225358401029226812136513388699363317902826288743137602940758720658800640000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_219 103811833450665520790784812050696987592862412343010395535165214369364895118319311176262570445087322861168479918003399071591343205601099865907098953286457117621237553002771651063862616124206500616233324855715797899975038614698957540660500957057841651558112130709768405516627628811175155843507053640225358401029226812136513388699363317902826288743137602940758720658800640000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_220,22838603359146414573972658651153337270429730715462287017736347161260276926030248458777765497919211029457065581960747795750095505232241970499561769723020565876672261660609763234049775547325430135571331468257475537994508495233770658945310210552725163342784668756149049213658078338458534285571551800849578848226429898670032945513859929938621783523490272646966918544936140800000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_220 22838603359146414573972658651153337270429730715462287017736347161260276926030248458777765497919211029457065581960747795750095505232241970499561769723020565876672261660609763234049775547325430135571331468257475537994508495233770658945310210552725163342784668756149049213658078338458534285571551800849578848226429898670032945513859929938621783523490272646966918544936140800000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_221,5047331342371357620847957561904887536764970488117165430919732722638521200652684909389886175040145637510011493613325262860771106656325475480403151108787545058744569826994757674725000395958920059961264254484902093896786377446663315626913556532152261098755411795108939876218435312799336077111312947987756925458041007606077280958563044516435414158691350254979688998430887116800000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_221 5047331342371357620847957561904887536764970488117165430919732722638521200652684909389886175040145637510011493613325262860771106656325475480403151108787545058744569826994757674725000395958920059961264254484902093896786377446663315626913556532152261098755411795108939876218435312799336077111312947987756925458041007606077280958563044516435414158691350254979688998430887116800000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_222,1120507558006441391828246578742885033161823448362010725664180664425751706544896049884554730858912331527222551582158208355091185677704255556649499546150835003041294501592836203788950087902880253311400664495648264845086575793159256069174809550137801963923701418514184652520492639441452609118711474453282037451685103688549156372800995882648661943229479756605490957651656939929600000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_222 1120507558006441391828246578742885033161823448362010725664180664425751706544896049884554730858912331527222551582158208355091185677704255556649499546150835003041294501592836203788950087902880253311400664495648264845086575793159256069174809550137801963923701418514184652520492639441452609118711474453282037451685103688549156372800995882648661943229479756605490957651656939929600000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_223,249873185435436430377698987059663362395086628984728391823112288166942630559511819124255704981537449930570629002821280463185334406128048989132838398791636205678208673855202473444935869602342296488442348182529563060454306401874514103425982529680729837954985416328663177512069858595443931833472658803081894351725778122546461871134622081830651613340173985723024483556319497604300800000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_223 249873185435436430377698987059663362395086628984728391823112288166942630559511819124255704981537449930570629002821280463185334406128048989132838398791636205678208673855202473444935869602342296488442348182529563060454306401874514103425982529680729837954985416328663177512069858595443931833472658803081894351725778122546461871134622081830651613340173985723024483556319497604300800000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_224,55971593537537760404604573101364593176499404892579159768377152549395149245330647483833277915864388784447820896631966823753514906972682973565755801329326510071918742943565354051665634790924674413411085992886622125541764634019891159167420086648483483701916733257620551762703648325379440730697875571890344334786574299450407459134155346330065961388198972801957484316615567463363379200000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_224 55971593537537760404604573101364593176499404892579159768377152549395149245330647483833277915864388784447820896631966823753514906972682973565755801329326510071918742943565354051665634790924674413411085992886622125541764634019891159167420086648483483701916733257620551762703648325379440730697875571890344334786574299450407459134155346330065961388198972801957484316615567463363379200000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_225,12593608545945996091036028947807033464712366100830310947884859323613908580199395683862487531069487476500759701742192535344540854068853669052295055299098464766181717162302204661624767827958051743017494348399489978246897042654475510812669519495908783832931264982964624146608320873210374164407022003675327475326979217376341678305184952924264841312344768880440433971238502679256760320000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_225 12593608545945996091036028947807033464712366100830310947884859323613908580199395683862487531069487476500759701742192535344540854068853669052295055299098464766181717162302204661624767827958051743017494348399489978246897042654475510812669519495908783832931264982964624146608320873210374164407022003675327475326979217376341678305184952924264841312344768880440433971238502679256760320000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_226,2846155531383795116574142542204389563024994738787650274221978207136743339125063424552922182021704169689171692593735512987866233019560929205818682497596253037157068078680298253527197529118519693921953722738284735083798731639911465443663311406075385146242465886150005057133480517345544561155986972830624009423897303127053219296971799360883854136589917766979538077499901605512027832320000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_226 2846155531383795116574142542204389563024994738787650274221978207136743339125063424552922182021704169689171692593735512987866233019560929205818682497596253037157068078680298253527197529118519693921953722738284735083798731639911465443663311406075385146242465886150005057133480517345544561155986972830624009423897303127053219296971799360883854136589917766979538077499901605512027832320000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_227,646077305624121491462330357080396430806673805704796612248389053020040737981389397373513335318926846519441974218777961448245634895440330929720840926954349439434654453860427703550673839109903970520283495061590634864022312082259902655711571689179112428197039756156051147969300077437438615382409042832551650139224687809841080780412598454920634889005911333104355143592477664451230317936640000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_227 646077305624121491462330357080396430806673805704796612248389053020040737981389397373513335318926846519441974218777961448245634895440330929720840926954349439434654453860427703550673839109903970520283495061590634864022312082259902655711571689179112428197039756156051147969300077437438615382409042832551650139224687809841080780412598454920634889005911333104355143592477664451230317936640000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_228,147305625682299700053411321414330386223921627700693627592632704088569288259756782601161040452715321006432770121881375210200004756160395451976351731345591672191101215480177516409553635317058105278624636874042664748997087154755257805502238345132837633628925064403579661737000417655736004307189261765821776231743228820643766417934072447721904754693347783947792972739084907494880512489553920000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_228 147305625682299700053411321414330386223921627700693627592632704088569288259756782601161040452715321006432770121881375210200004756160395451976351731345591672191101215480177516409553635317058105278624636874042664748997087154755257805502238345132837633628925064403579661737000417655736004307189261765821776231743228820643766417934072447721904754693347783947792972739084907494880512489553920000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_229,33732988281246631312231192603881658445278052743458840718712889236282367011484303215665878263671808510473104357910834923135801089160730558502584546478140492931762178344960651257787782487606306108805041844155770227520332958438954037460012581035419818101023839748419742537773095643163544986346340944373186757069199399927422509706902590528316188824776642524044590757250443816327637360107847680000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_229 33732988281246631312231192603881658445278052743458840718712889236282367011484303215665878263671808510473104357910834923135801089160730558502584546478140492931762178344960651257787782487606306108805041844155770227520332958438954037460012581035419818101023839748419742537773095643163544986346340944373186757069199399927422509706902590528316188824776642524044590757250443816327637360107847680000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_230,7758587304686725201813174298892781442413952130995533365303964524344944412641389739603152000644515957408814002319492032321234250506968028455594445689972313374305301019340949789291189972149450405025159624155827152329676580440959428615802893638146558163235483142136540783687811997927615346859658417205832954125915861983307177232587595821512723429698627780530255874167602077755356592824804966400000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_230 7758587304686725201813174298892781442413952130995533365303964524344944412641389739603152000644515957408814002319492032321234250506968028455594445689972313374305301019340949789291189972149450405025159624155827152329676580440959428615802893638146558163235483142136540783687811997927615346859658417205832954125915861983307177232587595821512723429698627780530255874167602077755356592824804966400000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_231,1792233667382633521618843263044232513197622942259968207385215805123682159320161029848328112148883186161436034535802659466205111867109614573242316954383604389464524535467759401326264883566523043560811873179996072188155290081861628010250468430411854935707396605833540921031884571521279145124581094374547412403086564118143957940727734634769439112260383017302489106932716079961487372942529947238400000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_231 1792233667382633521618843263044232513197622942259968207385215805123682159320161029848328112148883186161436034535802659466205111867109614573242316954383604389464524535467759401326264883566523043560811873179996072188155290081861628010250468430411854935707396605833540921031884571521279145124581094374547412403086564118143957940727734634769439112260383017302489106932716079961487372942529947238400000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_232,415798210832770977015571637026261943061848522604312624113370066788694260962277358924812122018540899189453160012306216996159585953169430580992217533416996218355769692228520181107693452987433346106108354577759088747652027298991897698378108675855550345084116012553381493679397220592936761668902813894894999677516082875409398242248834435266509874044408860014177472808390130551065070522666947759308800000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_232 415798210832770977015571637026261943061848522604312624113370066788694260962277358924812122018540899189453160012306216996159585953169430580992217533416996218355769692228520181107693452987433346106108354577759088747652027298991897698378108675855550345084116012553381493679397220592936761668902813894894999677516082875409398242248834435266509874044408860014177472808390130551065070522666947759308800000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_233,96880983124035637644628191427119032733410705766804841418415225561765762804210624629481224430320029511142586282867348560105183527088477325371186685286160118876894338289245202198092574546071969642723246616617867678202922360665112163722099321474343230404599030924937888027299552398154265468854355637510534924861247309970389790443978423417096800652347264383303351164354900418398161431781398827918950400000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_233 96880983124035637644628191427119032733410705766804841418415225561765762804210624629481224430320029511142586282867348560105183527088477325371186685286160118876894338289245202198092574546071969642723246616617867678202922360665112163722099321474343230404599030924937888027299552398154265468854355637510534924861247309970389790443978423417096800652347264383303351164354900418398161431781398827918950400000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_234,22670150051024339208842996793945853659618105149432332891909162781453188496185286163298606516694886905607365190190959563064612945338703694136857684356961467817193275159683377314353662443780840896397239708288581036699483832395636246310971241224996315914676173236435465798388095261168098119711919219177465172417531870533071210963890951079600651352649259865692984172459046697905169775036847325733034393600000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_234 22670150051024339208842996793945853659618105149432332891909162781453188496185286163298606516694886905607365190190959563064612945338703694136857684356961467817193275159683377314353662443780840896397239708288581036699483832395636246310971241224996315914676173236435465798388095261168098119711919219177465172417531870533071210963890951079600651352649259865692984172459046697905169775036847325733034393600000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_235,5327485261990719714078104246577275610010254710116598229598653253641499296603542248375172531423298422817730819694875497320184042154595368122161555823885944937040419662525593668873110674288497610653351331447816543624378700612974517883078241687874134239948900710562334462621202386374503058132301016506704315518119989575271734576514373503706153067872576068437851280527875974007714897133659121547263082496000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_235 5327485261990719714078104246577275610010254710116598229598653253641499296603542248375172531423298422817730819694875497320184042154595368122161555823885944937040419662525593668873110674288497610653351331447816543624378700612974517883078241687874134239948900710562334462621202386374503058132301016506704315518119989575271734576514373503706153067872576068437851280527875974007714897133659121547263082496000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_236,1257286521829809852522432602192237043962420111587517182185282167859393833998435970616540717415898427784984473447990617367563433948484506876830127174437083005141539040356040105854054119132085436114190914221684704295353373344661986220406465038338295680627940567692710933178603763184382721719223039895582218462276317539764129360057392146874652124017927952151332902204578729865820715723543552685154087469056000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_236 1257286521829809852522432602192237043962420111587517182185282167859393833998435970616540717415898427784984473447990617367563433948484506876830127174437083005141539040356040105854054119132085436114190914221684704295353373344661986220406465038338295680627940567692710933178603763184382721719223039895582218462276317539764129360057392146874652124017927952151332902204578729865820715723543552685154087469056000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_237,297976905673664935047816526719560179419093566446241572177911873782676338657629325036120150027567927385041320207173776316112533845790828129808740140341588672218544752564381505087410826234304248359063246670539274917998749482684890734236332214086176076308821914543172491163329091874698705047455860455252985775559487256924098658333601938809292553392248924659865897822485158978199509626479821986381518730166272000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_237 297976905673664935047816526719560179419093566446241572177911873782676338657629325036120150027567927385041320207173776316112533845790828129808740140341588672218544752564381505087410826234304248359063246670539274917998749482684890734236332214086176076308821914543172491163329091874698705047455860455252985775559487256924098658333601938809292553392248924659865897822485158978199509626479821986381518730166272000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_238,70918503550332254541380333359255322701744268814205494178343025960276968600515779358596595706561166717639834209307358763234783055298217094894480153401298103988013651110322798210803776643764411109457052707588347430483702376879003994748247066952509906161499615661275052896872323866178291801294494788350210614583157967147935480683397261436611627707355244069048083681751467836811483291102197632758801457779572736000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_238 70918503550332254541380333359255322701744268814205494178343025960276968600515779358596595706561166717639834209307358763234783055298217094894480153401298103988013651110322798210803776643764411109457052707588347430483702376879003994748247066952509906161499615661275052896872323866178291801294494788350210614583157967147935480683397261436611627707355244069048083681751467836811483291102197632758801457779572736000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_239,16949522348529408835389899672862022125716880246595113108623983204506195495523271266704586373868118845515920376024458744413113150216273885679780756662910246853135262615367148772382102617859694255160235597113615035885604868074081954744831049001649867572598408143044737642352485404016611740509384254415700336885374754148356579883331945483350179022057903332502491999938600812997944506573425234229353548409317883904000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_239 16949522348529408835389899672862022125716880246595113108623983204506195495523271266704586373868118845515920376024458744413113150216273885679780756662910246853135262615367148772382102617859694255160235597113615035885604868074081954744831049001649867572598408143044737642352485404016611740509384254415700336885374754148356579883331945483350179022057903332502491999938600812997944506573425234229353548409317883904000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_240,4067885363647058120493575921486885310172051259182827146069755969081486918925585104009100729728348522923820890245870098659147156051905732563147381599098459244752463027688115705371704628286326621238456543307267608612545168337779669138759451760395968217423617954330737034164596496963986817722252221059768080852489940995605579171999666916004042965293896799800598079985264195119506681577622056215044851618236292136960000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_240 4067885363647058120493575921486885310172051259182827146069755969081486918925585104009100729728348522923820890245870098659147156051905732563147381599098459244752463027688115705371704628286326621238456543307267608612545168337779669138759451760395968217423617954330737034164596496963986817722252221059768080852489940995605579171999666916004042965293896799800598079985264195119506681577622056215044851618236292136960000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_241,980360372638941007038951797078339359751464353463061342202811188548638347461066010066193275864531994024640834549254693776854464608509281547718518965382728677985343589672835884994580815417004715718468026937051493675623385569404900262441027874255428340399091926993707625233667755768320823071062785275404107485450075779940944580451919726756974354635829128751944137276448671023801110260206915547825809239994946405007360000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_241 980360372638941007038951797078339359751464353463061342202811188548638347461066010066193275864531994024640834549254693776854464608509281547718518965382728677985343589672835884994580815417004715718468026937051493675623385569404900262441027874255428340399091926993707625233667755768320823071062785275404107485450075779940944580451919726756974354635829128751944137276448671023801110260206915547825809239994946405007360000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_242,237247210178623723703426334892958125059854373538060844813080307628770480085577974436018772759216742553963081960919635893998780435259246134547881589622620340072453148700826284168688557330915141203869262518766461469500859307795985863510728745569813658376580246332477245306547596895933639183197194036647794011478918338745708588469364573875187793821870649157970481220900578387759868682970073562573845836078777030011781120000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_242 237247210178623723703426334892958125059854373538060844813080307628770480085577974436018772759216742553963081960919635893998780435259246134547881589622620340072453148700826284168688557330915141203869262518766461469500859307795985863510728745569813658376580246332477245306547596895933639183197194036647794011478918338745708588469364573875187793821870649157970481220900578387759868682970073562573845836078777030011781120000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_243,57651072073405564859932599378988824389544612769748785289578514753791226660795447787952561780489668440613028916503471522241703645767996810695135226278296742637606115134300787052991319431412379312540230792060250137088708811794424564833107085173464718985508999858791970609491066045711874321516918150905413944789377156315207186998055591451670633898714567745386826936678840548225648089961727875705444538167142818292862812160000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_243 57651072073405564859932599378988824389544612769748785289578514753791226660795447787952561780489668440613028916503471522241703645767996810695135226278296742637606115134300787052991319431412379312540230792060250137088708811794424564833107085173464718985508999858791970609491066045711874321516918150905413944789377156315207186998055591451670633898714567745386826936678840548225648089961727875705444538167142818292862812160000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_244,14066861585910957825823554248473273151048885515818703610657157599925059305234089260260425074439479099509579055626847051426975689567391221809612995211904405203575892092769392040929881941264620552259816313262701033449644950077839593819278128782325391432464195965545240828715820115153697334450128028820921002528608026140910553627525564314207634671286354529874385772549637093767058133950661601672128467312782847663458526167040000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_244 14066861585910957825823554248473273151048885515818703610657157599925059305234089260260425074439479099509579055626847051426975689567391221809612995211904405203575892092769392040929881941264620552259816313262701033449644950077839593819278128782325391432464195965545240828715820115153697334450128028820921002528608026140910553627525564314207634671286354529874385772549637093767058133950661601672128467312782847663458526167040000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_245,3446381088548184667326770790875951922006976951375582384611003611981639529782351868763804143237672379379846868628577527599609043944010849343355183826916579274876093562728501050027821075609832035303654996749361753195163012769070700485723141551669720900953728011558584003035375928212655846940281367061125645619508966404523085638743763256980870494465156859819224514274661087972929242817912092409671474491631797677547338910924800000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_245 3446381088548184667326770790875951922006976951375582384611003611981639529782351868763804143237672379379846868628577527599609043944010849343355183826916579274876093562728501050027821075609832035303654996749361753195163012769070700485723141551669720900953728011558584003035375928212655846940281367061125645619508966404523085638743763256980870494465156859819224514274661087972929242817912092409671474491631797677547338910924800000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_246,847809747782853428162385614555484172813716330038393266614306888547483324326458559715895819236467405327442329682630071789503824810226668938465375221421478501619519016431211258306843984600018680684699129200342991286010101141191392319487892821710751341634617090843411664746702478340313338347309216297036908822399205735512679067130965761217294141638428587515529230511566627641340593733206374732779182724941422228676645372087500800000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_246 847809747782853428162385614555484172813716330038393266614306888547483324326458559715895819236467405327442329682630071789503824810226668938465375221421478501619519016431211258306843984600018680684699129200342991286010101141191392319487892821710751341634617090843411664746702478340313338347309216297036908822399205735512679067130965761217294141638428587515529230511566627641340593733206374732779182724941422228676645372087500800000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_247,209409007702364796756109246795204590684987933519483136853733801471228381108635264249826267351407449115878255431609627732007444728125987227800947679691105189900021197058509180801790464196204614129120684912484718847644494981874273902913509526962555581383750421438322681192435512150057394571785376425368116479132603816671631729581348543020671652984691861116335719936356957027411126652101974558996458133060531290483131406905612697600000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_247 209409007702364796756109246795204590684987933519483136853733801471228381108635264249826267351407449115878255431609627732007444728125987227800947679691105189900021197058509180801790464196204614129120684912484718847644494981874273902913509526962555581383750421438322681192435512150057394571785376425368116479132603816671631729581348543020671652984691861116335719936356957027411126652101974558996458133060531290483131406905612697600000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_248,51933433910186469595515093205210738489877007512831817939725982764864638514941545533956914303149047380737807347039187677537846292575244832494635024563394087095205256870510276838844035120658744304021929858296210274215834755504819927922550362686713784183170104516704024935724007013214233853802773353491292886824885746534564668936174438669126569940203581556851258544216525342797959409721289690631121616999011760039816588912591949004800000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_248 51933433910186469595515093205210738489877007512831817939725982764864638514941545533956914303149047380737807347039187677537846292575244832494635024563394087095205256870510276838844035120658744304021929858296210274215834755504819927922550362686713784183170104516704024935724007013214233853802773353491292886824885746534564668936174438669126569940203581556851258544216525342797959409721289690631121616999011760039816588912591949004800000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_249,12931425043636430929283258208097473883979374870695122666991769708451294990220444837955271661484112797803714029412757731706923726851235963291164121116285127686706108960757058932872164745044027331701460534715756358279742854120700162052715040308991732261609356024659302208995277746290344229596890565019331928819396550887106602565107435228612515915110691807655963377509914810356691893020601132967149282632753928249914330639235395302195200000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_249 12931425043636430929283258208097473883979374870695122666991769708451294990220444837955271661484112797803714029412757731706923726851235963291164121116285127686706108960757058932872164745044027331701460534715756358279742854120700162052715040308991732261609356024659302208995277746290344229596890565019331928819396550887106602565107435228612515915110691807655963377509914810356691893020601132967149282632753928249914330639235395302195200000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_250,3232856260909107732320814552024368470994843717673780666747942427112823747555111209488817915371028199450928507353189432926730931712808990822791030279071281921676527240189264733218041186261006832925365133678939089569935713530175040513178760077247933065402339006164825552248819436572586057399222641254832982204849137721776650641276858807153128978777672951913990844377478702589172973255150283241787320658188482062478582659808848825548800000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_250 3232856260909107732320814552024368470994843717673780666747942427112823747555111209488817915371028199450928507353189432926730931712808990822791030279071281921676527240189264733218041186261006832925365133678939089569935713530175040513178760077247933065402339006164825552248819436572586057399222641254832982204849137721776650641276858807153128978777672951913990844377478702589172973255150283241787320658188482062478582659808848825548800000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_251,811446921488186040812524452558116486219705773136118947353733549205318760636332913581693296758128078062183055345650547664609463859915056696520548600046891762340808337287505448037728337751512715064266648553413711482053864096073935168807868779389231199415987090547371213614453678579719100407204882954963078533417133568165939310960491560595435373673195910930411701938747154349882416287042721093688617485205308997682124247612021055212748800000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_251 811446921488186040812524452558116486219705773136118947353733549205318760636332913581693296758128078062183055345650547664609463859915056696520548600046891762340808337287505448037728337751512715064266648553413711482053864096073935168807868779389231199415987090547371213614453678579719100407204882954963078533417133568165939310960491560595435373673195910930411701938747154349882416287042721093688617485205308997682124247612021055212748800000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_252,204484624215022882284756162044645354527365854830301974733140854399740327680355894222586710783048275671670129947103938011481584892698594287523178247211816724109883700996451372905507541113381204196195195435460255293477573752210631662539582932406086262252828746817937545830842327002089213302615630504650695790421117659177816706362043873270049714165645369554463748888564282896170368904334765715609531606271737867415895310398229305913612697600000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_252 204484624215022882284756162044645354527365854830301974733140854399740327680355894222586710783048275671670129947103938011481584892698594287523178247211816724109883700996451372905507541113381204196195195435460255293477573752210631662539582932406086262252828746817937545830842327002089213302615630504650695790421117659177816706362043873270049714165645369554463748888564282896170368904334765715609531606271737867415895310398229305913612697600000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_253,51734609926400789218043308997295274695423561272066399607484636163134302903130041238314437828111213744932542876617296316904840977852744354743364096544589631199800576352102197345093407901685444661637384445171444589249826159309289810622514481898739824349965672944938199095203108731528570965561754517676626034976542767771987626709597099937322577683908278497279328468806763572731103332796695726049211496386749680456221513530752014396144012492800000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_253 51734609926400789218043308997295274695423561272066399607484636163134302903130041238314437828111213744932542876617296316904840977852744354743364096544589631199800576352102197345093407901685444661637384445171444589249826159309289810622514481898739824349965672944938199095203108731528570965561754517676626034976542767771987626709597099937322577683908278497279328468806763572731103332796695726049211496386749680456221513530752014396144012492800000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_254,13140590921305800461383000485312999772637584563104865500301097585436112937395030474531867208340248291212865890660793264493829608374597066104814480522325766324749346393433958125653725607028102944055895649073546925669455844464559611898118678402279915384891280928014302570181589617808257025252685647489863012884041863014084857184237663384079934731712702738308949431076917947473700246530360714416499720082234418835880264436811011656620579173171200000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_254 13140590921305800461383000485312999772637584563104865500301097585436112937395030474531867208340248291212865890660793264493829608374597066104814480522325766324749346393433958125653725607028102944055895649073546925669455844464559611898118678402279915384891280928014302570181589617808257025252685647489863012884041863014084857184237663384079934731712702738308949431076917947473700246530360714416499720082234418835880264436811011656620579173171200000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_255,3350850684932979117652665123754814942022584063591740702576779884286208799035732771005626138126763314259280802118502282445926550135522251856727692533193070412811083330325659322041700029792166250734253390513754466045711240338462701034020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_255 3350850684932979117652665123754814942022584063591740702576779884286208799035732771005626138126763314259280802118502282445926550135522251856727692533193070412811083330325659322041700029792166250734253390513754466045711240338462701034020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_256,857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_256,857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000
XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_4 :1:factorial_4 -
#close XXXX-XX-XX-XX-XX-XX

View file

@ -0,0 +1 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.

View file

@ -0,0 +1,14 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
#separator \x09
#set_separator ,
#empty_field (empty)
#unset_field -
#path resp
#open XXXX-XX-XX-XX-XX-XX
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value
#types time string addr port addr port vector[string] string string
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 PING - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 PING - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 SET,HI,3 HI 3
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 GET,HI HI -
#close XXXX-XX-XX-XX-XX-XX

View file

@ -0,0 +1 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.

View file

@ -0,0 +1,13 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
#separator \x09
#set_separator ,
#empty_field (empty)
#unset_field -
#path resp
#open XXXX-XX-XX-XX-XX-XX
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value
#types time string addr port addr port vector[string] string string
XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 ::1 51122 ::1 6379 PING - -
XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 ::1 51122 ::1 6379 PING - -
XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 ::1 51122 ::1 6379 PING - -
#close XXXX-XX-XX-XX-XX-XX

View file

@ -0,0 +1 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.

View file

@ -0,0 +1,14 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
#separator \x09
#set_separator ,
#empty_field (empty)
#unset_field -
#path resp
#open XXXX-XX-XX-XX-XX-XX
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value
#types time string addr port addr port vector[string] string string
XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 127.0.0.1 53426 127.0.0.1 6379 subscribe,my_channel - -
XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 127.0.0.1 53426 127.0.0.1 6379 message,my_channel,hi there! - -
XXXXXXXXXX.XXXXXX CUM0KZ3MLUfNB0cl11 127.0.0.1 53450 127.0.0.1 6379 PUBLISH,my_channel,1 - -
XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 127.0.0.1 53426 127.0.0.1 6379 message,my_channel,1 - -
#close XXXX-XX-XX-XX-XX-XX

View file

@ -0,0 +1,4 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
Key: test Value: hi
Key: one:1 Value: 2
Key: two:2 Value: three

View file

@ -1,15 +1,4 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. ### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=SET, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>] SET: hi:2 2
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=hi:2, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>] SET: hi:3 sup
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=2, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>] GET: [key=hi:3]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=<uninitialized>, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=OK, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=<uninitialized>, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=SET, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=hi:3, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=sup, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=<uninitialized>, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=OK, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=<uninitialized>, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=GET, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=hi:3, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=<uninitialized>, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]
Testing RESP: [simple_string=<uninitialized>, simple_error=<uninitialized>, i=<uninitialized>, bulk_string=sup, is_null=F, boolean=<uninitialized>, double_=<uninitialized>, big_num=<uninitialized>, bulk_error=<uninitialized>, verbatim_string=<uninitialized>]

View file

@ -5,20 +5,9 @@
#unset_field - #unset_field -
#path resp #path resp
#open XXXX-XX-XX-XX-XX-XX #open XXXX-XX-XX-XX-XX-XX
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p resp_data.simple_string resp_data.simple_error resp_data.i resp_data.bulk_string resp_data.is_null resp_data.boolean resp_data.double_ resp_data.big_num resp_data.bulk_error resp_data.verbatim_string #fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value
#types time string addr port addr port string string int string bool bool double string string string #types time string addr port addr port vector[string] string string
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - SET F - - - - - XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 SET,hi:2,2 hi:2 2
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - hi:2 F - - - - - XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 SET,hi:3,sup hi:3 sup
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - 2 F - - - - - XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 GET,hi:3 hi:3 -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - - F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 OK - - - F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - SET F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - hi:3 F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - sup F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - - F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 OK - - - F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - GET F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - hi:3 F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - - F - - - - -
XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - sup F - - - - -
#close XXXX-XX-XX-XX-XX-XX #close XXXX-XX-XX-XX-XX-XX

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,13 @@
# @TEST-DOC: Test Zeek parsing a trace file made with bulk-created SET commands
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/bulk-loading.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
# The bulk-loading functionality just sends the serialized form from some ruby
# code directly to the server, but it's useful to see if that trace might come
# up with something different. See:
# https://redis.io/docs/latest/develop/use/patterns/bulk-loading/
event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand)
{
print fmt("SET: %s %s", command$key, command$value);
}

View file

@ -0,0 +1,15 @@
# @TEST-DOC: Test Redis traffic from a django app using Redis (in the cloud) as a cache
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/django-cloud.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
# @TEST-EXEC: btest-diff resp.log
redef RESP::ports += {
10625/tcp,
};
event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand)
{
# Print the whole command because these have extra data that's worth capturing.
print fmt("SET: %s %s expires in %d milliseconds", command$key, command$value, command$px);
}

View file

@ -0,0 +1,11 @@
# @TEST-DOC: Test Redis traffic from a django app using Redis as a cache
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/django-cache.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
# @TEST-EXEC: btest-diff resp.log
event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand)
{
# Print the whole command because these have extra data that's worth capturing.
print fmt("SET: %s %s expires in %d milliseconds", command$key, command$value, command$px);
}

View file

@ -0,0 +1,18 @@
# @TEST-DOC: Test Zeek parsing "pipelined" data responses
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/pipeline-with-commands.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
# @TEST-EXEC: btest-diff resp.log
# Sometimes commands aren't serialized, like when pipelining. This still works! So we
# should handle this. This particular example has a few commands, amongst them a SET and
# a GET.
event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand)
{
print fmt("SET: %s %s", command$key, command$value);
}
event RESP::get_command(c: connection, is_orig: bool, command: RESP::GetCommand)
{
print fmt("GET: %s", command);
}

View file

@ -0,0 +1,12 @@
# @TEST-DOC: Test Zeek parsing "pipelined" data responses
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/pipelining-example.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
# @TEST-EXEC: btest-diff resp.log
# Testing the example of "pipelining" in REDIS docs:
# https://redis.io/docs/latest/develop/use/pipelining/
# Namely sending three PINGs. This does not get sent as RESP data, but we should
# be able to skip it and get the responses, which are properly encoded.
#
# Also, you can send serialized data this way - that's kinda what the bulk test does.

View file

@ -0,0 +1,9 @@
# @TEST-DOC: Test Zeek parsing pubsub commands
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/pubsub.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
# @TEST-EXEC: btest-diff resp.log
# Testing the example of pub sub in REDIS docs:
# https://redis.io/docs/latest/develop/interact/pubsub/
# These are just commands between two different clients, one PUBLISH and one SUBSCRIBE.

View file

@ -0,0 +1,9 @@
# @TEST-DOC: Test Zeek parsing SET commands
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/set.trace base/protocols/redis %INPUT >output
# @TEST-EXEC: btest-diff output
event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand)
{
print fmt("Key: %s Value: %s", command$key, command$value);
}

View file

@ -0,0 +1,6 @@
# @TEST-DOC: Test Zeek with RESP over TLS so it doesn't get gibberish
#
# @TEST-EXEC: zeek -Cr $TRACES/redis/tls.trace base/protocols/redis %INPUT >output
# @TEST-EXEC-FAIL: test -f resp.log
# The logs should probably be empty since it's all encrypted

View file

@ -4,7 +4,12 @@
# @TEST-EXEC: btest-diff output # @TEST-EXEC: btest-diff output
# @TEST-EXEC: btest-diff resp.log # @TEST-EXEC: btest-diff resp.log
event RESP::data(c: connection, payload: RESP::RESPData) event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand)
{ {
print fmt("Testing RESP: %s", payload); print fmt("SET: %s %s", command$key, command$value);
}
event RESP::get_command(c: connection, is_orig: bool, command: RESP::GetCommand)
{
print fmt("GET: %s", command);
} }