I answer this post because I can not currently edit it.

I have translated the results of your code to the Spanish and found the reasons for IPS because some countries are not shown.

I'll leave the line of code that should be modified to contemplate these cases.
With just a few IPs the information the web changes and the line is cut.

LINES:
Code:
if (*<a href="http://es.wikipedia.org/wiki/* iswm %r) && ($left(%r,2) == <a) && (*target="_blank" title="Entrada de Wikipedia para* iswm %r) { var %esp = $replace($httpstrip(%r),&#250;,ú,&#225;,á,&#233;,é,&#237;í,&#233;ó,&#193;,Á,&#201;,É,&#205;,Í,&#211;,Ó,&#218;,Ú) | echo -at 12Continente:1 %esp $+  }
  if (*<span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/* iswm %r) && (*target="_blank" title="Entrada de Wikipedia para* iswm %r) {
    var %country $httpstrip(%r)
    var %country = $replace(%country,&#250;,ú,&#225;,á,&#233;,é,&#237;í,&#233;ó,&#193;,Á,&#201;,É,&#205;,Í,&#211;,Ó,&#218;,Ú)
    set -e %country_ [ $+ [ $sockname ] ] %country
    echo -at 12País:1 %country $+ 


LINE TO FIX:

Code:
if (*<span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/* iswm %r) && (*target="_blank" title="Entrada de Wikipedia para* iswm %r) {



WORK IN THIS CASE:
Click to reveal..
141412:1405 READ: <td align="left">Pa&#237;s</td>
141412:1405 READ: <td align="left" >
141412:1405 READ: <span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/Polonia" target="_blank" title="Entrada de Wikipedia para Polonia"><b>Polonia</b></a>


NOT WORK IN THIS CASE:
Click to reveal..
141412:1407 READ: <td align="left">Pa&#237;s</td>
141412:1407 READ: <td align="left" >
141412:1407 READ: <span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/Tailandia" target="_blank" title="Entrada de Wikipedia para Tailan
141412:1407 READ: 105b
141412:1407 READ: dia"><b>Tailandia</b></a>


As shown in the example to work, the line of Wikipedia shows all the information on one line:


Quote:
141412:1405 READ: <span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/Polonia" target="_blank" title="Entrada de Wikipedia para Polonia"><b>Polonia</b></a>


With some IPS Wikipedia information line is cut:
Quote:
141412:1407 READ: <span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/Tailandia" target="_blank" title="Entrada de Wikipedia para Tailan
141412:1407 READ: 105b
141412:1407 READ: dia"><b>Tailandia</b></a>


The expected information from Wikipedia for this example is:

Quote:
141412:1407 READ: <span style="white-space: nowrap"><a href="http://es.wikipedia.org/wiki/Tailandia" target="_blank" title="Entrada de Wikipedia para Tailandia"><b>Tailandia</b></a>


You can modify the code so that considers both situations?

Thank you smile