node version detection
This commit is contained in:
parent
84b11cccfb
commit
4b5f95a337
16 changed files with 456 additions and 414 deletions
|
@ -3,11 +3,15 @@
|
|||
const net = require('net'),
|
||||
tls = require('tls'),
|
||||
eventParser = require('./eventParser.js'),
|
||||
Events = require('event-pubsub'),
|
||||
Message = require('js-message'),
|
||||
fs = require('fs'),
|
||||
Queue = require('js-queue');
|
||||
|
||||
let Events = require('event-pubsub/es5');
|
||||
if(process.version[1]>4){
|
||||
Events = require('event-pubsub');
|
||||
}
|
||||
|
||||
class Client extends Events{
|
||||
constructor(config,log){
|
||||
super();
|
||||
|
|
|
@ -5,9 +5,13 @@ const net = require('net'),
|
|||
fs = require('fs'),
|
||||
dgram = require('dgram'),
|
||||
eventParser = require('./eventParser.js'),
|
||||
Events = require('event-pubsub'),
|
||||
Message = require('js-message');
|
||||
|
||||
let Events = require('event-pubsub/es5');
|
||||
if(process.version[1]>4){
|
||||
Events = require('event-pubsub');
|
||||
}
|
||||
|
||||
class Server extends Events{
|
||||
constructor(path,config,log,port){
|
||||
super();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "node-ipc",
|
||||
"version": "8.8.0",
|
||||
"version": "8.9.0",
|
||||
"description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",
|
||||
"main": "node-ipc.js",
|
||||
"directories": {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -20,14 +20,14 @@
|
|||
</h1>
|
||||
<div class='clearfix'>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">67.31% </span>
|
||||
<span class="strong">67.3% </span>
|
||||
<span class="quiet">Statements</span>
|
||||
<span class='fraction'>278/413</span>
|
||||
<span class='fraction'>282/419</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">56.28% </span>
|
||||
<span class="strong">56.16% </span>
|
||||
<span class="quiet">Branches</span>
|
||||
<span class='fraction'>121/215</span>
|
||||
<span class='fraction'>123/219</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">85.37% </span>
|
||||
|
@ -35,9 +35,9 @@
|
|||
<span class='fraction'>35/41</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">67.31% </span>
|
||||
<span class="strong">67.3% </span>
|
||||
<span class="quiet">Lines</span>
|
||||
<span class='fraction'>278/413</span>
|
||||
<span class='fraction'>282/419</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -75,13 +75,13 @@
|
|||
<td class="file medium" data-value="node-ipc/dao/"><a href="node-ipc/dao/index.html">node-ipc/dao/</a></td>
|
||||
<td data-value="66.67" class="pic medium"><div class="chart"><div class="cover-fill" style="width: 66%;"></div><div class="cover-empty" style="width:34%;"></div></div></td>
|
||||
<td data-value="66.67" class="pct medium">66.67%</td>
|
||||
<td data-value="264" class="abs medium">176/264</td>
|
||||
<td data-value="53.73" class="pct medium">53.73%</td>
|
||||
<td data-value="134" class="abs medium">72/134</td>
|
||||
<td data-value="270" class="abs medium">180/270</td>
|
||||
<td data-value="53.62" class="pct medium">53.62%</td>
|
||||
<td data-value="138" class="abs medium">74/138</td>
|
||||
<td data-value="83.33" class="pct high">83.33%</td>
|
||||
<td data-value="30" class="abs high">25/30</td>
|
||||
<td data-value="66.67" class="pct medium">66.67%</td>
|
||||
<td data-value="264" class="abs medium">176/264</td>
|
||||
<td data-value="270" class="abs medium">180/270</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
@ -116,7 +116,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="prettify.js"></script>
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
</h1>
|
||||
<div class='clearfix'>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">70.83% </span>
|
||||
<span class="strong">70.71% </span>
|
||||
<span class="quiet">Statements</span>
|
||||
<span class='fraction'>68/96</span>
|
||||
<span class='fraction'>70/99</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">51.22% </span>
|
||||
<span class="strong">51.16% </span>
|
||||
<span class="quiet">Branches</span>
|
||||
<span class='fraction'>21/41</span>
|
||||
<span class='fraction'>22/43</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">100% </span>
|
||||
|
@ -35,9 +35,9 @@
|
|||
<span class='fraction'>9/9</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">70.83% </span>
|
||||
<span class="strong">70.71% </span>
|
||||
<span class="quiet">Lines</span>
|
||||
<span class='fraction'>68/96</span>
|
||||
<span class='fraction'>70/99</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -276,7 +276,11 @@
|
|||
231
|
||||
232
|
||||
233
|
||||
234</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
||||
234
|
||||
235
|
||||
236
|
||||
237
|
||||
238</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-yes">1×</span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
|
@ -285,6 +289,10 @@
|
|||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-yes">1×</span>
|
||||
<span class="cline-any cline-yes">1×</span>
|
||||
<span class="cline-any cline-no"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
|
@ -514,11 +522,15 @@
|
|||
const net = require('net'),
|
||||
tls = require('tls'),
|
||||
eventParser = require('./eventParser.js'),
|
||||
Events = require('event-pubsub'),
|
||||
Message = require('js-message'),
|
||||
fs = require('fs'),
|
||||
Queue = require('js-queue');
|
||||
|
||||
let Events = require('event-pubsub/es5');
|
||||
<span class="missing-if-branch" title="if path not taken" >I</span>if(process.version[1]>4){
|
||||
<span class="cstat-no" title="statement not covered" > Events = require('event-pubsub');</span>
|
||||
}
|
||||
|
||||
class Client extends Events{
|
||||
constructor(config,log){
|
||||
super();
|
||||
|
@ -748,7 +760,7 @@ module.exports=Client;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -130,7 +130,7 @@ module.exports=parser;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -22,12 +22,12 @@
|
|||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">66.67% </span>
|
||||
<span class="quiet">Statements</span>
|
||||
<span class='fraction'>176/264</span>
|
||||
<span class='fraction'>180/270</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">53.73% </span>
|
||||
<span class="strong">53.62% </span>
|
||||
<span class="quiet">Branches</span>
|
||||
<span class='fraction'>72/134</span>
|
||||
<span class='fraction'>74/138</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">83.33% </span>
|
||||
|
@ -37,7 +37,7 @@
|
|||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">66.67% </span>
|
||||
<span class="quiet">Lines</span>
|
||||
<span class='fraction'>176/264</span>
|
||||
<span class='fraction'>180/270</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -60,15 +60,15 @@
|
|||
</thead>
|
||||
<tbody><tr>
|
||||
<td class="file medium" data-value="client.js"><a href="client.js.html">client.js</a></td>
|
||||
<td data-value="70.83" class="pic medium"><div class="chart"><div class="cover-fill" style="width: 70%;"></div><div class="cover-empty" style="width:30%;"></div></div></td>
|
||||
<td data-value="70.83" class="pct medium">70.83%</td>
|
||||
<td data-value="96" class="abs medium">68/96</td>
|
||||
<td data-value="51.22" class="pct medium">51.22%</td>
|
||||
<td data-value="41" class="abs medium">21/41</td>
|
||||
<td data-value="70.71" class="pic medium"><div class="chart"><div class="cover-fill" style="width: 70%;"></div><div class="cover-empty" style="width:30%;"></div></div></td>
|
||||
<td data-value="70.71" class="pct medium">70.71%</td>
|
||||
<td data-value="99" class="abs medium">70/99</td>
|
||||
<td data-value="51.16" class="pct medium">51.16%</td>
|
||||
<td data-value="43" class="abs medium">22/43</td>
|
||||
<td data-value="100" class="pct high">100%</td>
|
||||
<td data-value="9" class="abs high">9/9</td>
|
||||
<td data-value="70.83" class="pct medium">70.83%</td>
|
||||
<td data-value="96" class="abs medium">68/96</td>
|
||||
<td data-value="70.71" class="pct medium">70.71%</td>
|
||||
<td data-value="99" class="abs medium">70/99</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
@ -86,15 +86,15 @@
|
|||
|
||||
<tr>
|
||||
<td class="file medium" data-value="socketServer.js"><a href="socketServer.js.html">socketServer.js</a></td>
|
||||
<td data-value="62.58" class="pic medium"><div class="chart"><div class="cover-fill" style="width: 62%;"></div><div class="cover-empty" style="width:38%;"></div></div></td>
|
||||
<td data-value="62.58" class="pct medium">62.58%</td>
|
||||
<td data-value="155" class="abs medium">97/155</td>
|
||||
<td data-value="55.81" class="pct medium">55.81%</td>
|
||||
<td data-value="86" class="abs medium">48/86</td>
|
||||
<td data-value="62.66" class="pic medium"><div class="chart"><div class="cover-fill" style="width: 62%;"></div><div class="cover-empty" style="width:38%;"></div></div></td>
|
||||
<td data-value="62.66" class="pct medium">62.66%</td>
|
||||
<td data-value="158" class="abs medium">99/158</td>
|
||||
<td data-value="55.68" class="pct medium">55.68%</td>
|
||||
<td data-value="88" class="abs medium">49/88</td>
|
||||
<td data-value="73.68" class="pct medium">73.68%</td>
|
||||
<td data-value="19" class="abs medium">14/19</td>
|
||||
<td data-value="62.58" class="pct medium">62.58%</td>
|
||||
<td data-value="155" class="abs medium">97/155</td>
|
||||
<td data-value="62.66" class="pct medium">62.66%</td>
|
||||
<td data-value="158" class="abs medium">99/158</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
|
@ -103,7 +103,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
</h1>
|
||||
<div class='clearfix'>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">62.58% </span>
|
||||
<span class="strong">62.66% </span>
|
||||
<span class="quiet">Statements</span>
|
||||
<span class='fraction'>97/155</span>
|
||||
<span class='fraction'>99/158</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">55.81% </span>
|
||||
<span class="strong">55.68% </span>
|
||||
<span class="quiet">Branches</span>
|
||||
<span class='fraction'>48/86</span>
|
||||
<span class='fraction'>49/88</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">73.68% </span>
|
||||
|
@ -35,9 +35,9 @@
|
|||
<span class='fraction'>14/19</span>
|
||||
</div>
|
||||
<div class='fl pad1y space-right2'>
|
||||
<span class="strong">62.58% </span>
|
||||
<span class="strong">62.66% </span>
|
||||
<span class="quiet">Lines</span>
|
||||
<span class='fraction'>97/155</span>
|
||||
<span class='fraction'>99/158</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -432,7 +432,11 @@
|
|||
387
|
||||
388
|
||||
389
|
||||
390</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
||||
390
|
||||
391
|
||||
392
|
||||
393
|
||||
394</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-yes">1×</span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
|
@ -441,6 +445,10 @@
|
|||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-yes">1×</span>
|
||||
<span class="cline-any cline-yes">1×</span>
|
||||
<span class="cline-any cline-no"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
<span class="cline-any cline-neutral"> </span>
|
||||
|
@ -828,9 +836,13 @@ const net = require('net'),
|
|||
fs = require('fs'),
|
||||
dgram = require('dgram'),
|
||||
eventParser = require('./eventParser.js'),
|
||||
Events = require('event-pubsub'),
|
||||
Message = require('js-message');
|
||||
|
||||
let Events = require('event-pubsub/es5');
|
||||
<span class="missing-if-branch" title="if path not taken" >I</span>if(process.version[1]>4){
|
||||
<span class="cstat-no" title="statement not covered" > Events = require('event-pubsub');</span>
|
||||
}
|
||||
|
||||
class Server extends Events{
|
||||
constructor(path,config,log,port){
|
||||
super();
|
||||
|
@ -1216,7 +1228,7 @@ module.exports=Server;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -466,7 +466,7 @@ module.exports=Defaults;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../prettify.js"></script>
|
||||
|
|
|
@ -112,7 +112,7 @@ module.exports=new IPCModule;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../prettify.js"></script>
|
||||
|
|
|
@ -1063,7 +1063,7 @@ module.exports=IPC;
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
</div><!-- /wrapper -->
|
||||
<div class='footer quiet pad2 space-top1 center small'>
|
||||
Code coverage
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Sep 30 2016 06:11:18 GMT-0700 (PDT)
|
||||
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Oct 03 2016 13:33:38 GMT-0700 (PDT)
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../prettify.js"></script>
|
||||
|
|
|
@ -279,15 +279,15 @@ BRH:4
|
|||
end_of_record
|
||||
TN:
|
||||
SF:/home/ssmp/git/node-ipc/dao/client.js
|
||||
FN:12,(anonymous_1)
|
||||
FN:31,emit
|
||||
FN:54,syncEmit
|
||||
FN:59,connect
|
||||
FN:126,(anonymous_5)
|
||||
FN:135,connectionMade
|
||||
FN:144,connectionClosed
|
||||
FN:170,retryTimeout
|
||||
FN:183,(anonymous_9)
|
||||
FN:16,(anonymous_1)
|
||||
FN:35,emit
|
||||
FN:58,syncEmit
|
||||
FN:63,connect
|
||||
FN:130,(anonymous_5)
|
||||
FN:139,connectionMade
|
||||
FN:148,connectionClosed
|
||||
FN:174,retryTimeout
|
||||
FN:187,(anonymous_9)
|
||||
FNF:9
|
||||
FNH:9
|
||||
FNDA:7,(anonymous_1)
|
||||
|
@ -300,146 +300,151 @@ FNDA:13,connectionClosed
|
|||
FNDA:6,retryTimeout
|
||||
FNDA:7,(anonymous_9)
|
||||
DA:3,1
|
||||
DA:13,7
|
||||
DA:14,7
|
||||
DA:31,1
|
||||
DA:32,7
|
||||
DA:34,7
|
||||
DA:35,7
|
||||
DA:10,1
|
||||
DA:11,1
|
||||
DA:12,0
|
||||
DA:17,7
|
||||
DA:18,7
|
||||
DA:35,1
|
||||
DA:36,7
|
||||
DA:38,7
|
||||
DA:39,0
|
||||
DA:41,7
|
||||
DA:44,7
|
||||
DA:45,1
|
||||
DA:46,1
|
||||
DA:49,6
|
||||
DA:54,1
|
||||
DA:55,6
|
||||
DA:56,6
|
||||
DA:59,1
|
||||
DA:61,13
|
||||
DA:63,13
|
||||
DA:64,13
|
||||
DA:65,0
|
||||
DA:66,0
|
||||
DA:69,13
|
||||
DA:70,7
|
||||
DA:72,7
|
||||
DA:39,7
|
||||
DA:40,7
|
||||
DA:42,7
|
||||
DA:43,0
|
||||
DA:45,7
|
||||
DA:48,7
|
||||
DA:49,1
|
||||
DA:50,1
|
||||
DA:53,6
|
||||
DA:58,1
|
||||
DA:59,6
|
||||
DA:60,6
|
||||
DA:63,1
|
||||
DA:65,13
|
||||
DA:67,13
|
||||
DA:68,13
|
||||
DA:69,0
|
||||
DA:70,0
|
||||
DA:73,13
|
||||
DA:74,7
|
||||
DA:75,0
|
||||
DA:76,0
|
||||
DA:77,0
|
||||
DA:79,7
|
||||
DA:85,6
|
||||
DA:86,6
|
||||
DA:87,6
|
||||
DA:94,0
|
||||
DA:95,0
|
||||
DA:96,0
|
||||
DA:76,7
|
||||
DA:78,7
|
||||
DA:79,0
|
||||
DA:80,0
|
||||
DA:81,0
|
||||
DA:83,7
|
||||
DA:89,6
|
||||
DA:90,6
|
||||
DA:91,6
|
||||
DA:98,0
|
||||
DA:99,0
|
||||
DA:101,0
|
||||
DA:100,0
|
||||
DA:102,0
|
||||
DA:103,0
|
||||
DA:105,0
|
||||
DA:106,0
|
||||
DA:107,0
|
||||
DA:113,0
|
||||
DA:114,0
|
||||
DA:116,0
|
||||
DA:122,13
|
||||
DA:124,13
|
||||
DA:127,10
|
||||
DA:128,10
|
||||
DA:133,13
|
||||
DA:136,3
|
||||
DA:137,3
|
||||
DA:138,3
|
||||
DA:142,13
|
||||
DA:145,13
|
||||
DA:109,0
|
||||
DA:110,0
|
||||
DA:111,0
|
||||
DA:117,0
|
||||
DA:118,0
|
||||
DA:120,0
|
||||
DA:126,13
|
||||
DA:128,13
|
||||
DA:131,10
|
||||
DA:132,10
|
||||
DA:137,13
|
||||
DA:140,3
|
||||
DA:141,3
|
||||
DA:142,3
|
||||
DA:146,13
|
||||
DA:149,13
|
||||
DA:155,7
|
||||
DA:156,7
|
||||
DA:162,7
|
||||
DA:163,7
|
||||
DA:164,7
|
||||
DA:153,13
|
||||
DA:159,7
|
||||
DA:160,7
|
||||
DA:166,7
|
||||
DA:169,6
|
||||
DA:171,6
|
||||
DA:172,6
|
||||
DA:177,6
|
||||
DA:181,13
|
||||
DA:184,7
|
||||
DA:185,7
|
||||
DA:186,0
|
||||
DA:167,7
|
||||
DA:168,7
|
||||
DA:170,7
|
||||
DA:173,6
|
||||
DA:175,6
|
||||
DA:176,6
|
||||
DA:181,6
|
||||
DA:185,13
|
||||
DA:188,7
|
||||
DA:189,7
|
||||
DA:190,0
|
||||
DA:191,0
|
||||
DA:194,0
|
||||
DA:195,0
|
||||
DA:198,7
|
||||
DA:199,7
|
||||
DA:198,0
|
||||
DA:199,0
|
||||
DA:202,7
|
||||
DA:204,7
|
||||
DA:205,0
|
||||
DA:206,0
|
||||
DA:209,7
|
||||
DA:211,7
|
||||
DA:212,7
|
||||
DA:203,7
|
||||
DA:206,7
|
||||
DA:208,7
|
||||
DA:209,0
|
||||
DA:210,0
|
||||
DA:213,7
|
||||
DA:214,7
|
||||
DA:215,7
|
||||
DA:216,7
|
||||
DA:217,7
|
||||
DA:218,7
|
||||
DA:224,7
|
||||
DA:225,0
|
||||
DA:219,7
|
||||
DA:221,7
|
||||
DA:222,7
|
||||
DA:228,7
|
||||
DA:233,1
|
||||
LF:96
|
||||
LH:68
|
||||
BRDA:24,1,0,7
|
||||
BRDA:24,1,1,0
|
||||
BRDA:38,2,0,0
|
||||
BRDA:38,2,1,7
|
||||
BRDA:44,3,0,1
|
||||
BRDA:44,3,1,6
|
||||
BRDA:64,4,0,0
|
||||
BRDA:64,4,1,13
|
||||
BRDA:69,5,0,7
|
||||
BRDA:69,5,1,6
|
||||
BRDA:74,6,0,0
|
||||
BRDA:74,6,1,7
|
||||
BRDA:74,7,0,7
|
||||
BRDA:74,7,1,0
|
||||
BRDA:85,8,0,6
|
||||
BRDA:85,8,1,0
|
||||
BRDA:95,9,0,0
|
||||
BRDA:95,9,1,0
|
||||
BRDA:98,10,0,0
|
||||
BRDA:98,10,1,0
|
||||
BRDA:101,11,0,0
|
||||
BRDA:101,11,1,0
|
||||
BRDA:102,12,0,0
|
||||
BRDA:102,12,1,0
|
||||
BRDA:149,13,0,7
|
||||
BRDA:149,13,1,6
|
||||
BRDA:150,14,0,13
|
||||
BRDA:150,14,1,8
|
||||
BRDA:150,14,2,6
|
||||
BRDA:185,15,0,0
|
||||
BRDA:185,15,1,7
|
||||
BRDA:190,16,0,0
|
||||
BRDA:190,16,1,0
|
||||
BRDA:198,17,0,7
|
||||
BRDA:198,17,1,0
|
||||
BRDA:204,18,0,0
|
||||
BRDA:204,18,1,7
|
||||
BRDA:204,19,0,7
|
||||
BRDA:204,19,1,7
|
||||
BRDA:224,20,0,0
|
||||
BRDA:224,20,1,7
|
||||
BRF:41
|
||||
BRH:21
|
||||
DA:229,0
|
||||
DA:232,7
|
||||
DA:237,1
|
||||
LF:99
|
||||
LH:70
|
||||
BRDA:11,1,0,0
|
||||
BRDA:11,1,1,1
|
||||
BRDA:28,2,0,7
|
||||
BRDA:28,2,1,0
|
||||
BRDA:42,3,0,0
|
||||
BRDA:42,3,1,7
|
||||
BRDA:48,4,0,1
|
||||
BRDA:48,4,1,6
|
||||
BRDA:68,5,0,0
|
||||
BRDA:68,5,1,13
|
||||
BRDA:73,6,0,7
|
||||
BRDA:73,6,1,6
|
||||
BRDA:78,7,0,0
|
||||
BRDA:78,7,1,7
|
||||
BRDA:78,8,0,7
|
||||
BRDA:78,8,1,0
|
||||
BRDA:89,9,0,6
|
||||
BRDA:89,9,1,0
|
||||
BRDA:99,10,0,0
|
||||
BRDA:99,10,1,0
|
||||
BRDA:102,11,0,0
|
||||
BRDA:102,11,1,0
|
||||
BRDA:105,12,0,0
|
||||
BRDA:105,12,1,0
|
||||
BRDA:106,13,0,0
|
||||
BRDA:106,13,1,0
|
||||
BRDA:153,14,0,7
|
||||
BRDA:153,14,1,6
|
||||
BRDA:154,15,0,13
|
||||
BRDA:154,15,1,8
|
||||
BRDA:154,15,2,6
|
||||
BRDA:189,16,0,0
|
||||
BRDA:189,16,1,7
|
||||
BRDA:194,17,0,0
|
||||
BRDA:194,17,1,0
|
||||
BRDA:202,18,0,7
|
||||
BRDA:202,18,1,0
|
||||
BRDA:208,19,0,0
|
||||
BRDA:208,19,1,7
|
||||
BRDA:208,20,0,7
|
||||
BRDA:208,20,1,7
|
||||
BRDA:228,21,0,0
|
||||
BRDA:228,21,1,7
|
||||
BRF:43
|
||||
BRH:22
|
||||
end_of_record
|
||||
TN:
|
||||
SF:/home/ssmp/git/node-ipc/dao/eventParser.js
|
||||
|
@ -476,25 +481,25 @@ BRH:3
|
|||
end_of_record
|
||||
TN:
|
||||
SF:/home/ssmp/git/node-ipc/dao/socketServer.js
|
||||
FN:12,(anonymous_1)
|
||||
FN:36,(anonymous_2)
|
||||
FN:43,(anonymous_3)
|
||||
FN:47,(anonymous_4)
|
||||
FN:60,emit
|
||||
FN:92,broadcast
|
||||
FN:115,serverClosed
|
||||
FN:144,gotData
|
||||
FN:189,socketClosed
|
||||
FN:196,serverCreated
|
||||
FN:211,(anonymous_11)
|
||||
FN:225,(anonymous_12)
|
||||
FN:252,startServer
|
||||
FN:274,UDPServerStarted
|
||||
FN:282,(anonymous_15)
|
||||
FN:335,startTLSServer
|
||||
FN:367,UDPWrite
|
||||
FN:375,(anonymous_18)
|
||||
FN:380,(anonymous_19)
|
||||
FN:16,(anonymous_1)
|
||||
FN:40,(anonymous_2)
|
||||
FN:47,(anonymous_3)
|
||||
FN:51,(anonymous_4)
|
||||
FN:64,emit
|
||||
FN:96,broadcast
|
||||
FN:119,serverClosed
|
||||
FN:148,gotData
|
||||
FN:193,socketClosed
|
||||
FN:200,serverCreated
|
||||
FN:215,(anonymous_11)
|
||||
FN:229,(anonymous_12)
|
||||
FN:256,startServer
|
||||
FN:278,UDPServerStarted
|
||||
FN:286,(anonymous_15)
|
||||
FN:339,startTLSServer
|
||||
FN:371,UDPWrite
|
||||
FN:379,(anonymous_18)
|
||||
FN:384,(anonymous_19)
|
||||
FNF:19
|
||||
FNH:14
|
||||
FNDA:4,(anonymous_1)
|
||||
|
@ -517,248 +522,253 @@ FNDA:2,UDPWrite
|
|||
FNDA:2,(anonymous_18)
|
||||
FNDA:0,(anonymous_19)
|
||||
DA:3,1
|
||||
DA:13,4
|
||||
DA:14,4
|
||||
DA:30,4
|
||||
DA:37,4
|
||||
DA:44,4
|
||||
DA:10,1
|
||||
DA:11,1
|
||||
DA:12,0
|
||||
DA:17,4
|
||||
DA:18,4
|
||||
DA:34,4
|
||||
DA:41,4
|
||||
DA:48,4
|
||||
DA:49,0
|
||||
DA:50,0
|
||||
DA:53,4
|
||||
DA:60,1
|
||||
DA:61,2
|
||||
DA:63,2
|
||||
DA:64,2
|
||||
DA:52,4
|
||||
DA:53,0
|
||||
DA:54,0
|
||||
DA:57,4
|
||||
DA:64,1
|
||||
DA:65,2
|
||||
DA:67,2
|
||||
DA:68,0
|
||||
DA:69,0
|
||||
DA:68,2
|
||||
DA:69,2
|
||||
DA:71,2
|
||||
DA:74,2
|
||||
DA:76,2
|
||||
DA:77,0
|
||||
DA:78,0
|
||||
DA:79,0
|
||||
DA:82,2
|
||||
DA:72,0
|
||||
DA:73,0
|
||||
DA:75,2
|
||||
DA:78,2
|
||||
DA:80,2
|
||||
DA:81,0
|
||||
DA:82,0
|
||||
DA:83,0
|
||||
DA:86,2
|
||||
DA:89,0
|
||||
DA:92,1
|
||||
DA:90,2
|
||||
DA:93,0
|
||||
DA:94,0
|
||||
DA:95,0
|
||||
DA:96,0
|
||||
DA:96,1
|
||||
DA:97,0
|
||||
DA:98,0
|
||||
DA:99,0
|
||||
DA:101,0
|
||||
DA:104,0
|
||||
DA:100,0
|
||||
DA:102,0
|
||||
DA:103,0
|
||||
DA:105,0
|
||||
DA:106,0
|
||||
DA:108,0
|
||||
DA:109,0
|
||||
DA:110,0
|
||||
DA:115,1
|
||||
DA:116,2
|
||||
DA:117,2
|
||||
DA:118,2
|
||||
DA:113,0
|
||||
DA:114,0
|
||||
DA:119,1
|
||||
DA:120,2
|
||||
DA:121,2
|
||||
DA:122,0
|
||||
DA:126,2
|
||||
DA:127,0
|
||||
DA:122,2
|
||||
DA:124,2
|
||||
DA:125,2
|
||||
DA:126,0
|
||||
DA:130,2
|
||||
DA:132,2
|
||||
DA:133,0
|
||||
DA:131,0
|
||||
DA:134,2
|
||||
DA:136,2
|
||||
DA:138,2
|
||||
DA:137,0
|
||||
DA:140,2
|
||||
DA:144,1
|
||||
DA:145,2
|
||||
DA:146,2
|
||||
DA:147,0
|
||||
DA:148,0
|
||||
DA:153,0
|
||||
DA:156,2
|
||||
DA:157,2
|
||||
DA:142,2
|
||||
DA:144,2
|
||||
DA:148,1
|
||||
DA:149,2
|
||||
DA:150,2
|
||||
DA:151,0
|
||||
DA:152,0
|
||||
DA:157,0
|
||||
DA:160,2
|
||||
DA:162,2
|
||||
DA:163,0
|
||||
DA:164,0
|
||||
DA:167,2
|
||||
DA:169,2
|
||||
DA:161,2
|
||||
DA:164,2
|
||||
DA:166,2
|
||||
DA:167,0
|
||||
DA:168,0
|
||||
DA:171,2
|
||||
DA:172,2
|
||||
DA:173,2
|
||||
DA:175,2
|
||||
DA:176,2
|
||||
DA:177,2
|
||||
DA:178,2
|
||||
DA:179,2
|
||||
DA:181,2
|
||||
DA:189,1
|
||||
DA:190,2
|
||||
DA:196,1
|
||||
DA:197,4
|
||||
DA:199,4
|
||||
DA:200,2
|
||||
DA:182,2
|
||||
DA:185,2
|
||||
DA:193,1
|
||||
DA:194,2
|
||||
DA:200,1
|
||||
DA:201,4
|
||||
DA:203,4
|
||||
DA:204,4
|
||||
DA:209,4
|
||||
DA:212,0
|
||||
DA:214,0
|
||||
DA:218,4
|
||||
DA:223,4
|
||||
DA:226,2
|
||||
DA:227,0
|
||||
DA:204,2
|
||||
DA:207,4
|
||||
DA:208,4
|
||||
DA:213,4
|
||||
DA:216,0
|
||||
DA:218,0
|
||||
DA:222,4
|
||||
DA:227,4
|
||||
DA:230,2
|
||||
DA:231,2
|
||||
DA:233,2
|
||||
DA:234,0
|
||||
DA:236,2
|
||||
DA:238,2
|
||||
DA:242,4
|
||||
DA:247,4
|
||||
DA:248,0
|
||||
DA:252,1
|
||||
DA:253,4
|
||||
DA:258,4
|
||||
DA:259,2
|
||||
DA:260,2
|
||||
DA:261,2
|
||||
DA:265,0
|
||||
DA:268,2
|
||||
DA:271,2
|
||||
DA:231,0
|
||||
DA:234,2
|
||||
DA:235,2
|
||||
DA:237,2
|
||||
DA:238,0
|
||||
DA:240,2
|
||||
DA:242,2
|
||||
DA:246,4
|
||||
DA:251,4
|
||||
DA:252,0
|
||||
DA:256,1
|
||||
DA:257,4
|
||||
DA:262,4
|
||||
DA:263,2
|
||||
DA:264,2
|
||||
DA:265,2
|
||||
DA:269,0
|
||||
DA:272,2
|
||||
DA:275,2
|
||||
DA:280,4
|
||||
DA:283,0
|
||||
DA:285,0
|
||||
DA:292,4
|
||||
DA:294,4
|
||||
DA:295,1
|
||||
DA:296,1
|
||||
DA:297,0
|
||||
DA:298,0
|
||||
DA:299,0
|
||||
DA:302,1
|
||||
DA:307,1
|
||||
DA:310,3
|
||||
DA:276,2
|
||||
DA:279,2
|
||||
DA:284,4
|
||||
DA:287,0
|
||||
DA:289,0
|
||||
DA:296,4
|
||||
DA:298,4
|
||||
DA:299,1
|
||||
DA:300,1
|
||||
DA:301,0
|
||||
DA:302,0
|
||||
DA:303,0
|
||||
DA:306,1
|
||||
DA:311,1
|
||||
DA:312,1
|
||||
DA:317,1
|
||||
DA:320,2
|
||||
DA:322,2
|
||||
DA:327,2
|
||||
DA:335,1
|
||||
DA:336,0
|
||||
DA:337,0
|
||||
DA:338,0
|
||||
DA:314,3
|
||||
DA:315,1
|
||||
DA:316,1
|
||||
DA:321,1
|
||||
DA:324,2
|
||||
DA:326,2
|
||||
DA:331,2
|
||||
DA:339,1
|
||||
DA:340,0
|
||||
DA:341,0
|
||||
DA:342,0
|
||||
DA:343,0
|
||||
DA:345,0
|
||||
DA:344,0
|
||||
DA:346,0
|
||||
DA:347,0
|
||||
DA:348,0
|
||||
DA:350,0
|
||||
DA:349,0
|
||||
DA:351,0
|
||||
DA:352,0
|
||||
DA:354,0
|
||||
DA:355,0
|
||||
DA:356,0
|
||||
DA:361,0
|
||||
DA:367,1
|
||||
DA:368,2
|
||||
DA:369,2
|
||||
DA:376,2
|
||||
DA:377,0
|
||||
DA:378,0
|
||||
DA:358,0
|
||||
DA:359,0
|
||||
DA:360,0
|
||||
DA:365,0
|
||||
DA:371,1
|
||||
DA:372,2
|
||||
DA:373,2
|
||||
DA:380,2
|
||||
DA:381,0
|
||||
DA:389,1
|
||||
LF:155
|
||||
LH:97
|
||||
BRDA:48,1,0,0
|
||||
BRDA:48,1,1,4
|
||||
BRDA:67,2,0,0
|
||||
BRDA:67,2,1,2
|
||||
BRDA:74,3,0,2
|
||||
BRDA:74,3,1,0
|
||||
BRDA:74,4,0,2
|
||||
BRDA:74,4,1,1
|
||||
BRDA:76,5,0,0
|
||||
BRDA:76,5,1,2
|
||||
BRDA:76,6,0,2
|
||||
BRDA:76,6,1,2
|
||||
BRDA:93,7,0,0
|
||||
BRDA:93,7,1,0
|
||||
BRDA:98,8,0,0
|
||||
BRDA:98,8,1,0
|
||||
BRDA:104,9,0,0
|
||||
BRDA:104,9,1,0
|
||||
BRDA:104,10,0,0
|
||||
BRDA:104,10,1,0
|
||||
BRDA:120,11,0,2
|
||||
BRDA:120,11,1,0
|
||||
BRDA:121,12,0,0
|
||||
BRDA:121,12,1,2
|
||||
BRDA:126,13,0,0
|
||||
BRDA:126,13,1,2
|
||||
BRDA:132,14,0,0
|
||||
BRDA:132,14,1,2
|
||||
BRDA:132,15,0,2
|
||||
BRDA:132,15,1,2
|
||||
BRDA:145,16,0,2
|
||||
BRDA:145,16,1,0
|
||||
BRDA:145,17,0,2
|
||||
BRDA:145,17,1,1
|
||||
BRDA:146,18,0,0
|
||||
BRDA:146,18,1,2
|
||||
BRDA:156,19,0,2
|
||||
BRDA:156,19,1,0
|
||||
BRDA:162,20,0,0
|
||||
BRDA:162,20,1,2
|
||||
BRDA:162,21,0,2
|
||||
BRDA:162,21,1,2
|
||||
BRDA:177,22,0,2
|
||||
BRDA:177,22,1,0
|
||||
BRDA:199,23,0,2
|
||||
BRDA:199,23,1,2
|
||||
BRDA:226,24,0,0
|
||||
BRDA:226,24,1,2
|
||||
BRDA:233,25,0,0
|
||||
BRDA:233,25,1,2
|
||||
BRDA:247,26,0,0
|
||||
BRDA:247,26,1,4
|
||||
BRDA:255,27,0,3
|
||||
BRDA:255,27,1,1
|
||||
BRDA:258,28,0,2
|
||||
BRDA:258,28,1,2
|
||||
BRDA:258,29,0,4
|
||||
BRDA:258,29,1,3
|
||||
BRDA:259,30,0,2
|
||||
BRDA:259,30,1,0
|
||||
BRDA:269,31,0,1
|
||||
BRDA:269,31,1,1
|
||||
BRDA:294,32,0,1
|
||||
BRDA:294,32,1,3
|
||||
BRDA:296,33,0,0
|
||||
BRDA:296,33,1,1
|
||||
BRDA:310,34,0,1
|
||||
BRDA:310,34,1,2
|
||||
BRDA:310,35,0,3
|
||||
BRDA:310,35,1,2
|
||||
BRDA:311,36,0,0
|
||||
BRDA:311,36,1,1
|
||||
BRDA:320,37,0,1
|
||||
BRDA:320,37,1,1
|
||||
BRDA:337,38,0,0
|
||||
BRDA:337,38,1,0
|
||||
BRDA:342,39,0,0
|
||||
BRDA:342,39,1,0
|
||||
BRDA:347,40,0,0
|
||||
BRDA:347,40,1,0
|
||||
BRDA:350,41,0,0
|
||||
BRDA:350,41,1,0
|
||||
BRDA:351,42,0,0
|
||||
BRDA:351,42,1,0
|
||||
BRDA:376,43,0,0
|
||||
BRDA:376,43,1,2
|
||||
BRF:86
|
||||
BRH:48
|
||||
DA:382,0
|
||||
DA:385,0
|
||||
DA:393,1
|
||||
LF:158
|
||||
LH:99
|
||||
BRDA:11,1,0,0
|
||||
BRDA:11,1,1,1
|
||||
BRDA:52,2,0,0
|
||||
BRDA:52,2,1,4
|
||||
BRDA:71,3,0,0
|
||||
BRDA:71,3,1,2
|
||||
BRDA:78,4,0,2
|
||||
BRDA:78,4,1,0
|
||||
BRDA:78,5,0,2
|
||||
BRDA:78,5,1,1
|
||||
BRDA:80,6,0,0
|
||||
BRDA:80,6,1,2
|
||||
BRDA:80,7,0,2
|
||||
BRDA:80,7,1,2
|
||||
BRDA:97,8,0,0
|
||||
BRDA:97,8,1,0
|
||||
BRDA:102,9,0,0
|
||||
BRDA:102,9,1,0
|
||||
BRDA:108,10,0,0
|
||||
BRDA:108,10,1,0
|
||||
BRDA:108,11,0,0
|
||||
BRDA:108,11,1,0
|
||||
BRDA:124,12,0,2
|
||||
BRDA:124,12,1,0
|
||||
BRDA:125,13,0,0
|
||||
BRDA:125,13,1,2
|
||||
BRDA:130,14,0,0
|
||||
BRDA:130,14,1,2
|
||||
BRDA:136,15,0,0
|
||||
BRDA:136,15,1,2
|
||||
BRDA:136,16,0,2
|
||||
BRDA:136,16,1,2
|
||||
BRDA:149,17,0,2
|
||||
BRDA:149,17,1,0
|
||||
BRDA:149,18,0,2
|
||||
BRDA:149,18,1,1
|
||||
BRDA:150,19,0,0
|
||||
BRDA:150,19,1,2
|
||||
BRDA:160,20,0,2
|
||||
BRDA:160,20,1,0
|
||||
BRDA:166,21,0,0
|
||||
BRDA:166,21,1,2
|
||||
BRDA:166,22,0,2
|
||||
BRDA:166,22,1,2
|
||||
BRDA:181,23,0,2
|
||||
BRDA:181,23,1,0
|
||||
BRDA:203,24,0,2
|
||||
BRDA:203,24,1,2
|
||||
BRDA:230,25,0,0
|
||||
BRDA:230,25,1,2
|
||||
BRDA:237,26,0,0
|
||||
BRDA:237,26,1,2
|
||||
BRDA:251,27,0,0
|
||||
BRDA:251,27,1,4
|
||||
BRDA:259,28,0,3
|
||||
BRDA:259,28,1,1
|
||||
BRDA:262,29,0,2
|
||||
BRDA:262,29,1,2
|
||||
BRDA:262,30,0,4
|
||||
BRDA:262,30,1,3
|
||||
BRDA:263,31,0,2
|
||||
BRDA:263,31,1,0
|
||||
BRDA:273,32,0,1
|
||||
BRDA:273,32,1,1
|
||||
BRDA:298,33,0,1
|
||||
BRDA:298,33,1,3
|
||||
BRDA:300,34,0,0
|
||||
BRDA:300,34,1,1
|
||||
BRDA:314,35,0,1
|
||||
BRDA:314,35,1,2
|
||||
BRDA:314,36,0,3
|
||||
BRDA:314,36,1,2
|
||||
BRDA:315,37,0,0
|
||||
BRDA:315,37,1,1
|
||||
BRDA:324,38,0,1
|
||||
BRDA:324,38,1,1
|
||||
BRDA:341,39,0,0
|
||||
BRDA:341,39,1,0
|
||||
BRDA:346,40,0,0
|
||||
BRDA:346,40,1,0
|
||||
BRDA:351,41,0,0
|
||||
BRDA:351,41,1,0
|
||||
BRDA:354,42,0,0
|
||||
BRDA:354,42,1,0
|
||||
BRDA:355,43,0,0
|
||||
BRDA:355,43,1,0
|
||||
BRDA:380,44,0,0
|
||||
BRDA:380,44,1,2
|
||||
BRF:88
|
||||
BRH:49
|
||||
end_of_record
|
||||
|
|
Loading…
Reference in a new issue