Ground Motion Prediction

Import pygmm module

In [1]:
import pygmm
In [2]:
from obspy.geodetics.base import gps2dist_azimuth

import obspy as ob
print("# obspy version = ",ob.__version__)
# obspy version =  1.2.2
In [7]:
import pandas as pd
print("# pandas version = ",pd.__version__)
# pandas version =  1.0.4

Computer JB distance

This example uses hypocenteral distance between the epicenter and terget area.

In [8]:
def cal_jb_dist(evla, evlo, stla, stlo):
    #baz = gps2dist_azimuth(source_latitude, source_longitude, station_latitude, station_longitude)
    baz = gps2dist_azimuth(evla, evlo, stla, stlo)

    #print('Epicentral distance [m]: ', baz[0])
    #print('Theoretical azimuth [deg]: ', baz[1])
    #print('Theoretical backazimuth [deg]: ', baz[2])

    dist_jb = baz[0]/1000 # convert to m -> km
    #print("# dist_jb = ", dist_jb)
    return dist_jb
          
In [ ]:
 

Input parameters

this would depend on the target locations

In [9]:
stname = "regionA" # this is used for the output file
# target location
stla = 37.87352 # latitude of the target area # this example use BK.BRK station
stlo = -122.26099 # longitude of the target area # this example use BK.BRK station
# vs30
v_s30 = 500 # m/s find this vs30 from grd file 
# https://github.com/usgs/earthquake-global_vs30/tree/master/California/California_Vs30_7p5c.grd
# region. 
region = "california" # need for BSSA14


### option. if you want to save results for each target region
event_pgv_fi = stname+"_BSSA14.csv"

Read event_focal csv file

In [10]:
event_focal_fi = "bayarea_center_m3_500km_focal.csv"
event_focal_fi = "test_eq_focal.csv" # two events only
event_focal_fi = "bayarea_center_m3_500km_focal_redo.csv"

event_focal_df = pd.read_csv(event_focal_fi ,   
                       sep=",")
In [ ]:
 
In [11]:
print(event_focal_df)
                          time   latitude   longitude  depth   mag magType  \
0     2020-12-01T23:47:05.591Z  38.167500 -118.081300   5.60  4.30      ml   
1     2020-12-01T23:43:08.516Z  38.172700 -118.070300   4.80  4.30      ml   
2     2020-12-01T23:39:55.064Z  38.172200 -118.050400   8.00  3.20      ml   
3     2020-12-01T23:35:42.457Z  38.163800 -118.084400   4.70  3.10      ml   
4     2020-12-01T23:32:56.573Z  38.163700 -118.083700   5.00  5.10      ml   
...                        ...        ...         ...    ...   ...     ...   
2127  2018-01-11T00:15:13.680Z  36.156333 -120.229833  11.36  3.14      ml   
2128  2018-01-07T19:01:00.490Z  40.398667 -125.244667  29.45  4.52      mw   
2129  2018-01-07T01:31:11.150Z  34.420000 -120.001500   2.26  3.78      mw   
2130  2018-01-04T10:39:37.730Z  37.855167 -122.256833  12.31  4.38      mw   
2131  2017-12-31T19:49:06.270Z  40.484667 -123.390000  30.44  3.76      mw   

              id Rupture_type mechanism  strike     dip    rake focal_source  
0     nn00787133         N-SS        NS  170.49   41.55 -134.82           MT  
1     nn00787124           SS        SS   83.27   80.06  -16.70           MT  
2     nn00787116            U         U -999.00 -999.00 -999.00          NA3  
3     nn00787110            U         U -999.00 -999.00 -999.00          NA3  
4     nn00787105         SS-N        SS  168.57   59.21 -160.50           MT  
...          ...          ...       ...     ...     ...     ...          ...  
2127  nc72952250            R        RS  105.00   25.00   70.00           FM  
2128  nc72950451           SS        SS -999.00 -999.00 -999.00          CMT  
2129  ci37848263         SS-N        SS  167.00   88.00 -145.00           FM  
2130  nc72948801         SS-N        SS   60.00   90.00  -40.00           FM  
2131  nc72946846            N        NS   75.00   35.00  -60.00           FM  

[2132 rows x 13 columns]
In [12]:
# may be more better way...
event_focal_df['PGA'] = event_focal_df['rake']
event_focal_df['PGV'] = event_focal_df['rake']
event_focal_df['dist_jb'] = event_focal_df['rake']
In [13]:
#for eventid in event_df['id']:
for i, eventid in enumerate(event_focal_df['id']):

    print("# i = ",i)
    print("# evenid = ", eventid)
    # compute JB distnace. You can replace it by your approach
    dist_jb = cal_jb_dist(event_focal_df['latitude'][i], event_focal_df['longitude'][i], stla, stlo)
    print("# dist_jb = ", dist_jb)
    event_focal_df.loc[i, ('dist_jb')] = dist_jb

    ### BSSA2014
    scenario = pygmm.Scenario(mag=event_focal_df['mag'][i], dist_jb=dist_jb, v_s30=v_s30, region=region, mechanism=event_focal_df['mechanism'][i])
    m = pygmm.BooreStewartSeyhanAtkinson2014(scenario)
    #print("# PGA (g) = ", m.pga)
    #print("# PGV (cm/s) = ", m.pgv)
    event_focal_df.loc[i, ('PGA')] = m.pga
    event_focal_df.loc[i, ('PGV')] = m.pgv
WARNING:root:dist_jb (368.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.162) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.162) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.189) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.189) is greater than the recommended limit (300).
WARNING:root:dist_jb (307.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (307.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.941) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.941) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.394) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.394) is greater than the recommended limit (300).
WARNING:root:dist_jb (352.15) is greater than the recommended limit (300).
WARNING:root:dist_jb (352.15) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (325.573) is greater than the recommended limit (300).
WARNING:root:dist_jb (325.573) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.937) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.937) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.148) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.148) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.274) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.274) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (436.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (436.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.534) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.534) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.708) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.708) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.627) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.627) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.476) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.476) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (352.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (352.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.139) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.139) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.614) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.614) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.264) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.264) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.42) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.42) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.236) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.236) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.098) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.098) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.363) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.363) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.505) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.505) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.378) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.378) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.872) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.872) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.868) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.868) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.798) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.798) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.215) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.215) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.957) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.957) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.976) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.976) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.217) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.217) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.784) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.784) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.786) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.786) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.92) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.92) is greater than the recommended limit (300).
WARNING:root:dist_jb (323.022) is greater than the recommended limit (300).
WARNING:root:dist_jb (323.022) is greater than the recommended limit (300).
WARNING:root:dist_jb (428.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (428.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.874) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.874) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.408) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.408) is greater than the recommended limit (300).
WARNING:root:dist_jb (305.584) is greater than the recommended limit (300).
WARNING:root:dist_jb (305.584) is greater than the recommended limit (300).
WARNING:root:dist_jb (420.21) is greater than the recommended limit (300).
WARNING:root:dist_jb (420.21) is greater than the recommended limit (300).
WARNING:root:dist_jb (306.97) is greater than the recommended limit (300).
WARNING:root:dist_jb (306.97) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.381) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.381) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.123) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.123) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.62) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.62) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.192) is greater than the recommended limit (300).
# i =  0
# evenid =  nn00787133
# dist_jb =  368.42603999525517
# i =  1
# evenid =  nn00787124
# dist_jb =  369.42633876133806
# i =  2
# evenid =  nn00787116
# dist_jb =  371.16245991272143
# i =  3
# evenid =  nn00787110
# dist_jb =  368.12801517450526
# i =  4
# evenid =  nn00787105
# dist_jb =  368.1885087266349
# i =  5
# evenid =  nn00787091
# dist_jb =  307.80761946358984
# i =  6
# evenid =  nc73491170
# dist_jb =  308.94110927210136
# i =  7
# evenid =  ci39481463
# dist_jb =  493.8759803944533
# i =  8
# evenid =  nn00786813
# dist_jb =  376.3942085534729
# i =  9
# evenid =  nn00786787
# dist_jb =  352.15024414161144
# i =  10
# evenid =  ci39480223
# dist_jb =  483.6777806784417
# i =  11
# evenid =  nc73488761
# dist_jb =  325.57335300821853
# i =  12
# evenid =  nc73487351
# dist_jb =  309.9365103008313
# i =  13
# evenid =  nn00786014
# dist_jb =  391.1484462134791
# i =  14
# evenid =  nn00786004
# dist_jb =  389.27404862982166
# i =  15
# evenid =  nn00785639
# dist_jb =  385.2580338478048
# i =  16
# evenid =  nn00785349
# dist_jb =  392.94485972001684
# i =  17
# evenid =  ci39470639
# dist_jb =  436.6717957281839
# i =  18
# evenid =  nn00784615
# dist_jb =  397.4748693612862
# i =  19
# evenid =  ci39466903
# dist_jb =  460.53444483377285
# i =  20
# evenid =  nn00784475
# dist_jb =  397.708279270158
# i =  21
# evenid =  nn00784390
# dist_jb =  387.62746173546304
# i =  22
# evenid =  nn00783856
# dist_jb =  397.47556046228516
# i =  23
# evenid =  nn00783788
# dist_jb =  387.1090277670437
# i =  24
# evenid =  nc73481926
# dist_jb =  352.4340965509564
# i =  25
# evenid =  nn00783439
# dist_jb =  388.138884155317
# i =  26
# evenid =  nn00783399
# dist_jb =  387.61446958678135
# i =  27
# evenid =  nn00783320
# dist_jb =  389.38494406275464
# i =  28
# evenid =  nn00783167
# dist_jb =  387.26387181985285
# i =  29
# evenid =  nn00783119
# dist_jb =  387.41958245884337
# i =  30
# evenid =  nn00783078
# dist_jb =  397.2361754248042
# i =  31
# evenid =  nn00783280
# dist_jb =  389.65488443001465
# i =  32
# evenid =  nn00782956
# dist_jb =  387.097647529406
# i =  33
# evenid =  nn00782950
# dist_jb =  393.363338357624
# i =  34
# evenid =  nn00782946
# dist_jb =  387.50533696801534
# i =  35
# evenid =  nn00782942
# dist_jb =  388.37835968758117
# i =  36
# evenid =  nc73480551
# dist_jb =  134.82254577249495
# i =  37
# evenid =  ci39461591
# dist_jb =  434.8715641977421
# i =  38
# evenid =  ci39460703
# dist_jb =  458.86777882262726
# i =  39
# evenid =  nn00782277
# dist_jb =  392.798291225397
# i =  40
# evenid =  nc73479226
# dist_jb =  371.21461178585776
# i =  41
# evenid =  nc73477631
# dist_jb =  254.3360306169329
# i =  42
# evenid =  nc73477526
# dist_jb =  186.6165250054021
# i =  43
# evenid =  ci39452551
# dist_jb =  437.9572447605495
# i =  44
# evenid =  nn00781237
# dist_jb =  380.9756161138016
# i =  45
# evenid =  nc73476346
# dist_jb =  253.8680881991836
# i =  46
# evenid =  nc73475701
# dist_jb =  177.00002228634952
# i =  47
# evenid =  nn00780537
# dist_jb =  387.217043759699
# i =  48
# evenid =  nc73475311
# dist_jb =  76.02441606291391
# i =  49
# evenid =  ci39441087
# dist_jb =  433.78444662069023
# i =  50
# evenid =  nn00779626
# dist_jb =  397.7857456551092
# i =  51
# evenid =  nc73472891
# dist_jb =  186.58624164812267
# i =  52
# evenid =  nc73472896
# dist_jb =  186.48178809995852
# i =  53
# evenid =  nn00779417
# dist_jb =  375.9203904664033
# i =  54
# evenid =  nc73472226
# dist_jb =  323.0223639836139
# i =  55
# evenid =  nc73471781
# dist_jb =  428.9912837160962
# i =  56
# evenid =  us6000c8xv
# dist_jb =  431.8740898205202
# i =  57
# evenid =  nc73470856
# dist_jb =  214.70089718391642
# i =  58
# evenid =  nn00778222
# dist_jb =  372.4084924648087
# i =  59
# evenid =  nc73468941
# dist_jb =  305.58431757789566
# i =  60
# evenid =  nc73467176
# dist_jb =  420.20972814917246
# i =  61
# evenid =  nc73466751
# dist_jb =  306.9703778178749
# i =  62
# evenid =  nc73466321
# dist_jb =  185.96200371571038
# i =  63
# evenid =  ci39651712
# dist_jb =  496.381431853561
# i =  64
# evenid =  ci39649656
# dist_jb =  488.12327420179435
# i =  65
# evenid =  nn00776479
# dist_jb =  382.61973658009754
# i =  66
# evenid =  nc73464301
# dist_jb =  56.73392598262119
# i =  67
# evenid =  nn00776206
# dist_jb =  395.1920424112727
WARNING:root:dist_jb (395.192) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.266) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.266) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.949) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.949) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.281) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.281) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.779) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.779) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.171) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.171) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.995) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.995) is greater than the recommended limit (300).
WARNING:root:dist_jb (417.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (417.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.813) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.813) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.492) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.492) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (448.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (448.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.568) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.568) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.923) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.923) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.779) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.779) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.885) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.885) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.675) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.675) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.763) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.763) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.867) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.867) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.892) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.892) is greater than the recommended limit (300).
WARNING:root:dist_jb (449.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (449.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.137) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.137) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (336.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (336.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (337.613) is greater than the recommended limit (300).
WARNING:root:dist_jb (337.613) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.982) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.982) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.012) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.012) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.009) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.009) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.03) is greater than the recommended limit (300).
# i =  68
# evenid =  nc73464086
# dist_jb =  153.79767097071422
# i =  69
# evenid =  nc73463746
# dist_jb =  56.92273401716224
# i =  70
# evenid =  nc73463646
# dist_jb =  57.249839068947786
# i =  71
# evenid =  nn00775722
# dist_jb =  379.96156350808764
# i =  72
# evenid =  ci38701098
# dist_jb =  492.2661186434241
# i =  73
# evenid =  nn00775128
# dist_jb =  384.5888033280393
# i =  74
# evenid =  nn00774930
# dist_jb =  369.94855900697814
# i =  75
# evenid =  nn00774584
# dist_jb =  385.46152680096117
# i =  76
# evenid =  nn00774492
# dist_jb =  390.2811480914469
# i =  77
# evenid =  ci38693130
# dist_jb =  411.0634420037635
# i =  78
# evenid =  nn00773931
# dist_jb =  378.7789262921038
# i =  79
# evenid =  nc73457811
# dist_jb =  240.31207433586272
# i =  80
# evenid =  nc73457786
# dist_jb =  240.7082409050503
# i =  81
# evenid =  ci38683938
# dist_jb =  411.1713770451798
# i =  82
# evenid =  ci38683930
# dist_jb =  411.4814937464548
# i =  83
# evenid =  ci38683914
# dist_jb =  410.9401360011858
# i =  84
# evenid =  nn00772709
# dist_jb =  386.804111785404
# i =  85
# evenid =  nn00772541
# dist_jb =  372.0629379837393
# i =  86
# evenid =  nn00772311
# dist_jb =  379.99481260714043
# i =  87
# evenid =  nc73454476
# dist_jb =  21.131623405880294
# i =  88
# evenid =  ci38678266
# dist_jb =  417.04259352266223
# i =  89
# evenid =  ci38676562
# dist_jb =  492.8133578991619
# i =  90
# evenid =  ci38675290
# dist_jb =  412.4920182662945
# i =  91
# evenid =  nn00771531
# dist_jb =  386.730492557625
# i =  92
# evenid =  ci39368535
# dist_jb =  448.54796607533024
# i =  93
# evenid =  nn00771348
# dist_jb =  392.93430002050803
# i =  94
# evenid =  nn00771114
# dist_jb =  387.56789024245114
# i =  95
# evenid =  nn00771068
# dist_jb =  354.1044902306774
# i =  96
# evenid =  nn00771061
# dist_jb =  392.92281599387957
# i =  97
# evenid =  nn00771051
# dist_jb =  392.778643167107
# i =  98
# evenid =  nn00770680
# dist_jb =  374.8850014273108
# i =  99
# evenid =  nn00770346
# dist_jb =  369.2493240857646
# i =  100
# evenid =  ci39362087
# dist_jb =  470.6753081805119
# i =  101
# evenid =  nc73450161
# dist_jb =  185.21331363617782
# i =  102
# evenid =  nn00769590
# dist_jb =  389.76261522355907
# i =  103
# evenid =  nn00769427
# dist_jb =  387.70260522856194
# i =  104
# evenid =  ci39587168
# dist_jb =  494.86684845334094
# i =  105
# evenid =  nc73447706
# dist_jb =  154.7812498694252
# i =  106
# evenid =  nc73447646
# dist_jb =  232.8104432785371
# i =  107
# evenid =  nn00768972
# dist_jb =  389.89230317952536
# i =  108
# evenid =  ci39584648
# dist_jb =  449.0032593691476
# i =  109
# evenid =  nn00768539
# dist_jb =  392.1046919590519
# i =  110
# evenid =  nc73446411
# dist_jb =  186.3599332998029
# i =  111
# evenid =  nc73446381
# dist_jb =  185.76029404875
# i =  112
# evenid =  nc73446356
# dist_jb =  186.0176595434891
# i =  113
# evenid =  nc73447140
# dist_jb =  57.04873308093213
# i =  114
# evenid =  nn00767765
# dist_jb =  380.0897963978689
# i =  115
# evenid =  nn00767645
# dist_jb =  380.13742103057785
# i =  116
# evenid =  nn00767470
# dist_jb =  386.314375066206
# i =  117
# evenid =  nc73443355
# dist_jb =  109.98223769573278
# i =  118
# evenid =  nc73440256
# dist_jb =  336.44876055286437
# i =  119
# evenid =  nc73440191
# dist_jb =  337.6130919102384
# i =  120
# evenid =  nn00766458
# dist_jb =  387.9823937899547
# i =  121
# evenid =  nn00766185
# dist_jb =  375.0117450431955
# i =  122
# evenid =  nc73439146
# dist_jb =  89.40230022541546
# i =  123
# evenid =  nn00765949
# dist_jb =  371.9141011617087
# i =  124
# evenid =  us6000b8er
# dist_jb =  491.9174477534142
# i =  125
# evenid =  nc73437016
# dist_jb =  310.0086804866382
# i =  126
# evenid =  nn00764600
# dist_jb =  392.1348920263159
# i =  127
# evenid =  nc73435571
# dist_jb =  229.6160438988705
# i =  128
# evenid =  nn00764023
# dist_jb =  370.029882201226
WARNING:root:dist_jb (370.03) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.132) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.132) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.272) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.272) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.598) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.598) is greater than the recommended limit (300).
WARNING:root:dist_jb (413.606) is greater than the recommended limit (300).
WARNING:root:dist_jb (413.606) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.8) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.8) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.218) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.218) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.956) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.956) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.061) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.061) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.512) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.512) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.501) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.501) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.182) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.182) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.053) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.053) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.609) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.609) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.906) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.906) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.89) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.89) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.432) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.432) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.802) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.802) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.208) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.208) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.941) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.941) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.774) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.774) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.738) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.738) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.55) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.55) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.581) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.581) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.27) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.27) is greater than the recommended limit (300).
WARNING:root:dist_jb (314.675) is greater than the recommended limit (300).
WARNING:root:dist_jb (314.675) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.527) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.527) is greater than the recommended limit (300).
WARNING:root:dist_jb (402.465) is greater than the recommended limit (300).
WARNING:root:dist_jb (402.465) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.583) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.583) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.767) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.767) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.054) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.054) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.942) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.942) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.408) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.408) is greater than the recommended limit (300).
# i =  129
# evenid =  nn00763446
# dist_jb =  397.13247525598865
# i =  130
# evenid =  nn00763220
# dist_jb =  397.10802375687774
# i =  131
# evenid =  nn00763107
# dist_jb =  378.2716611411419
# i =  132
# evenid =  nn00762911
# dist_jb =  380.5981970034371
# i =  133
# evenid =  nc73432571
# dist_jb =  124.21746196331934
# i =  134
# evenid =  ci38605954
# dist_jb =  413.60578952642663
# i =  135
# evenid =  nn00762581
# dist_jb =  372.30602369381825
# i =  136
# evenid =  nn00762576
# dist_jb =  371.799655583167
# i =  137
# evenid =  nn00762498
# dist_jb =  392.2184414517374
# i =  138
# evenid =  nn00762457
# dist_jb =  381.95598339481484
# i =  139
# evenid =  ci38603762
# dist_jb =  411.06132801646385
# i =  140
# evenid =  nc73429346
# dist_jb =  157.02106332354825
# i =  141
# evenid =  ci38599882
# dist_jb =  435.9978714904292
# i =  142
# evenid =  nc73428141
# dist_jb =  310.51223409082615
# i =  143
# evenid =  nn00761307
# dist_jb =  389.50133984410417
# i =  144
# evenid =  nn00761157
# dist_jb =  386.18230723132206
# i =  145
# evenid =  nn00760148
# dist_jb =  426.9984428020464
# i =  146
# evenid =  ci39292639
# dist_jb =  410.9620411314086
# i =  147
# evenid =  nc73425991
# dist_jb =  310.0528195871487
# i =  148
# evenid =  nn00759846
# dist_jb =  372.6086437701761
# i =  149
# evenid =  nn00759605
# dist_jb =  390.9057047434832
# i =  150
# evenid =  nn00759507
# dist_jb =  371.88981986223666
# i =  151
# evenid =  nn00759427
# dist_jb =  381.4317119986312
# i =  152
# evenid =  nn00758843
# dist_jb =  388.8020710162399
# i =  153
# evenid =  nn00758288
# dist_jb =  426.9007551852043
# i =  154
# evenid =  nn00758285
# dist_jb =  427.20806399395644
# i =  155
# evenid =  nn00757683
# dist_jb =  426.94119512452966
# i =  156
# evenid =  nn00757652
# dist_jb =  426.77401602220164
# i =  157
# evenid =  nn00757359
# dist_jb =  372.9912567689932
# i =  158
# evenid =  nn00757297
# dist_jb =  385.2231391371572
# i =  159
# evenid =  nn00757294
# dist_jb =  385.73827720526305
# i =  160
# evenid =  nc73421981
# dist_jb =  110.70893495984528
# i =  161
# evenid =  nc73421471
# dist_jb =  310.54985449309316
# i =  162
# evenid =  nn00756756
# dist_jb =  387.58936670903637
# i =  163
# evenid =  nc73421341
# dist_jb =  277.9848145176674
# i =  164
# evenid =  nn00756704
# dist_jb =  426.58104926342713
# i =  165
# evenid =  nn00756389
# dist_jb =  427.27034712408874
# i =  166
# evenid =  nc73420366
# dist_jb =  314.6752306829248
# i =  167
# evenid =  nn00755850
# dist_jb =  392.5270407896133
# i =  168
# evenid =  nn00755304
# dist_jb =  402.4652118373707
# i =  169
# evenid =  nn00755218
# dist_jb =  379.09033357252
# i =  170
# evenid =  ci39271783
# dist_jb =  410.58299594056945
# i =  171
# evenid =  nn00754718
# dist_jb =  389.7094343646803
# i =  172
# evenid =  nn00754216
# dist_jb =  399.8536178509428
# i =  173
# evenid =  ci39268303
# dist_jb =  411.7672116320451
# i =  174
# evenid =  ci39268023
# dist_jb =  412.0541645532171
# i =  175
# evenid =  ci39266839
# dist_jb =  410.94175540722415
# i =  176
# evenid =  ci39266607
# dist_jb =  412.40848915893463
# i = 
WARNING:root:dist_jb (411.027) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.027) is greater than the recommended limit (300).
WARNING:root:dist_jb (413.792) is greater than the recommended limit (300).
WARNING:root:dist_jb (413.792) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.469) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.469) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (416.123) is greater than the recommended limit (300).
WARNING:root:dist_jb (416.123) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.71) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.71) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (414.511) is greater than the recommended limit (300).
WARNING:root:dist_jb (414.511) is greater than the recommended limit (300).
WARNING:root:dist_jb (415.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (415.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (414.809) is greater than the recommended limit (300).
WARNING:root:dist_jb (414.809) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.246) is greater than the recommended limit (300).
WARNING:root:dist_jb (412.246) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.673) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.673) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.988) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.988) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.659) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.659) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.619) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.619) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.884) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.884) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.686) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.686) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.53) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.53) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.724) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.724) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.83) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.83) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.337) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.337) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.866) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.866) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.533) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.533) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.116) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.116) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.404) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.404) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.765) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.765) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.556) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.556) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.974) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.974) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.026) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.026) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.035) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.035) is greater than the recommended limit (300).
 177
# evenid =  ci39266159
# dist_jb =  411.0265179572268
# i =  178
# evenid =  ci39496504
# dist_jb =  413.79186319441436
# i =  179
# evenid =  ci39496160
# dist_jb =  410.97147053674513
# i =  180
# evenid =  nc73415886
# dist_jb =  108.59772208631824
# i =  181
# evenid =  ci39495128
# dist_jb =  410.8502117044861
# i =  182
# evenid =  nn00752967
# dist_jb =  396.4688214452157
# i =  183
# evenid =  ci39494672
# dist_jb =  411.0807833621888
# i =  184
# evenid =  ci39494264
# dist_jb =  416.1229529158463
# i =  185
# evenid =  ci39494128
# dist_jb =  410.70996796782015
# i =  186
# evenid =  ci39494120
# dist_jb =  411.317323692305
# i =  187
# evenid =  ci39494088
# dist_jb =  414.5111561107556
# i =  188
# evenid =  ci39494008
# dist_jb =  415.44898208669997
# i =  189
# evenid =  ci39493968
# dist_jb =  414.8094405175993
# i =  190
# evenid =  ci39493944
# dist_jb =  412.2463472551871
# i =  191
# evenid =  nn00752366
# dist_jb =  373.6734740625214
# i =  192
# evenid =  ci39491464
# dist_jb =  411.259146767088
# i =  193
# evenid =  nc73414356
# dist_jb =  309.98807668678654
# i =  194
# evenid =  ci37447621
# dist_jb =  411.65937881879455
# i =  195
# evenid =  ci39491208
# dist_jb =  411.6192072071496
# i =  196
# evenid =  ci39490968
# dist_jb =  411.8843230595208
# i =  197
# evenid =  ci37447541
# dist_jb =  410.6861415968434
# i =  198
# evenid =  ci39490952
# dist_jb =  411.5297505437039
# i =  199
# evenid =  nn00751902
# dist_jb =  379.7093523817571
# i =  200
# evenid =  nn00751726
# dist_jb =  385.7683974046956
# i =  201
# evenid =  nn00751671
# dist_jb =  389.7238731670285
# i =  202
# evenid =  nn00751597
# dist_jb =  371.8295391587279
# i =  203
# evenid =  nn00751340
# dist_jb =  398.3369567783404
# i =  204
# evenid =  nn00751099
# dist_jb =  385.86557035093784
# i =  205
# evenid =  nn00751071
# dist_jb =  385.5332576348714
# i =  206
# evenid =  nn00750879
# dist_jb =  378.11638345314435
# i =  207
# evenid =  nn00750760
# dist_jb =  393.2576876009773
# i =  208
# evenid =  nn00750711
# dist_jb =  393.40397464667245
# i =  209
# evenid =  nn00750521
# dist_jb =  391.7649873631686
# i =  210
# evenid =  nn00750512
# dist_jb =  391.55562438437505
# i =  211
# evenid =  nn00750384
# dist_jb =  391.97397919882724
# i =  212
# evenid =  nn00750312
# dist_jb =  390.0261325280485
# i =  213
# evenid =  nn00750239
# dist_jb =  376.0351765547104
# i = 
WARNING:root:dist_jb (392.22) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.22) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.464) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.464) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (447.365) is greater than the recommended limit (300).
WARNING:root:dist_jb (447.365) is greater than the recommended limit (300).
WARNING:root:dist_jb (445.549) is greater than the recommended limit (300).
WARNING:root:dist_jb (445.549) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.793) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.793) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.499) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.499) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.229) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.229) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.311) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.311) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.595) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.595) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.716) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.716) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.198) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.198) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.865) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.865) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.927) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.927) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.505) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.505) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.413) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.413) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.277) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.277) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.745) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.745) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.625) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.625) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.379) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.379) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.811) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.811) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.172) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.172) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.364) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.364) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.492) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.492) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.309) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.309) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.517) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.517) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.072) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.072) is greater than the recommended limit (300).
 214
# evenid =  nn00750141
# dist_jb =  392.22031214733676
# i =  215
# evenid =  nn00750130
# dist_jb =  391.4639578961369
# i =  216
# evenid =  nn00749736
# dist_jb =  389.7298576192211
# i =  217
# evenid =  ci39483592
# dist_jb =  447.365138455811
# i =  218
# evenid =  nc73410846
# dist_jb =  67.3549716478148
# i =  219
# evenid =  ci39481424
# dist_jb =  445.5491438175199
# i =  220
# evenid =  nn00749012
# dist_jb =  384.7932262375858
# i =  221
# evenid =  nn00748811
# dist_jb =  370.49896813928683
# i =  222
# evenid =  nn00748659
# dist_jb =  377.2291635586667
# i =  223
# evenid =  nn00748633
# dist_jb =  378.93997314977696
# i =  224
# evenid =  nn00747938
# dist_jb =  385.3106424351347
# i =  225
# evenid =  nn00747919
# dist_jb =  354.5951195257146
# i =  226
# evenid =  nn00747912
# dist_jb =  354.71580748173955
# i =  227
# evenid =  nn00747897
# dist_jb =  354.59014601962906
# i =  228
# evenid =  ci39477608
# dist_jb =  461.19763169879445
# i =  229
# evenid =  nn00747748
# dist_jb =  398.86472442851203
# i =  230
# evenid =  nn00747331
# dist_jb =  372.926774149728
# i =  231
# evenid =  nn00747164
# dist_jb =  378.50505427264375
# i =  232
# evenid =  nn00746961
# dist_jb =  393.41309527106415
# i =  233
# evenid =  nn00747151
# dist_jb =  393.27674034952423
# i =  234
# evenid =  nn00746898
# dist_jb =  384.33595705162
# i =  235
# evenid =  ci39473968
# dist_jb =  466.7451609653737
# i =  236
# evenid =  nn00746745
# dist_jb =  379.62499917538076
# i =  237
# evenid =  nn00746728
# dist_jb =  385.3794054006032
# i =  238
# evenid =  nn00746699
# dist_jb =  386.8107625159174
# i =  239
# evenid =  nc73406336
# dist_jb =  149.40253162256127
# i =  240
# evenid =  nn00746288
# dist_jb =  397.17213847255067
# i =  241
# evenid =  nn00746090
# dist_jb =  385.3636338748546
# i =  242
# evenid =  nn00745837
# dist_jb =  395.49208051443776
# i =  243
# evenid =  nn00745076
# dist_jb =  377.3087156438302
# i =  244
# evenid =  ci39469848
# dist_jb =  498.5166210691926
# i =  245
# evenid =  nn00744961
# dist_jb =  394.0722907061044
WARNING:root:dist_jb (385.216) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.216) is greater than the recommended limit (300).
WARNING:root:dist_jb (307.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (307.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.386) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.386) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.021) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.021) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.393) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.393) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.217) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.217) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.773) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.773) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.969) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.969) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.939) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.939) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.375) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.375) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.54) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.54) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.595) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.595) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.893) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.893) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.016) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.016) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.206) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.206) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.838) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.838) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.977) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.977) is greater than the recommended limit (300).
WARNING:root:dist_jb (367.592) is greater than the recommended limit (300).
WARNING:root:dist_jb (367.592) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.261) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.261) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.051) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.051) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.664) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.664) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.241) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.241) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.717) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.717) is greater than the recommended limit (300).
WARNING:root:dist_jb (367.658) is greater than the recommended limit (300).
WARNING:root:dist_jb (367.658) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.162) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.162) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.116) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.116) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.999) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.999) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.169) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.169) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.438) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.438) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.508) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.508) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.038) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.038) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.319) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.319) is greater than the recommended limit (300).
# i =  246
# evenid =  nn00744819
# dist_jb =  385.2164356654331
# i =  247
# evenid =  nc73404456
# dist_jb =  307.25849094765414
# i =  248
# evenid =  nn00744554
# dist_jb =  373.38624818848206
# i =  249
# evenid =  ci39468648
# dist_jb =  426.0212729335852
# i =  250
# evenid =  nn00744304
# dist_jb =  377.3927773981821
# i =  251
# evenid =  nn00743974
# dist_jb =  393.21666427642907
# i =  252
# evenid =  nn00743844
# dist_jb =  377.7732000741522
# i =  253
# evenid =  nn00743758
# dist_jb =  392.9694600276625
# i =  254
# evenid =  nc73403421
# dist_jb =  115.64866242624458
# i =  255
# evenid =  nn00743563
# dist_jb =  366.93888920825526
# i =  256
# evenid =  nn00743528
# dist_jb =  396.3747178420467
# i =  257
# evenid =  nn00742924
# dist_jb =  378.5399406931476
# i =  258
# evenid =  ci39464360
# dist_jb =  497.59493124738935
# i =  259
# evenid =  ci39463528
# dist_jb =  501.0474509682618
# i =  260
# evenid =  ci39463336
# dist_jb =  498.61105689385397
# i =  261
# evenid =  ci39463040
# dist_jb =  499.87856115688766
# i =  262
# evenid =  ci39462920
# dist_jb =  426.28816176362113
# i =  263
# evenid =  ci39462768
# dist_jb =  500.89293108302246
# i =  264
# evenid =  ci39462744
# dist_jb =  499.0157734295712
# i =  265
# evenid =  ci39462672
# dist_jb =  498.7484366858409
# i =  266
# evenid =  ci39462536
# dist_jb =  499.0129868304719
# i =  267
# evenid =  nn00742312
# dist_jb =  372.85443027890386
# i =  268
# evenid =  ci39462368
# dist_jb =  426.2057911673183
# i =  269
# evenid =  nn00742121
# dist_jb =  384.90956028733797
# i =  270
# evenid =  ci39228631
# dist_jb =  426.19950395558163
# i =  271
# evenid =  nn00741338
# dist_jb =  374.837590531085
# i =  272
# evenid =  nn00741206
# dist_jb =  374.9766405777633
# i =  273
# evenid =  nn00740956
# dist_jb =  367.59184266186224
# i =  274
# evenid =  nn00740880
# dist_jb =  390.2610495336142
# i =  275
# evenid =  nn00740380
# dist_jb =  386.87931606037364
# i =  276
# evenid =  nn00740054
# dist_jb =  390.07939173169484
# i =  277
# evenid =  nn00740047
# dist_jb =  389.0512963249439
# i =  278
# evenid =  nn00739873
# dist_jb =  394.8751826093667
# i =  279
# evenid =  nn00739410
# dist_jb =  389.2974716504688
# i =  280
# evenid =  nn00739304
# dist_jb =  369.66376356836764
# i =  281
# evenid =  nc73399446
# dist_jb =  308.0788071550089
# i =  282
# evenid =  nn00738988
# dist_jb =  374.24063357281494
# i =  283
# evenid =  nn00738979
# dist_jb =  388.7174833102974
# i =  284
# evenid =  nn00738821
# dist_jb =  367.65795823018743
# i =  285
# evenid =  nc73399001
# dist_jb =  309.16180491634543
# i =  286
# evenid =  nc73398981
# dist_jb =  309.1157815515598
# i =  287
# evenid =  nn00738444
# dist_jb =  375.9988685679888
# i =  288
# evenid =  nn00738359
# dist_jb =  398.1691007408167
# i =  289
# evenid =  nn00738331
# dist_jb =  374.43846594460456
# i =  290
# evenid =  nn00738320
# dist_jb =  374.5079175734501
# i =  291
# evenid =  nn00738210
# dist_jb =  384.88753505199657
# i =  292
# evenid =  nn00738275
# dist_jb =  398.0384525281754
# i =  293
# evenid =  nn00738160
# dist_jb =  398.3193495075739
# i = 
WARNING:root:dist_jb (393.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.681) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.681) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.248) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.248) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.75) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.75) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.152) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.152) is greater than the recommended limit (300).
WARNING:root:dist_jb (359.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (359.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (307.99) is greater than the recommended limit (300).
WARNING:root:dist_jb (307.99) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.394) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.394) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.23) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.23) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.8) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.8) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (403.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (403.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.15) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.15) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.423) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.423) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.429) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.429) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.074) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.074) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.985) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.985) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.255) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.255) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.053) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.053) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.666) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.666) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.993) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.993) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.588) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.588) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.141) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.141) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.822) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.822) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.324) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.324) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.756) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.756) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.775) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.775) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.131) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.131) is greater than the recommended limit (300).
WARNING:root:dist_jb (402.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (402.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.07) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.07) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.034) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.034) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.275) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.275) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.723) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.723) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.889) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.889) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.93) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.93) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.383) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.383) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.161) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.161) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.567) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.567) is greater than the recommended limit (300).
 294
# evenid =  nn00737922
# dist_jb =  393.10520586735794
# i =  295
# evenid =  nn00737555
# dist_jb =  369.681304227212
# i =  296
# evenid =  nc73397916
# dist_jb =  162.99020246966657
# i =  297
# evenid =  nn00737490
# dist_jb =  389.24826036419887
# i =  298
# evenid =  nn00737209
# dist_jb =  399.75042054560777
# i =  299
# evenid =  nn00737089
# dist_jb =  373.15241670661476
# i =  300
# evenid =  nn00736986
# dist_jb =  359.70299586374597
# i =  301
# evenid =  nc73397436
# dist_jb =  307.99031530173295
# i =  302
# evenid =  nc73397431
# dist_jb =  308.3940545691414
# i =  303
# evenid =  nn00736648
# dist_jb =  369.22985451181484
# i =  304
# evenid =  nn00736500
# dist_jb =  388.79961416400806
# i =  305
# evenid =  nc73397161
# dist_jb =  123.21033634099248
# i =  306
# evenid =  nn00736420
# dist_jb =  392.9139499068001
# i =  307
# evenid =  ci39218863
# dist_jb =  403.9168753678128
# i =  308
# evenid =  nn00735933
# dist_jb =  389.1501017050362
# i =  309
# evenid =  nn00735859
# dist_jb =  371.0424079080757
# i =  310
# evenid =  nn00735741
# dist_jb =  391.4229250095826
# i =  311
# evenid =  nn00735530
# dist_jb =  386.13486527971855
# i =  312
# evenid =  nn00735203
# dist_jb =  378.4294003923781
# i =  313
# evenid =  nn00735067
# dist_jb =  368.07413802345695
# i =  314
# evenid =  nn00734769
# dist_jb =  399.5935563842873
# i =  315
# evenid =  nn00734692
# dist_jb =  397.984794035959
# i =  316
# evenid =  nn00734638
# dist_jb =  388.25529050324013
# i =  317
# evenid =  nn00734320
# dist_jb =  369.05274262896233
# i =  318
# evenid =  nc73395891
# dist_jb =  144.86359978818393
# i =  319
# evenid =  nn00734239
# dist_jb =  387.66623464448287
# i =  320
# evenid =  nn00733785
# dist_jb =  374.9925031118774
# i =  321
# evenid =  nn00733773
# dist_jb =  378.58767707039965
# i =  322
# evenid =  nn00733754
# dist_jb =  377.1409409213942
# i =  323
# evenid =  nn00733701
# dist_jb =  376.82182721989085
# i =  324
# evenid =  nn00733694
# dist_jb =  376.32398613064646
# i =  325
# evenid =  nn00733691
# dist_jb =  376.7562960946405
# i =  326
# evenid =  nn00733594
# dist_jb =  398.5943020099847
# i =  327
# evenid =  nn00733527
# dist_jb =  385.77527079855986
# i =  328
# evenid =  nn00733258
# dist_jb =  386.13071617412356
# i =  329
# evenid =  nn00733243
# dist_jb =  402.03217516817074
# i =  330
# evenid =  ci39214247
# dist_jb =  462.0697891872969
# i =  331
# evenid =  ci39214127
# dist_jb =  462.03446383701583
# i =  332
# evenid =  nn00733035
# dist_jb =  377.2746130637742
# i =  333
# evenid =  nn00733012
# dist_jb =  368.7227083214867
# i =  334
# evenid =  nn00732813
# dist_jb =  378.88874122829907
# i =  335
# evenid =  nn00732809
# dist_jb =  378.92972230735876
# i =  336
# evenid =  nn00732354
# dist_jb =  389.3831931949146
# i =  337
# evenid =  nn00732194
# dist_jb =  388.161342777839
# i =  338
# evenid =  nn00732164
# dist_jb =  376.15119510492445
# i =  339
# evenid =  nn00731990
# dist_jb =  374.56691068651804
# i = 
WARNING:root:dist_jb (379.5) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.5) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.848) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.848) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.514) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.514) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.986) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.986) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.924) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.924) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.899) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.899) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.78) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.78) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.825) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.825) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.722) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.722) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.04) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.04) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.604) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.604) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.039) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.039) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.791) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.791) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.147) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.147) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.313) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.313) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.751) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.751) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.718) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.718) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.937) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.937) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.599) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.599) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.296) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.296) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.856) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.856) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.253) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.253) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.282) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.282) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.622) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.622) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.029) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.029) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.963) is greater than the recommended limit (300).
 340
# evenid =  nn00731765
# dist_jb =  379.4996182017748
# i =  341
# evenid =  nc73393851
# dist_jb =  291.06667047462963
# i =  342
# evenid =  nn00731683
# dist_jb =  399.84809079410167
# i =  343
# evenid =  nn00731458
# dist_jb =  378.5140013590432
# i =  344
# evenid =  nn00731403
# dist_jb =  387.986384517493
# i =  345
# evenid =  nn00731384
# dist_jb =  387.92375483651597
# i =  346
# evenid =  nc73393256
# dist_jb =  278.8011405946651
# i =  347
# evenid =  nn00731265
# dist_jb =  369.89922757374603
# i =  348
# evenid =  nn00731306
# dist_jb =  369.7803353166715
# i =  349
# evenid =  nn00731201
# dist_jb =  388.825305983467
# i =  350
# evenid =  nn00731147
# dist_jb =  376.722176449949
# i =  351
# evenid =  nn00731001
# dist_jb =  375.0402229284283
# i =  352
# evenid =  nn00730902
# dist_jb =  378.60415039834686
# i =  353
# evenid =  nn00730721
# dist_jb =  394.0394336094528
# i =  354
# evenid =  nn00730707
# dist_jb =  398.1780278880447
# i =  355
# evenid =  nn00730461
# dist_jb =  375.2579579369472
# i =  356
# evenid =  nn00730463
# dist_jb =  385.66506377476884
# i =  357
# evenid =  nn00730380
# dist_jb =  389.7914311985176
# i =  358
# evenid =  nn00730278
# dist_jb =  389.1469605875723
# i =  359
# evenid =  nn00730059
# dist_jb =  399.6874985330905
# i =  360
# evenid =  nn00729996
# dist_jb =  385.3134108622124
# i =  361
# evenid =  nn00729837
# dist_jb =  394.7513258594436
# i =  362
# evenid =  nn00729812
# dist_jb =  387.6780184657907
# i =  363
# evenid =  nn00729788
# dist_jb =  369.7180708712092
# i =  364
# evenid =  nn00729693
# dist_jb =  398.9368052316831
# i =  365
# evenid =  nn00729653
# dist_jb =  398.24919690382944
# i =  366
# evenid =  nn00729592
# dist_jb =  399.30586031124005
# i =  367
# evenid =  ci39208391
# dist_jb =  488.5992224504777
# i =  368
# evenid =  nn00729525
# dist_jb =  377.29583390335745
# i =  369
# evenid =  nn00729511
# dist_jb =  398.8563189456979
# i =  370
# evenid =  nn00729488
# dist_jb =  379.2526652143516
# i =  371
# evenid =  nn00729475
# dist_jb =  379.3415058475132
# i =  372
# evenid =  nn00729463
# dist_jb =  393.6243546234714
# i =  373
# evenid =  nn00729441
# dist_jb =  397.4908567122473
# i =  374
# evenid =  nn00729412
# dist_jb =  397.28230075689044
# i =  375
# evenid =  nn00729383
# dist_jb =  397.5766639086759
# i =  376
# evenid =  nn00729347
# dist_jb =  398.6221062944201
# i =  377
# evenid =  nn00729339
# dist_jb =  398.1699531288394
# i =  378
# evenid =  us6000a0ze
# dist_jb =  396.87905398998754
# i =  379
# evenid =  nn00729332
# dist_jb =  398.04757078688016
# i =  380
# evenid =  nn00729376
# dist_jb =  390.02876618080666
# i =  381
# evenid =  us70009liu
# dist_jb =  390.9628217784368
WARNING:root:dist_jb (390.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.405) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.405) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.928) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.928) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.066) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.066) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.92) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.92) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.739) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.739) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.497) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.497) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.341) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.341) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.403) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.403) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.157) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.157) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (348.694) is greater than the recommended limit (300).
WARNING:root:dist_jb (348.694) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.466) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.466) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.631) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.631) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.809) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.809) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.522) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.522) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.15) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.15) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.79) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.79) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.45) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.45) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.237) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.237) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.245) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.245) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.866) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.866) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.184) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.184) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.815) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.815) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.224) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.224) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.834) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.834) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.782) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.782) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.357) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.357) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.833) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.833) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.227) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.227) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.535) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.535) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.116) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.116) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.377) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.377) is greater than the recommended limit (300).
# i =  382
# evenid =  nn00729220
# dist_jb =  368.25764932708125
# i =  383
# evenid =  nn00729215
# dist_jb =  369.4049206046026
# i =  384
# evenid =  nn00729217
# dist_jb =  368.92760900124534
# i =  385
# evenid =  nn00729141
# dist_jb =  376.0658654309463
# i =  386
# evenid =  nn00729077
# dist_jb =  385.91968006588644
# i =  387
# evenid =  nn00729041
# dist_jb =  378.739220165269
# i =  388
# evenid =  nn00728983
# dist_jb =  369.7757415532413
# i =  389
# evenid =  nn00728954
# dist_jb =  369.4974676483987
# i =  390
# evenid =  nn00728945
# dist_jb =  388.1093135508673
# i =  391
# evenid =  nn00728896
# dist_jb =  387.34063713554303
# i =  392
# evenid =  nn00728819
# dist_jb =  388.4033506258611
# i =  393
# evenid =  nn00735484
# dist_jb =  386.15719561341643
# i =  394
# evenid =  nn00728804
# dist_jb =  384.0484724598988
# i =  395
# evenid =  nc73390316
# dist_jb =  348.6938452066875
# i =  396
# evenid =  nn00728682
# dist_jb =  379.4664144121024
# i =  397
# evenid =  nn00728633
# dist_jb =  393.7873953049986
# i =  398
# evenid =  nn00728620
# dist_jb =  393.6309021438032
# i =  399
# evenid =  nn00728614
# dist_jb =  387.8123918680951
# i =  400
# evenid =  nn00728581
# dist_jb =  369.809428832222
# i =  401
# evenid =  nn00728557
# dist_jb =  369.52183652828023
# i =  402
# evenid =  nn00728546
# dist_jb =  392.95197974336304
# i =  403
# evenid =  nc73389911
# dist_jb =  311.14982832671245
# i =  404
# evenid =  nn00728359
# dist_jb =  384.9894707068983
# i =  405
# evenid =  nn00728324
# dist_jb =  379.3012648352709
# i =  406
# evenid =  nn00728264
# dist_jb =  395.7904738472244
# i =  407
# evenid =  nn00728253
# dist_jb =  387.29683130176335
# i =  408
# evenid =  nn00728210
# dist_jb =  376.1284017499439
# i =  409
# evenid =  nn00728170
# dist_jb =  385.4497921403529
# i =  410
# evenid =  nn00728161
# dist_jb =  382.10516791660314
# i =  411
# evenid =  nn00728153
# dist_jb =  386.98857836370814
# i =  412
# evenid =  nn00728129
# dist_jb =  394.23727747773285
# i =  413
# evenid =  nn00728122
# dist_jb =  371.24465001227713
# i =  414
# evenid =  nn00728105
# dist_jb =  398.2954139653354
# i =  415
# evenid =  nn00728025
# dist_jb =  397.8661468835506
# i =  416
# evenid =  nn00728048
# dist_jb =  398.74826070980436
# i =  417
# evenid =  nn00727938
# dist_jb =  377.18403871271767
# i =  418
# evenid =  nn00727909
# dist_jb =  389.81534294714453
# i =  419
# evenid =  nn00727892
# dist_jb =  395.58628128519996
# i =  420
# evenid =  nn00727886
# dist_jb =  387.22361706874835
# i =  421
# evenid =  nn00727829
# dist_jb =  397.8337970503088
# i =  422
# evenid =  nn00727712
# dist_jb =  366.7820236057789
# i =  423
# evenid =  nn00727655
# dist_jb =  399.59417517173836
# i =  424
# evenid =  nn00727646
# dist_jb =  390.04242713601326
# i =  425
# evenid =  nn00727640
# dist_jb =  379.35666346041927
# i =  426
# evenid =  nn00727618
# dist_jb =  376.0145153103918
# i =  427
# evenid =  nn00727575
# dist_jb =  371.3401785998906
# i =  428
# evenid =  nn00727561
# dist_jb =  392.83319802715835
# i =  429
# evenid =  nn00727500
# dist_jb =  370.2266854274259
# i =  430
# evenid =  nn00727505
# dist_jb =  378.53517893434434
# i =  431
# evenid =  nn00727479
# dist_jb =  381.1162591943947
# i =  432
# evenid =  nn00727460
# dist_jb =  375.80437733759953
# i =  433
# evenid =  nc73389810
# dist_jb =  257.739868239929
# i =  434
# evenid =  nn00727414
# dist_jb =  398.3771823241971
# i =  435
WARNING:root:dist_jb (328.369) is greater than the recommended limit (300).
WARNING:root:dist_jb (328.369) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.323) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.323) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.115) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.115) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.328) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.328) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.65) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.65) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.636) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.636) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.873) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.873) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.424) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.424) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.016) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.016) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.894) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.894) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.351) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.351) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.702) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.702) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.399) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.399) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.603) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.603) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.247) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.247) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.037) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.037) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.506) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.506) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.661) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.661) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.134) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.134) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.644) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.644) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.99) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.99) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.674) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.674) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.538) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.538) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.404) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.404) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.508) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.508) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.472) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.472) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.97) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.97) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.098) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.098) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.054) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.054) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.762) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.762) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.44) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.44) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.174) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.174) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.388) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.388) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.248) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.248) is greater than the recommended limit (300).
# evenid =  nn00727369
# dist_jb =  328.36885592557707
# i =  436
# evenid =  ci39204695
# dist_jb =  464.32323304951524
# i =  437
# evenid =  nn00727300
# dist_jb =  379.11544301759307
# i =  438
# evenid =  nn00727277
# dist_jb =  373.6961075350502
# i =  439
# evenid =  nn00727244
# dist_jb =  379.32756920294975
# i =  440
# evenid =  nn00727224
# dist_jb =  394.6499146303361
# i =  441
# evenid =  nn00727164
# dist_jb =  375.6360893786191
# i =  442
# evenid =  nn00727120
# dist_jb =  389.15098526809095
# i =  443
# evenid =  nn00727104
# dist_jb =  376.8734657180465
# i =  444
# evenid =  nn00727083
# dist_jb =  374.42410048069263
# i =  445
# evenid =  nn00727385
# dist_jb =  394.33562388547404
# i =  446
# evenid =  nn00727043
# dist_jb =  386.0162472310667
# i =  447
# evenid =  nn00727030
# dist_jb =  397.8941113955181
# i =  448
# evenid =  nn00727031
# dist_jb =  381.3507506028677
# i =  449
# evenid =  nn00727009
# dist_jb =  369.70154787767905
# i =  450
# evenid =  nn00726986
# dist_jb =  388.3988898599084
# i =  451
# evenid =  nn00726941
# dist_jb =  398.60305092353104
# i =  452
# evenid =  nn00726923
# dist_jb =  388.24734361565976
# i =  453
# evenid =  nn00726910
# dist_jb =  393.74753385474173
# i =  454
# evenid =  nn00726881
# dist_jb =  396.7680833298216
# i =  455
# evenid =  nn00726797
# dist_jb =  400.03713384084057
# i =  456
# evenid =  nn00726772
# dist_jb =  372.50617191079044
# i =  457
# evenid =  nn00726756
# dist_jb =  370.31410581485704
# i =  458
# evenid =  nn00726749
# dist_jb =  394.9404154245061
# i =  459
# evenid =  nn00726744
# dist_jb =  385.66140433348346
# i =  460
# evenid =  nn00726716
# dist_jb =  375.63684783354535
# i =  461
# evenid =  nn00726703
# dist_jb =  381.1336158815627
# i =  462
# evenid =  nn00726665
# dist_jb =  396.6439212958889
# i =  463
# evenid =  nn00726657
# dist_jb =  378.9900371659923
# i =  464
# evenid =  nn00726646
# dist_jb =  388.67367794771843
# i =  465
# evenid =  us70009mpc
# dist_jb =  398.5377258051653
# i =  466
# evenid =  nn00726624
# dist_jb =  397.4040681521215
# i =  467
# evenid =  nn00726593
# dist_jb =  395.50783977335334
# i =  468
# evenid =  nn00726587
# dist_jb =  394.6719896464778
# i =  469
# evenid =  nn00726581
# dist_jb =  373.80795670682244
# i =  470
# evenid =  nn00726527
# dist_jb =  396.08960035169144
# i =  471
# evenid =  nc73388380
# dist_jb =  156.5196915718664
# i =  472
# evenid =  nn00726524
# dist_jb =  396.47156207906835
# i =  473
# evenid =  nn00726521
# dist_jb =  398.59390132971555
# i =  474
# evenid =  nn00726468
# dist_jb =  392.9703515291824
# i =  475
# evenid =  nn00726443
# dist_jb =  377.0978740433005
# i =  476
# evenid =  nn00726361
# dist_jb =  398.89595839092635
# i =  477
# evenid =  nn00726353
# dist_jb =  399.0543254547793
# i =  478
# evenid =  nn00726350
# dist_jb =  395.76206410737507
# i =  479
# evenid =  nn00726322
# dist_jb =  380.4397246335213
# i =  480
# evenid =  nn00726300
# dist_jb =  384.17371073890746
# i =  481
# evenid =  nn00726292
# dist_jb =  384.38827157258686
# i =  482
# evenid =  nn00726267
# dist_jb =  372.2482267403127
# i =  483
# evenid =  nn00726236
# dist_jb =  397.9415917644446
WARNING:root:dist_jb (397.942) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.942) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.361) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.361) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.477) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.477) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.049) is greater than the recommended limit (300).
WARNING:root:dist_jb (396.049) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.959) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.959) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.748) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.976) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.976) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.219) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.219) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.473) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.473) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.746) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.746) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.256) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.256) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.949) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.949) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.436) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.436) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.712) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.712) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.085) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.085) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.497) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.497) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.518) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.518) is greater than the recommended limit (300).
WARNING:root:dist_jb (430.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (430.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.658) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.658) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.375) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.375) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.286) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.286) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.238) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.238) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.156) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.156) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.532) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.532) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.153) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.153) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.628) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.628) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.885) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.885) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.75) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.75) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.185) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.185) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.873) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.873) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.548) is greater than the recommended limit (300).
# i =  484
# evenid =  nn00726229
# dist_jb =  385.3610501759251
# i =  485
# evenid =  nn00726225
# dist_jb =  369.47655252639606
# i =  486
# evenid =  nn00726177
# dist_jb =  389.9501536412803
# i =  487
# evenid =  nn00726147
# dist_jb =  396.0491147471146
# i =  488
# evenid =  nn00726145
# dist_jb =  387.959409884637
# i =  489
# evenid =  nn00726140
# dist_jb =  397.74834216514404
# i =  490
# evenid =  nn00726129
# dist_jb =  398.97618797147453
# i =  491
# evenid =  nn00726119
# dist_jb =  400.787277535112
# i =  492
# evenid =  nn00726114
# dist_jb =  376.7682894309933
# i =  493
# evenid =  nn00726095
# dist_jb =  354.21872634753913
# i =  494
# evenid =  nn00726059
# dist_jb =  389.4725507186132
# i =  495
# evenid =  nn00726050
# dist_jb =  381.31742525894526
# i =  496
# evenid =  nn00726051
# dist_jb =  387.7887390314723
# i =  497
# evenid =  nn00726047
# dist_jb =  379.7458358017998
# i =  498
# evenid =  nn00726027
# dist_jb =  388.25581664358566
# i =  499
# evenid =  nn00726015
# dist_jb =  383.9487491689529
# i =  500
# evenid =  nn00726009
# dist_jb =  377.4359624803412
# i =  501
# evenid =  ci39202567
# dist_jb =  487.71230298564535
# i =  502
# evenid =  nn00725966
# dist_jb =  381.0849262028537
# i =  503
# evenid =  nn00725939
# dist_jb =  374.70897350038297
# i =  504
# evenid =  nn00725933
# dist_jb =  392.4968868019228
# i =  505
# evenid =  nn00725918
# dist_jb =  380.5182907707872
# i =  506
# evenid =  ci39202447
# dist_jb =  430.6870630195869
# i =  507
# evenid =  nn00725864
# dist_jb =  394.65814914276854
# i =  508
# evenid =  nn00725846
# dist_jb =  377.9906953834196
# i =  509
# evenid =  nn00725782
# dist_jb =  382.76425006391804
# i =  510
# evenid =  nn00725777
# dist_jb =  389.37482877533006
# i =  511
# evenid =  nn00725763
# dist_jb =  399.28574367078085
# i =  512
# evenid =  nn00725752
# dist_jb =  374.23800679929576
# i =  513
# evenid =  nn00725743
# dist_jb =  393.156305387561
# i =  514
# evenid =  nc73386685
# dist_jb =  262.12828901272326
# i =  515
# evenid =  nn00725719
# dist_jb =  380.53165448944
# i =  516
# evenid =  us70009hbw
# dist_jb =  390.15286691496294
# i =  517
# evenid =  nn00725717
# dist_jb =  392.6275906093996
# i =  518
# evenid =  nn00725694
# dist_jb =  377.8853003381091
# i =  519
# evenid =  nn00725650
# dist_jb =  389.74960043890866
# i =  520
# evenid =  nn00725643
# dist_jb =  389.1851265273549
# i =  521
# evenid =  nn00725627
# dist_jb =  391.87308747383764
# i =  522
# evenid =  nn00725616
# dist_jb =  377.5484072583619
# i = 
WARNING:root:dist_jb (384.835) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.835) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (364.87) is greater than the recommended limit (300).
WARNING:root:dist_jb (364.87) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.437) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.437) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.946) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.946) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.417) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.417) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.179) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.179) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.485) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.485) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.489) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.489) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.588) is greater than the recommended limit (300).
WARNING:root:dist_jb (373.588) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.199) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.199) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (389.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.239) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.239) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.956) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.956) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.456) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.456) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.42) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.42) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.852) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.852) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.837) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.837) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.381) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.381) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.188) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.188) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.693) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.693) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.369) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.369) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.659) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.659) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.414) is greater than the recommended limit (300).
WARNING:root:dist_jb (379.414) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.011) is greater than the recommended limit (300).
 523
# evenid =  nn00725611
# dist_jb =  384.83549115614926
# i =  524
# evenid =  nn00725605
# dist_jb =  400.06328222211226
# i =  525
# evenid =  us70009h3w
# dist_jb =  364.870200802609
# i =  526
# evenid =  nn00725597
# dist_jb =  385.4368518271587
# i =  527
# evenid =  nn00725596
# dist_jb =  387.91362517620666
# i =  528
# evenid =  nn00725588
# dist_jb =  377.9459197402295
# i =  529
# evenid =  nn00725582
# dist_jb =  398.41716992972584
# i =  530
# evenid =  nn00725563
# dist_jb =  389.3420964349092
# i =  531
# evenid =  nn00725555
# dist_jb =  381.6720735683745
# i =  532
# evenid =  nn00725552
# dist_jb =  379.1787505918449
# i =  533
# evenid =  nn00725546
# dist_jb =  390.48509627643
# i =  534
# evenid =  nn00725545
# dist_jb =  380.9975553486189
# i =  535
# evenid =  nn00725538
# dist_jb =  371.489019872399
# i =  536
# evenid =  nn00725533
# dist_jb =  373.5877590605205
# i =  537
# evenid =  nn00725526
# dist_jb =  374.0808653637795
# i =  538
# evenid =  nn00725521
# dist_jb =  399.1046325873656
# i =  539
# evenid =  nn00725516
# dist_jb =  390.1993610618222
# i =  540
# evenid =  nn00725509
# dist_jb =  389.8507365582173
# i =  541
# evenid =  nn00725492
# dist_jb =  392.2386139830469
# i =  542
# evenid =  nn00725489
# dist_jb =  383.9562873210289
# i =  543
# evenid =  nn00735763
# dist_jb =  387.5089181893103
# i =  544
# evenid =  us70009gwi
# dist_jb =  398.45640876988796
# i =  545
# evenid =  nn00725464
# dist_jb =  382.4202864099306
# i =  546
# evenid =  nn00725454
# dist_jb =  392.97100482123517
# i =  547
# evenid =  nn00725448
# dist_jb =  378.851778105552
# i =  548
# evenid =  nn00725442
# dist_jb =  379.8366654169921
# i =  549
# evenid =  nn00725434
# dist_jb =  384.3813396944157
# i =  550
# evenid =  nn00725426
# dist_jb =  379.56401689862207
# i =  551
# evenid =  nn00725415
# dist_jb =  399.9541403745932
# i =  552
# evenid =  nn00746659
# dist_jb =  377.1882450875001
# i =  553
# evenid =  nn00725402
# dist_jb =  377.8036625777876
# i =  554
# evenid =  nn00725400
# dist_jb =  392.69255571915664
# i =  555
# evenid =  us70009gq6
# dist_jb =  375.37562544333605
# i =  556
# evenid =  nn00725399
# dist_jb =  375.3692309723147
# i =  557
# evenid =  nn00725387
# dist_jb =  380.6110471934009
# i =  558
# evenid =  nn00725380
# dist_jb =  398.5770683890099
# i =  559
# evenid =  nn00725373
# dist_jb =  379.8829778006401
# i =  560
# evenid =  nn00725367
# dist_jb =  395.54829564677965
# i =  561
# evenid =  nn00725363
# dist_jb =  387.65862032708503
# i =  562
# evenid =  nn00725360
# dist_jb =  379.4144496863368
# i =  563
# evenid =  nn00725359
# dist_jb =  388.0109749632885
WARNING:root:dist_jb (388.011) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.777) is greater than the recommended limit (300).
WARNING:root:dist_jb (382.777) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (393.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.02) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.02) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.318) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.318) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.508) is greater than the recommended limit (300).
WARNING:root:dist_jb (394.508) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.233) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.233) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (387.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.114) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.114) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.23) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.23) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.024) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.024) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.731) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.731) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.975) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.975) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.599) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.599) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.77) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.77) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.432) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.432) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.904) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.904) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (377.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.89) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.89) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.997) is greater than the recommended limit (300).
WARNING:root:dist_jb (378.997) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.352) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.352) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.404) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.404) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.862) is greater than the recommended limit (300).
WARNING:root:dist_jb (395.862) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.691) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.691) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.829) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.829) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (313.413) is greater than the recommended limit (300).
WARNING:root:dist_jb (313.413) is greater than the recommended limit (300).
WARNING:root:dist_jb (313.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (313.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.882) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.882) is greater than the recommended limit (300).
WARNING:root:dist_jb (335.443) is greater than the recommended limit (300).
WARNING:root:dist_jb (335.443) is greater than the recommended limit (300).
# i =  564
# evenid =  nn00725354
# dist_jb =  382.7765147317736
# i =  565
# evenid =  nn00725345
# dist_jb =  393.4408021797879
# i =  566
# evenid =  nn00725343
# dist_jb =  397.67764816556615
# i =  567
# evenid =  nn00725341
# dist_jb =  372.020381096186
# i =  568
# evenid =  nn00725340
# dist_jb =  392.3179954246639
# i =  569
# evenid =  nn00725337
# dist_jb =  394.5081529037039
# i =  570
# evenid =  nn00725335
# dist_jb =  387.5480963347711
# i =  571
# evenid =  us70009gls
# dist_jb =  383.2331176267885
# i =  572
# evenid =  nn00725328
# dist_jb =  387.0806964644789
# i =  573
# evenid =  nn00725325
# dist_jb =  384.62994642280233
# i =  574
# evenid =  nn00725323
# dist_jb =  386.80829216763874
# i =  575
# evenid =  nn00725312
# dist_jb =  392.113692617876
# i =  576
# evenid =  us70009gka
# dist_jb =  385.2301515890736
# i =  577
# evenid =  nn00725310
# dist_jb =  384.0235937468369
# i =  578
# evenid =  nn00725306
# dist_jb =  376.87497285064427
# i =  579
# evenid =  nn00725300
# dist_jb =  377.7313443605943
# i =  580
# evenid =  nn00742909
# dist_jb =  397.9747122930164
# i =  581
# evenid =  nn00725299
# dist_jb =  366.59860370663216
# i =  582
# evenid =  nn00742902
# dist_jb =  374.77016227271287
# i =  583
# evenid =  nn00742898
# dist_jb =  377.43187043748526
# i =  584
# evenid =  nn00725296
# dist_jb =  376.2945027182768
# i =  585
# evenid =  nn00725291
# dist_jb =  386.90392830476685
# i =  586
# evenid =  us70009gji
# dist_jb =  377.8884584538812
# i =  587
# evenid =  nn00742885
# dist_jb =  372.8900495937831
# i =  588
# evenid =  nn00725284
# dist_jb =  378.99695229716104
# i =  589
# evenid =  nn00725330
# dist_jb =  383.35236587974816
# i =  590
# evenid =  nn00725279
# dist_jb =  386.4038896913496
# i =  591
# evenid =  nn00742884
# dist_jb =  395.8623610330206
# i =  592
# evenid =  nn00725277
# dist_jb =  375.7763016984717
# i =  593
# evenid =  nn00725272
# dist_jb =  388.69054942085927
# i =  594
# evenid =  ci39200671
# dist_jb =  500.82947869210136
# i =  595
# evenid =  nc73384075
# dist_jb =  376.6647731383139
# i =  596
# evenid =  nc73383660
# dist_jb =  313.41275404213286
# i =  597
# evenid =  nc73383655
# dist_jb =  313.04334596614
# i =  598
# evenid =  us70009cel
# dist_jb =  309.88205289851527
# i =  599
# evenid =  nc73379725
# dist_jb =  335.4429893657353
# i =  600
# evenid =  uw61618026
# dist_jb =  467.49746701846277
WARNING:root:dist_jb (467.497) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.497) is greater than the recommended limit (300).
WARNING:root:dist_jb (349.046) is greater than the recommended limit (300).
WARNING:root:dist_jb (349.046) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.741) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.741) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.907) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.907) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.532) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.532) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.646) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.646) is greater than the recommended limit (300).
WARNING:root:dist_jb (454.546) is greater than the recommended limit (300).
WARNING:root:dist_jb (454.546) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.402) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.402) is greater than the recommended limit (300).
WARNING:root:dist_jb (362.66) is greater than the recommended limit (300).
WARNING:root:dist_jb (362.66) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.355) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.355) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.846) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.846) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.87) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.87) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.078) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.078) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.175) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.175) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.859) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.859) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.727) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.727) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.879) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.716) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.716) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.061) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.061) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.009) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.009) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.986) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.986) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.245) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.245) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.105) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.266) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.266) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.402) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.402) is greater than the recommended limit (300).
WARNING:root:dist_jb (312.266) is greater than the recommended limit (300).
WARNING:root:dist_jb (312.266) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.604) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.604) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (311.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.662) is greater than the recommended limit (300).
WARNING:root:dist_jb (308.662) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.615) is greater than the recommended limit (300).
WARNING:root:dist_jb (310.615) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.419) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.419) is greater than the recommended limit (300).
WARNING:root:dist_jb (303.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (303.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.322) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.322) is greater than the recommended limit (300).
WARNING:root:dist_jb (358.608) is greater than the recommended limit (300).
WARNING:root:dist_jb (358.608) is greater than the recommended limit (300).
# i =  601
# evenid =  nc73378105
# dist_jb =  349.0463606157429
# i =  602
# evenid =  ci39406880
# dist_jb =  490.33205996962664
# i =  603
# evenid =  nc73376015
# dist_jb =  388.74070069297574
# i =  604
# evenid =  uw61603907
# dist_jb =  467.81178807474356
# i =  605
# evenid =  nn00723444
# dist_jb =  452.90683774467186
# i =  606
# evenid =  nc73374335
# dist_jb =  308.53167874181395
# i =  607
# evenid =  nc73374265
# dist_jb =  308.64647625367166
# i =  608
# evenid =  ci39396176
# dist_jb =  454.5457714213325
# i =  609
# evenid =  nc73372865
# dist_jb =  386.40160412476297
# i =  610
# evenid =  nc73372780
# dist_jb =  362.65985227823364
# i =  611
# evenid =  ci39395096
# dist_jb =  483.35515660332186
# i =  612
# evenid =  ci39395080
# dist_jb =  483.44055890860653
# i =  613
# evenid =  nc73372055
# dist_jb =  304.8463857630322
# i =  614
# evenid =  nc73371980
# dist_jb =  308.48063053581456
# i =  615
# evenid =  nc73371960
# dist_jb =  310.86961175728214
# i =  616
# evenid =  nc73371655
# dist_jb =  309.07763095006584
# i =  617
# evenid =  nc73371650
# dist_jb =  309.1748024266128
# i =  618
# evenid =  nc73371600
# dist_jb =  309.41763179275927
# i =  619
# evenid =  nc73371210
# dist_jb =  308.85903470645496
# i =  620
# evenid =  ci39387336
# dist_jb =  438.8769579091282
# i =  621
# evenid =  ci39386896
# dist_jb =  495.7270280647206
# i =  622
# evenid =  nc73369915
# dist_jb =  310.878957766317
# i =  623
# evenid =  nc73369790
# dist_jb =  310.7156506843016
# i =  624
# evenid =  nc73369355
# dist_jb =  311.0423152736914
# i =  625
# evenid =  nc73368885
# dist_jb =  311.061143444777
# i =  626
# evenid =  nc73368095
# dist_jb =  309.00919916518137
# i =  627
# evenid =  nc73367900
# dist_jb =  310.9863712024046
# i =  628
# evenid =  nc73367750
# dist_jb =  310.2446775081851
# i =  629
# evenid =  nc71112204
# dist_jb =  311.1049784096184
# i =  630
# evenid =  nc73367715
# dist_jb =  311.6525007679202
# i =  631
# evenid =  nc73367635
# dist_jb =  309.30580014413624
# i =  632
# evenid =  nc73367640
# dist_jb =  309.26590156209045
# i =  633
# evenid =  nc73367590
# dist_jb =  309.3761902390895
# i =  634
# evenid =  nc73367575
# dist_jb =  308.4024391670555
# i =  635
# evenid =  nc73367495
# dist_jb =  312.26617234508217
# i =  636
# evenid =  nc73367425
# dist_jb =  308.60399923071907
# i =  637
# evenid =  nc73367320
# dist_jb =  311.72934217480895
# i =  638
# evenid =  nc73367280
# dist_jb =  308.6617821838163
# i =  639
# evenid =  nc73367270
# dist_jb =  310.61538417773795
# i =  640
# evenid =  nc73366700
# dist_jb =  218.14273845445564
# i =  641
# evenid =  ci39138391
# dist_jb =  488.418635192993
# i =  642
# evenid =  nc73364330
# dist_jb =  303.0060235758176
# i =  643
# evenid =  ci39127167
# dist_jb =  463.32210891247274
# i =  644
# evenid =  nc73362735
# dist_jb =  358.60755751180284
WARNING:root:dist_jb (502.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (335.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (335.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (341.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (341.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (359.753) is greater than the recommended limit (300).
WARNING:root:dist_jb (359.753) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.864) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.864) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.411) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.411) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.073) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.073) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.725) is greater than the recommended limit (300).
WARNING:root:dist_jb (399.725) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.513) is greater than the recommended limit (300).
WARNING:root:dist_jb (390.513) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.719) is greater than the recommended limit (300).
WARNING:root:dist_jb (381.719) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.276) is greater than the recommended limit (300).
WARNING:root:dist_jb (372.276) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (371.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.647) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.647) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.467) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.467) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.951) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.951) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.451) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.451) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.049) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.049) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.557) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.557) is greater than the recommended limit (300).
WARNING:root:dist_jb (339.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (339.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.935) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.935) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.794) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.794) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (408.806) is greater than the recommended limit (300).
WARNING:root:dist_jb (408.806) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.021) is greater than the recommended limit (300).
WARNING:root:dist_jb (384.021) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.458) is greater than the recommended limit (300).
WARNING:root:dist_jb (411.458) is greater than the recommended limit (300).
WARNING:root:dist_jb (323.788) is greater than the recommended limit (300).
WARNING:root:dist_jb (323.788) is greater than the recommended limit (300).
WARNING:root:dist_jb (326.224) is greater than the recommended limit (300).
WARNING:root:dist_jb (326.224) is greater than the recommended limit (300).
WARNING:root:dist_jb (351.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (351.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.803) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.803) is greater than the recommended limit (300).
WARNING:root:dist_jb (325.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (325.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.135) is greater than the recommended limit (300).
# i =  645
# evenid =  ci39116263
# dist_jb =  502.8123863858265
# i =  646
# evenid =  nc73358970
# dist_jb =  110.89982559379689
# i =  647
# evenid =  nn00720284
# dist_jb =  335.4714828378774
# i =  648
# evenid =  nc73357735
# dist_jb =  341.47108890102203
# i =  649
# evenid =  ci39111991
# dist_jb =  485.50963248274286
# i =  650
# evenid =  nc73357410
# dist_jb =  359.75292932839625
# i =  651
# evenid =  nn00719846
# dist_jb =  259.37029386745394
# i =  652
# evenid =  nn00719663
# dist_jb =  259.59411460651864
# i =  653
# evenid =  ci39108583
# dist_jb =  488.8873235510912
# i =  654
# evenid =  nc73355700
# dist_jb =  333.86445858138575
# i =  655
# evenid =  ci38395986
# dist_jb =  485.4114285878472
# i =  656
# evenid =  nc73354100
# dist_jb =  221.3298420910458
# i =  657
# evenid =  nn00718984
# dist_jb =  400.0727700691482
# i =  658
# evenid =  nn00718981
# dist_jb =  399.725280703408
# i =  659
# evenid =  nc73352615
# dist_jb =  249.73449363660788
# i =  660
# evenid =  nc73351960
# dist_jb =  370.93183666155375
# i =  661
# evenid =  nc73351900
# dist_jb =  390.512641066327
# i =  662
# evenid =  nc73351895
# dist_jb =  381.71932622350823
# i =  663
# evenid =  nc73351825
# dist_jb =  372.27578224214807
# i =  664
# evenid =  nc73351710
# dist_jb =  371.6296904125255
# i =  665
# evenid =  ci38387018
# dist_jb =  437.64733621522856
# i =  666
# evenid =  ci38386410
# dist_jb =  437.47063711070183
# i =  667
# evenid =  ci38386162
# dist_jb =  437.4668245188231
# i =  668
# evenid =  nc73349450
# dist_jb =  174.7820958426413
# i =  669
# evenid =  nc73349375
# dist_jb =  211.09702227365204
# i =  670
# evenid =  ci39089007
# dist_jb =  461.95086252833534
# i =  671
# evenid =  ci39087367
# dist_jb =  466.451407860953
# i =  672
# evenid =  nc73347185
# dist_jb =  116.78161368646168
# i =  673
# evenid =  nc73346395
# dist_jb =  116.16957415501793
# i =  674
# evenid =  ci39083439
# dist_jb =  486.0492336597362
# i =  675
# evenid =  ci39083119
# dist_jb =  492.5567846143487
# i =  676
# evenid =  nc73344735
# dist_jb =  339.85120454645624
# i =  677
# evenid =  ci39079791
# dist_jb =  487.93474835525296
# i =  678
# evenid =  ci39079535
# dist_jb =  495.79372712265564
# i =  679
# evenid =  ci39077911
# dist_jb =  494.808043724788
# i =  680
# evenid =  nc73343650
# dist_jb =  408.8062707982034
# i =  681
# evenid =  ci39076207
# dist_jb =  384.0205327941824
# i =  682
# evenid =  ci39075799
# dist_jb =  411.4579886335393
# i =  683
# evenid =  nc73340375
# dist_jb =  157.52323824335932
# i =  684
# evenid =  nc73336291
# dist_jb =  323.7876039667558
# i =  685
# evenid =  nc73336226
# dist_jb =  326.2235875218228
# i =  686
# evenid =  nc73335171
# dist_jb =  351.34039541448016
# i =  687
# evenid =  nc73334451
# dist_jb =  304.80339503688833
# i =  688
# evenid =  nc73334336
# dist_jb =  325.10918507398026
# i =  689
# evenid =  ci39285816
# dist_jb =  397.13526654599536
# i =  690
# evenid =  nc73333256
# dist_jb =  175.96517531536017
# i =  691
# evenid =  us60007fhv
# dist_jb =  476.99511905287073
WARNING:root:dist_jb (476.995) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.995) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.168) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.168) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.06) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.06) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.579) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.579) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.174) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.174) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.884) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.884) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.069) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.069) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.587) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.587) is greater than the recommended limit (300).
WARNING:root:dist_jb (415.329) is greater than the recommended limit (300).
WARNING:root:dist_jb (415.329) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.256) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.256) is greater than the recommended limit (300).
WARNING:root:dist_jb (322.814) is greater than the recommended limit (300).
WARNING:root:dist_jb (322.814) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.88) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.88) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.06) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.06) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.517) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.517) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.103) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.103) is greater than the recommended limit (300).
WARNING:root:dist_jb (320.656) is greater than the recommended limit (300).
WARNING:root:dist_jb (320.656) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.411) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.411) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.102) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.102) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.452) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.452) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.438) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.438) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.661) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.661) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.152) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.152) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.43) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.43) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.463) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.463) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.535) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.535) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.538) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.538) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.746) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.746) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (365.988) is greater than the recommended limit (300).
WARNING:root:dist_jb (365.988) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.384) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.384) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.517) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.517) is greater than the recommended limit (300).
# i =  692
# evenid =  ci39276560
# dist_jb =  498.4494708761516
# i =  693
# evenid =  nc73328466
# dist_jb =  286.62941219559224
# i =  694
# evenid =  ci39273704
# dist_jb =  492.9097844955468
# i =  695
# evenid =  nc73326936
# dist_jb =  124.80752764137358
# i =  696
# evenid =  ci39028647
# dist_jb =  486.1683252665666
# i =  697
# evenid =  nc73324681
# dist_jb =  129.50893708317895
# i =  698
# evenid =  nc73324311
# dist_jb =  117.30752933690762
# i =  699
# evenid =  nc73323271
# dist_jb =  221.18750251476058
# i =  700
# evenid =  ci39021735
# dist_jb =  474.0600415234406
# i =  701
# evenid =  nc73322626
# dist_jb =  98.94876478739654
# i =  702
# evenid =  ci39015367
# dist_jb =  499.5790598017765
# i =  703
# evenid =  ci39014215
# dist_jb =  477.1741740698137
# i =  704
# evenid =  nc73319936
# dist_jb =  304.88436683272477
# i =  705
# evenid =  ci39013663
# dist_jb =  485.5085354614174
# i =  706
# evenid =  nc73318771
# dist_jb =  113.54601700583
# i =  707
# evenid =  ci39008311
# dist_jb =  494.7064996122556
# i =  708
# evenid =  ci39007775
# dist_jb =  495.06913636550195
# i =  709
# evenid =  ci39007423
# dist_jb =  485.5873778973947
# i =  710
# evenid =  us70006p4u
# dist_jb =  415.32851869737675
# i =  711
# evenid =  ci39006607
# dist_jb =  460.911521965641
# i =  712
# evenid =  ci39005887
# dist_jb =  460.2557842356287
# i =  713
# evenid =  nc73316566
# dist_jb =  322.81416860569425
# i =  714
# evenid =  nc73315876
# dist_jb =  285.5105798566028
# i =  715
# evenid =  ci39232936
# dist_jb =  481.8796710921566
# i =  716
# evenid =  ci39232664
# dist_jb =  488.0602947907322
# i =  717
# evenid =  ci39232240
# dist_jb =  495.51664812601507
# i =  718
# evenid =  nc73314451
# dist_jb =  209.2112185498694
# i =  719
# evenid =  ci39228040
# dist_jb =  488.1027090581297
# i =  720
# evenid =  nc73312361
# dist_jb =  320.6563819008875
# i =  721
# evenid =  ci39219160
# dist_jb =  438.4108122202009
# i =  722
# evenid =  ci39217824
# dist_jb =  501.85064585147296
# i =  723
# evenid =  ci39217768
# dist_jb =  480.10217254977096
# i =  724
# evenid =  nc73311641
# dist_jb =  286.9251097918517
# i =  725
# evenid =  ci39210096
# dist_jb =  482.45197268468496
# i =  726
# evenid =  ci39209360
# dist_jb =  438.4378979379692
# i =  727
# evenid =  nc73309356
# dist_jb =  211.44082138268885
# i =  728
# evenid =  ci39206448
# dist_jb =  507.66139206828313
# i =  729
# evenid =  ci39206144
# dist_jb =  487.15187855465507
# i =  730
# evenid =  nc73307431
# dist_jb =  265.82687816461714
# i =  731
# evenid =  nc73307426
# dist_jb =  265.64885065209626
# i =  732
# evenid =  nc73306866
# dist_jb =  296.8660266295444
# i =  733
# evenid =  ci38254674
# dist_jb =  488.4299208621787
# i =  734
# evenid =  ci38251970
# dist_jb =  493.4632697591891
# i =  735
# evenid =  ci38248602
# dist_jb =  433.5353170778356
# i =  736
# evenid =  ci38247754
# dist_jb =  433.5384544027985
# i =  737
# evenid =  ci38247706
# dist_jb =  433.74571070823356
# i =  738
# evenid =  nc73304236
# dist_jb =  114.10935446080887
# i =  739
# evenid =  ci38242914
# dist_jb =  501.16987552186527
# i =  740
# evenid =  nc73303141
# dist_jb =  365.9884452621811
# i =  741
# evenid =  nc73302606
# dist_jb =  183.98303208213818
# i =  742
# evenid =  nc73302511
# dist_jb =  213.98125057073426
# i =  743
# evenid =  ci38231834
# dist_jb =  480.70026560135386
# i =  744
# evenid =  ci38231786
# dist_jb =  480.38424497154585
# i =  745
# evenid =  ci38231562
# dist_jb =  481.5166930889868
# i = 
WARNING:root:dist_jb (480.323) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.323) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.618) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.618) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.262) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.262) is greater than the recommended limit (300).
WARNING:root:dist_jb (406.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (406.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (320.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (320.991) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.207) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.207) is greater than the recommended limit (300).
WARNING:root:dist_jb (357.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (357.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (339.985) is greater than the recommended limit (300).
WARNING:root:dist_jb (339.985) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (323.942) is greater than the recommended limit (300).
WARNING:root:dist_jb (323.942) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.494) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.494) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.328) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.328) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (336.185) is greater than the recommended limit (300).
WARNING:root:dist_jb (336.185) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.704) is greater than the recommended limit (300).
WARNING:root:dist_jb (309.704) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.433) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.433) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.146) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.146) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.818) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.818) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.491) is greater than the recommended limit (300).
 746
# evenid =  ci38229250
# dist_jb =  480.3232767182311
# i =  747
# evenid =  ci38229234
# dist_jb =  480.70026560135386
# i =  748
# evenid =  ci38229138
# dist_jb =  478.61778198153866
# i =  749
# evenid =  ci38933079
# dist_jb =  497.62400817357286
# i =  750
# evenid =  nc73300510
# dist_jb =  246.5217087421506
# i =  751
# evenid =  nc73300395
# dist_jb =  109.41239165412179
# i =  752
# evenid =  ci38930143
# dist_jb =  497.26154394662973
# i =  753
# evenid =  nc73299890
# dist_jb =  114.86451808654327
# i =  754
# evenid =  ci38926095
# dist_jb =  406.88734581952275
# i =  755
# evenid =  nn00709183
# dist_jb =  269.325512123277
# i =  756
# evenid =  nc73299195
# dist_jb =  320.9913922269058
# i =  757
# evenid =  ci38923807
# dist_jb =  495.2072120740089
# i =  758
# evenid =  nc73298555
# dist_jb =  159.1321308604304
# i =  759
# evenid =  nc73298495
# dist_jb =  160.19146246181458
# i =  760
# evenid =  nc73298490
# dist_jb =  159.59613292074928
# i =  761
# evenid =  nc73298350
# dist_jb =  357.1697281342577
# i =  762
# evenid =  us600063vn
# dist_jb =  113.07563693634526
# i =  763
# evenid =  nc71111274
# dist_jb =  113.07680240210344
# i =  764
# evenid =  nc73298060
# dist_jb =  159.1749102202281
# i =  765
# evenid =  nc73297565
# dist_jb =  339.98454701207555
# i =  766
# evenid =  ci38917943
# dist_jb =  482.90111139694375
# i =  767
# evenid =  nc73296890
# dist_jb =  242.24684254112194
# i =  768
# evenid =  ci38912351
# dist_jb =  461.9142058687137
# i =  769
# evenid =  ci38909287
# dist_jb =  501.7028376052238
# i =  770
# evenid =  nc73294310
# dist_jb =  323.94231760526924
# i =  771
# evenid =  ci38905359
# dist_jb =  477.4944145664259
# i =  772
# evenid =  nc73293465
# dist_jb =  163.37209198313462
# i =  773
# evenid =  ci39136912
# dist_jb =  486.98738522948804
# i =  774
# evenid =  nc73293130
# dist_jb =  432.3284317821812
# i =  775
# evenid =  nc73292945
# dist_jb =  162.61150689870053
# i =  776
# evenid =  nc73292585
# dist_jb =  19.374544986105
# i =  777
# evenid =  nc73292360
# dist_jb =  161.98605944997823
# i =  778
# evenid =  nc73291880
# dist_jb =  19.314752718274693
# i =  779
# evenid =  ci39129768
# dist_jb =  500.764418457244
# i =  780
# evenid =  nc73289220
# dist_jb =  71.77572454356537
# i =  781
# evenid =  nc73287645
# dist_jb =  336.1852590618823
# i =  782
# evenid =  nc73286930
# dist_jb =  32.57990927529892
# i =  783
# evenid =  nc73285085
# dist_jb =  309.7042240142151
# i =  784
# evenid =  ci39103680
# dist_jb =  479.0029707193414
# i =  785
# evenid =  nc73284360
# dist_jb =  238.75825252956915
# i =  786
# evenid =  ci39100080
# dist_jb =  481.43314996171785
# i =  787
# evenid =  ci39099712
# dist_jb =  462.1462025347182
# i =  788
# evenid =  nc73282580
# dist_jb =  270.9805859646206
# i =  789
# evenid =  ci39096944
# dist_jb =  468.8118267215929
# i =  790
# evenid =  ci39095240
# dist_jb =  489.81826949483997
# i =  791
# evenid =  ci39094760
# dist_jb =  494.4908550749431
WARNING:root:dist_jb (494.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (444.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (444.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.847) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.847) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.566) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.566) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.428) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.428) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.36) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.36) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.853) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.853) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.389) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.389) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.412) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.412) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.616) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.616) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.338) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.338) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.026) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.026) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.453) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.453) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.126) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.126) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.993) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.993) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.724) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.724) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.338) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.338) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.335) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.335) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.859) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.859) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.596) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.596) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.506) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.506) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.318) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.318) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.966) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.966) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.903) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.903) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.74) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.74) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.214) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.214) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.097) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.097) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.697) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.697) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.994) is greater than the recommended limit (300).
WARNING:root:dist_jb (438.994) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.616) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.616) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.524) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.524) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.182) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.182) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.025) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.025) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.979) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.979) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.905) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.905) is greater than the recommended limit (300).
WARNING:root:dist_jb (409.138) is greater than the recommended limit (300).
WARNING:root:dist_jb (409.138) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.447) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.447) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.578) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.578) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.271) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.271) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.031) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.031) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.878) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.878) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.125) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.125) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.671) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.671) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.504) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.504) is greater than the recommended limit (300).
# i =  792
# evenid =  nn00705411
# dist_jb =  444.91684023008276
# i =  793
# evenid =  nc73279500
# dist_jb =  170.9072131205808
# i =  794
# evenid =  ci38855983
# dist_jb =  438.846889684735
# i =  795
# evenid =  ci38852871
# dist_jb =  438.5092380605193
# i =  796
# evenid =  ci38850247
# dist_jb =  501.5660148805351
# i =  797
# evenid =  nc73276115
# dist_jb =  268.22990621189194
# i =  798
# evenid =  nc73271485
# dist_jb =  169.42843101386913
# i =  799
# evenid =  nc73270665
# dist_jb =  169.9014023667684
# i =  800
# evenid =  ci38819223
# dist_jb =  502.01467007126655
# i =  801
# evenid =  ci38818071
# dist_jb =  438.42764181883564
# i =  802
# evenid =  nc73264475
# dist_jb =  181.04612528870118
# i =  803
# evenid =  ci39037688
# dist_jb =  481.5102317847617
# i =  804
# evenid =  ci39037488
# dist_jb =  488.35967349242696
# i =  805
# evenid =  ci39037448
# dist_jb =  505.85283306215103
# i =  806
# evenid =  ci39016592
# dist_jb =  427.38864208809724
# i =  807
# evenid =  ci39007152
# dist_jb =  438.41152465368833
# i =  808
# evenid =  ci39005120
# dist_jb =  472.6161959484274
# i =  809
# evenid =  ci39004464
# dist_jb =  500.33750927744256
# i =  810
# evenid =  ci39002432
# dist_jb =  496.02557538972275
# i =  811
# evenid =  ci39002264
# dist_jb =  469.45283208075386
# i =  812
# evenid =  nc73256930
# dist_jb =  101.10189559779587
# i =  813
# evenid =  ci39000512
# dist_jb =  488.12595852957753
# i =  814
# evenid =  ci38999328
# dist_jb =  461.9929598355953
# i =  815
# evenid =  ci38999312
# dist_jb =  460.72374879751135
# i =  816
# evenid =  ci38999296
# dist_jb =  460.9403905053964
# i =  817
# evenid =  us700057el
# dist_jb =  483.0484844515675
# i =  818
# evenid =  ci38996976
# dist_jb =  461.33764083907425
# i =  819
# evenid =  ci38996840
# dist_jb =  462.33531065450944
# i =  820
# evenid =  ci38996816
# dist_jb =  460.8590644604282
# i =  821
# evenid =  ci38996632
# dist_jb =  460.596351775546
# i =  822
# evenid =  nn00700503
# dist_jb =  385.50590928074337
# i =  823
# evenid =  ci38992192
# dist_jb =  508.3184028111662
# i =  824
# evenid =  ci38990176
# dist_jb =  481.96582790827443
# i =  825
# evenid =  ci38990112
# dist_jb =  505.9034727504774
# i =  826
# evenid =  ci38984576
# dist_jb =  486.4623594560958
# i =  827
# evenid =  ci38983016
# dist_jb =  492.74008862222075
# i =  828
# evenid =  ci38982368
# dist_jb =  492.21369514453716
# i =  829
# evenid =  ci38982296
# dist_jb =  439.09707986429527
# i =  830
# evenid =  ci38981040
# dist_jb =  438.69675023060097
# i =  831
# evenid =  ci38978512
# dist_jb =  460.0034505652926
# i =  832
# evenid =  ci38974200
# dist_jb =  438.9935655022685
# i =  833
# evenid =  ci38973744
# dist_jb =  497.61642905737347
# i =  834
# evenid =  ci38971232
# dist_jb =  439.52427851830134
# i =  835
# evenid =  ci38969456
# dist_jb =  482.288095837466
# i =  836
# evenid =  ci38969336
# dist_jb =  439.1817132143618
# i =  837
# evenid =  ci38969080
# dist_jb =  464.02454392228606
# i =  838
# evenid =  ci38966824
# dist_jb =  463.9788413791515
# i =  839
# evenid =  ci38956352
# dist_jb =  495.2313358711367
# i =  840
# evenid =  ci38949408
# dist_jb =  486.9051351434502
# i =  841
# evenid =  ci38946464
# dist_jb =  409.13783288907416
# i =  842
# evenid =  ci38702143
# dist_jb =  491.41027114102354
# i =  843
# evenid =  ci38700639
# dist_jb =  472.4465718279647
# i =  844
# evenid =  ci38692783
# dist_jb =  466.5778454208258
# i =  845
# evenid =  ci38690607
# dist_jb =  480.2705351907363
# i =  846
# evenid =  ci38684415
# dist_jb =  497.03124894826334
# i =  847
# evenid =  ci38683903
# dist_jb =  474.87840782936865
# i =  848
# evenid =  ci38681687
# dist_jb =  431.12485811692073
# i =  849
# evenid =  ci38679775
# dist_jb =  457.6713306696092
# i =  850
# evenid =  ci38677967
# dist_jb =  388.50357665816733
WARNING:root:dist_jb (331.751) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.751) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.972) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.972) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.799) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.799) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.115) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.115) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.091) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.091) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.709) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.707) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.707) is greater than the recommended limit (300).
WARNING:root:dist_jb (415.156) is greater than the recommended limit (300).
WARNING:root:dist_jb (415.156) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.165) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.165) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.466) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.466) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.785) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.785) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.185) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.185) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.299) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.299) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.367) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.367) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.943) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.943) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.539) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.539) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.443) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.443) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.213) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.213) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.412) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.412) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (397.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.552) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.552) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.04) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.04) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.761) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.761) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.924) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.924) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.719) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.719) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.325) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.325) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.321) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.321) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.571) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.571) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.874) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.874) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.941) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.941) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.474) is greater than the recommended limit (300).
# i =  851
# evenid =  nc73239366
# dist_jb =  331.7506896634316
# i =  852
# evenid =  ci38672303
# dist_jb =  489.9720723377496
# i =  853
# evenid =  ci38669279
# dist_jb =  460.7985439294061
# i =  854
# evenid =  ci38668511
# dist_jb =  471.11534029571965
# i =  855
# evenid =  ci38668479
# dist_jb =  462.09114972503943
# i =  856
# evenid =  ci38666991
# dist_jb =  485.709039596294
# i =  857
# evenid =  nc73237181
# dist_jb =  277.80175201322146
# i =  858
# evenid =  ci38661399
# dist_jb =  479.7070272238901
# i =  859
# evenid =  ci38656719
# dist_jb =  415.15579900027086
# i =  860
# evenid =  ci38653975
# dist_jb =  494.1653732877078
# i =  861
# evenid =  nc73235831
# dist_jb =  155.10404022209633
# i =  862
# evenid =  ci38652167
# dist_jb =  508.46603767634997
# i =  863
# evenid =  ci38649551
# dist_jb =  472.1284815449125
# i =  864
# evenid =  ci38647543
# dist_jb =  459.7854903744643
# i =  865
# evenid =  ci38646639
# dist_jb =  460.1853431505087
# i =  866
# evenid =  ci38645471
# dist_jb =  495.2988724626873
# i =  867
# evenid =  ci38645087
# dist_jb =  459.9335414628641
# i =  868
# evenid =  ci38644983
# dist_jb =  460.18090934634085
# i =  869
# evenid =  ci38644943
# dist_jb =  459.7869225275234
# i =  870
# evenid =  ci38640343
# dist_jb =  459.0789217794117
# i =  871
# evenid =  ci38638455
# dist_jb =  431.36710350729476
# i =  872
# evenid =  ci38636511
# dist_jb =  485.9434949415533
# i =  873
# evenid =  nc73233256
# dist_jb =  287.2347724428594
# i =  874
# evenid =  ci38632759
# dist_jb =  461.30106836229993
# i =  875
# evenid =  ci38628799
# dist_jb =  498.53916960177173
# i =  876
# evenid =  ci38627095
# dist_jb =  481.44294773088166
# i =  877
# evenid =  ci38625775
# dist_jb =  496.2131583600302
# i =  878
# evenid =  ci38625223
# dist_jb =  467.41216608549144
# i =  879
# evenid =  nc73231951
# dist_jb =  397.6554617195471
# i =  880
# evenid =  ci38622679
# dist_jb =  457.55172850066805
# i =  881
# evenid =  ci38618447
# dist_jb =  485.28801955605485
# i =  882
# evenid =  ci38616919
# dist_jb =  490.03955277132053
# i =  883
# evenid =  ci38616607
# dist_jb =  495.7609625025205
# i =  884
# evenid =  ci38615791
# dist_jb =  474.92437309395444
# i =  885
# evenid =  ci38615255
# dist_jb =  491.4179143569478
# i =  886
# evenid =  ci38614479
# dist_jb =  492.71905806199265
# i =  887
# evenid =  ci38614407
# dist_jb =  458.32545368930244
# i =  888
# evenid =  ci38613175
# dist_jb =  477.7894073287178
# i =  889
# evenid =  ci38613055
# dist_jb =  501.32136690381606
# i =  890
# evenid =  ci38612295
# dist_jb =  462.57126313990096
# i =  891
# evenid =  ci38612055
# dist_jb =  458.6380745184143
# i =  892
# evenid =  nc73229896
# dist_jb =  111.14256928709547
# i =  893
# evenid =  ci38607695
# dist_jb =  463.8738730725409
# i =  894
# evenid =  ci38606951
# dist_jb =  491.9410401936615
# i =  895
# evenid =  ci38605023
# dist_jb =  488.0809365167052
# i =  896
# evenid =  ci38604199
# dist_jb =  439.4744859453882
WARNING:root:dist_jb (439.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.291) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.291) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.28) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.28) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.176) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.176) is greater than the recommended limit (300).
WARNING:root:dist_jb (440.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (440.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.92) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.92) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.815) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.815) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.111) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.111) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.488) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.488) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.341) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.341) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (436.076) is greater than the recommended limit (300).
WARNING:root:dist_jb (436.076) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.71) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.71) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.798) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.798) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.495) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.495) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.946) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.946) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.782) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.782) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.379) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.379) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.742) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.742) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.721) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.721) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.03) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.03) is greater than the recommended limit (300).
# i =  897
# evenid =  ci38603967
# dist_jb =  463.2908894806792
# i =  898
# evenid =  ci38603871
# dist_jb =  487.28018383631627
# i =  899
# evenid =  ci38603223
# dist_jb =  506.1761043444272
# i =  900
# evenid =  ci38602799
# dist_jb =  440.63841309359054
# i =  901
# evenid =  ci38600815
# dist_jb =  439.9202239241054
# i =  902
# evenid =  ci38600023
# dist_jb =  481.8147495678533
# i =  903
# evenid =  ci38599935
# dist_jb =  494.11089583001166
# i =  904
# evenid =  ci38599327
# dist_jb =  474.10765136898675
# i =  905
# evenid =  ci38595071
# dist_jb =  435.4876342733419
# i =  906
# evenid =  ci38594383
# dist_jb =  435.34071659540786
# i =  907
# evenid =  ci38594055
# dist_jb =  435.8083170118425
# i =  908
# evenid =  ci38593567
# dist_jb =  436.0764475994887
# i =  909
# evenid =  ci38593559
# dist_jb =  435.70981907612895
# i =  910
# evenid =  ci38593535
# dist_jb =  435.4742833014896
# i =  911
# evenid =  ci38593247
# dist_jb =  496.798150322035
# i =  912
# evenid =  ci38593087
# dist_jb =  479.4947818006086
# i =  913
# evenid =  ci38591911
# dist_jb =  482.94631846564084
# i =  914
# evenid =  ci38591663
# dist_jb =  495.78219044359156
# i =  915
# evenid =  ci38591583
# dist_jb =  439.28759435166955
# i =  916
# evenid =  ci38590983
# dist_jb =  461.9627863669619
# i =  917
# evenid =  ci38590903
# dist_jb =  494.4621365609964
# i =  918
# evenid =  ci37421821
# dist_jb =  460.41040857830797
# i =  919
# evenid =  ci38589319
# dist_jb =  460.37857706766414
# i =  920
# evenid =  ci38589287
# dist_jb =  460.4747340943639
# i =  921
# evenid =  ci38589175
# dist_jb =  491.742200737521
# i =  922
# evenid =  ci38588455
# dist_jb =  461.72099691466394
# i =  923
# evenid =  ci38586063
# dist_jb =  465.3009390546654
# i =  924
# evenid =  ci38585311
# dist_jb =  435.03040609460174
WARNING:root:dist_jb (435.498) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.498) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.221) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.221) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.949) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.949) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.554) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.554) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.176) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.176) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.77) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.77) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.772) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.772) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.924) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.924) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.037) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.037) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.347) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.347) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.68) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.68) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.335) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.335) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.728) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.728) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.322) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.322) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.293) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.293) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.344) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.344) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.447) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.447) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.959) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.959) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.642) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.642) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.326) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.326) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.842) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.842) is greater than the recommended limit (300).
WARNING:root:dist_jb (436.461) is greater than the recommended limit (300).
WARNING:root:dist_jb (436.461) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.762) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.762) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.456) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.456) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.103) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.103) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.453) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.453) is greater than the recommended limit (300).
WARNING:root:dist_jb (430.872) is greater than the recommended limit (300).
WARNING:root:dist_jb (430.872) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.895) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.895) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.038) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.038) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.132) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.132) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.031) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.031) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.169) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.169) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.278) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.278) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.126) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.126) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.79) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.79) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.341) is greater than the recommended limit (300).
# i =  925
# evenid =  ci38585303
# dist_jb =  435.49805551975356
# i =  926
# evenid =  ci38585063
# dist_jb =  435.72930634380646
# i =  927
# evenid =  ci38585055
# dist_jb =  435.22128334392346
# i =  928
# evenid =  ci37267164
# dist_jb =  434.94864973770024
# i =  929
# evenid =  ci38585023
# dist_jb =  435.5539893255673
# i =  930
# evenid =  ci38584855
# dist_jb =  494.93180867981846
# i =  931
# evenid =  ci38584607
# dist_jb =  498.17565785910404
# i =  932
# evenid =  ci38583551
# dist_jb =  463.51487563115376
# i =  933
# evenid =  nc73225436
# dist_jb =  44.484209278582235
# i =  934
# evenid =  ci37421757
# dist_jb =  488.76989773816257
# i =  935
# evenid =  ci38583335
# dist_jb =  474.77249654133954
# i =  936
# evenid =  nc73225421
# dist_jb =  44.78938404014987
# i =  937
# evenid =  ci38581455
# dist_jb =  479.92434711157273
# i =  938
# evenid =  ci38580911
# dist_jb =  493.03717836599265
# i =  939
# evenid =  ci38580111
# dist_jb =  504.34691810902945
# i =  940
# evenid =  ci38578567
# dist_jb =  473.679516996793
# i =  941
# evenid =  us70004l6w
# dist_jb =  464.66489389056755
# i =  942
# evenid =  ci38578055
# dist_jb =  466.334600572315
# i =  943
# evenid =  ci38577831
# dist_jb =  497.72842040552655
# i =  944
# evenid =  ci38577799
# dist_jb =  463.3217932086633
# i =  945
# evenid =  ci38577303
# dist_jb =  459.10425724400994
# i =  946
# evenid =  ci38576311
# dist_jb =  489.2927885012588
# i =  947
# evenid =  ci38576223
# dist_jb =  488.34363094458854
# i =  948
# evenid =  nc73224146
# dist_jb =  86.07219070369098
# i =  949
# evenid =  ci38575455
# dist_jb =  462.0626012379803
# i =  950
# evenid =  ci38574407
# dist_jb =  496.90957477634316
# i =  951
# evenid =  ci38572055
# dist_jb =  441.44669760628835
# i =  952
# evenid =  ci38571423
# dist_jb =  482.9585122188596
# i =  953
# evenid =  ci38570919
# dist_jb =  485.6421042045558
# i =  954
# evenid =  ci38570271
# dist_jb =  490.3259200913434
# i =  955
# evenid =  ci38569055
# dist_jb =  503.8419066331747
# i =  956
# evenid =  ci38568511
# dist_jb =  436.4612169044583
# i =  957
# evenid =  ci38568471
# dist_jb =  478.76178487404746
# i =  958
# evenid =  ci38566311
# dist_jb =  503.4560712725416
# i =  959
# evenid =  ci38565815
# dist_jb =  480.1027468092716
# i =  960
# evenid =  ci38565791
# dist_jb =  491.4525895458979
# i =  961
# evenid =  ci38565431
# dist_jb =  430.8723850541957
# i =  962
# evenid =  ci38564031
# dist_jb =  460.8951863137981
# i =  963
# evenid =  ci38564023
# dist_jb =  460.03834450569684
# i =  964
# evenid =  ci38563839
# dist_jb =  460.13164561372776
# i =  965
# evenid =  ci38561855
# dist_jb =  460.04306782305247
# i =  966
# evenid =  ci38561839
# dist_jb =  485.9536632210569
# i =  967
# evenid =  ci38561631
# dist_jb =  508.03070381988465
# i =  968
# evenid =  ci38560831
# dist_jb =  486.1693392633266
# i =  969
# evenid =  ci38559367
# dist_jb =  500.27830862311015
# i =  970
# evenid =  ci38559263
# dist_jb =  463.12555595185785
# i =  971
# evenid =  ci38558607
# dist_jb =  460.70581037670536
# i =  972
# evenid =  ci38558295
# dist_jb =  497.79018769578056
# i =  973
# evenid =  ci38557895
# dist_jb =  485.3408035731914
WARNING:root:dist_jb (485.341) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.368) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.368) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.677) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.677) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.567) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.567) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.98) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.98) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.093) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.093) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.562) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.562) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.087) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.087) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.13) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.13) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.262) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.262) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.258) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.301) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.647) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.647) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.757) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.757) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.978) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.978) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.26) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.26) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.462) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.894) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.894) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.852) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.852) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.495) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.495) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.94) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.034) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.034) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.232) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.232) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.531) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.531) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.455) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.455) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.651) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.651) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.325) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.325) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.354) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.354) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.448) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.448) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.166) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.166) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.512) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.512) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.631) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.631) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (442.354) is greater than the recommended limit (300).
WARNING:root:dist_jb (442.354) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.012) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.012) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.978) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.978) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.581) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.581) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.938) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.938) is greater than the recommended limit (300).
# i =  974
# evenid =  ci38553919
# dist_jb =  480.3676215099433
# i =  975
# evenid =  ci38553255
# dist_jb =  487.67743955482604
# i =  976
# evenid =  ci37266372
# dist_jb =  485.67205522203994
# i =  977
# evenid =  ci37266364
# dist_jb =  485.17777783950504
# i =  978
# evenid =  ci38548295
# dist_jb =  485.5666514342446
# i =  979
# evenid =  ci38544311
# dist_jb =  506.98018043024194
# i =  980
# evenid =  ci38541743
# dist_jb =  432.0927070851862
# i =  981
# evenid =  ci38541391
# dist_jb =  460.56212338968913
# i =  982
# evenid =  ci38541359
# dist_jb =  485.08734343532774
# i =  983
# evenid =  ci38541351
# dist_jb =  463.12981783653424
# i =  984
# evenid =  ci38540647
# dist_jb =  432.2618586437187
# i =  985
# evenid =  ci38539215
# dist_jb =  485.257767581532
# i =  986
# evenid =  ci38539039
# dist_jb =  459.3006155149009
# i =  987
# evenid =  ci38539031
# dist_jb =  506.64710822660595
# i =  988
# evenid =  ci38538991
# dist_jb =  458.75702215935297
# i =  989
# evenid =  ci38535183
# dist_jb =  475.97849255557736
# i =  990
# evenid =  ci38534735
# dist_jb =  487.88784027177286
# i =  991
# evenid =  ci38534591
# dist_jb =  432.25987855131854
# i =  992
# evenid =  ci38534415
# dist_jb =  432.46170553486155
# i =  993
# evenid =  ci38534255
# dist_jb =  434.20011820260595
# i =  994
# evenid =  ci38532975
# dist_jb =  470.78289185785775
# i =  995
# evenid =  ci38532487
# dist_jb =  484.89401635123653
# i =  996
# evenid =  ci38532479
# dist_jb =  437.8516352788418
# i =  997
# evenid =  ci38532079
# dist_jb =  499.495216811907
# i =  998
# evenid =  ci38531903
# dist_jb =  433.9399242955547
# i =  999
# evenid =  ci38531775
# dist_jb =  485.0344638038639
# i =  1000
# evenid =  ci38531663
# dist_jb =  452.2315887324449
# i =  1001
# evenid =  ci38531503
# dist_jb =  452.5308145326693
# i =  1002
# evenid =  ci38531487
# dist_jb =  452.4547989753783
# i =  1003
# evenid =  ci38530495
# dist_jb =  461.6505789876436
# i =  1004
# evenid =  ci38530047
# dist_jb =  493.3250318238762
# i =  1005
# evenid =  ci38529711
# dist_jb =  432.3544085114088
# i =  1006
# evenid =  ci38529591
# dist_jb =  432.44786477757987
# i =  1007
# evenid =  ci38528383
# dist_jb =  492.2004688985258
# i =  1008
# evenid =  ci38528167
# dist_jb =  492.1662676041613
# i =  1009
# evenid =  ci38527943
# dist_jb =  441.5124150581329
# i =  1010
# evenid =  ci38527863
# dist_jb =  441.6314738439407
# i =  1011
# evenid =  ci38526799
# dist_jb =  457.8955279632849
# i =  1012
# evenid =  ci38525895
# dist_jb =  442.3540984764448
# i =  1013
# evenid =  ci38525495
# dist_jb =  452.01212235747187
# i =  1014
# evenid =  ci38525479
# dist_jb =  432.97753868896353
# i =  1015
# evenid =  ci38525407
# dist_jb =  461.1868982268331
# i =  1016
# evenid =  ci38525247
# dist_jb =  432.33961496842574
# i =  1017
# evenid =  ci38525215
# dist_jb =  434.38456009700224
# i =  1018
# evenid =  ci38525207
# dist_jb =  432.58117779199654
# i =  1019
# evenid =  ci38525143
# dist_jb =  432.85722819569196
# i =  1020
# evenid =  ci38525047
# dist_jb =  490.93768498607903
# i =  1021
# evenid =  ci38524935
# dist_jb =  497.9285700685787
WARNING:root:dist_jb (497.929) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.929) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.683) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.683) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.763) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.763) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.32) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.32) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.662) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.662) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.623) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.623) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.196) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.196) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.629) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.629) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.242) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.242) is greater than the recommended limit (300).
WARNING:root:dist_jb (450.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (450.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.699) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.699) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.309) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.309) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.44) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.44) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.239) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.239) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.285) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.285) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.849) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.849) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.688) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.688) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.649) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.649) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (449.864) is greater than the recommended limit (300).
WARNING:root:dist_jb (449.864) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.822) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.822) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.862) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.862) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.57) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.57) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.83) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.83) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.765) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.765) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.662) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.662) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.235) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.235) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.142) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.142) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.343) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.343) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.758) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.758) is greater than the recommended limit (300).
# i =  1022
# evenid =  ci38524831
# dist_jb =  492.03242147085103
# i =  1023
# evenid =  ci37265580
# dist_jb =  432.682684134692
# i =  1024
# evenid =  ci38523943
# dist_jb =  432.76320448229114
# i =  1025
# evenid =  ci38523567
# dist_jb =  494.3198298819071
# i =  1026
# evenid =  ci38522647
# dist_jb =  488.6620255569739
# i =  1027
# evenid =  ci37248948
# dist_jb =  478.76372311958335
# i =  1028
# evenid =  ci38522055
# dist_jb =  439.6227902435701
# i =  1029
# evenid =  ci37265572
# dist_jb =  441.19606753760826
# i =  1030
# evenid =  ci38521815
# dist_jb =  433.62933575864344
# i =  1031
# evenid =  ci38521799
# dist_jb =  433.24183411541014
# i =  1032
# evenid =  ci38521047
# dist_jb =  450.787105284217
# i =  1033
# evenid =  ci38519951
# dist_jb =  469.69888114586286
# i =  1034
# evenid =  ci38519287
# dist_jb =  489.30919933910525
# i =  1035
# evenid =  ci38519231
# dist_jb =  464.4399636388037
# i =  1036
# evenid =  ci38519223
# dist_jb =  464.3358127095336
# i =  1037
# evenid =  ci38519135
# dist_jb =  441.23910060540135
# i =  1038
# evenid =  ci38518287
# dist_jb =  480.28498459462986
# i =  1039
# evenid =  ci38518087
# dist_jb =  492.849071547187
# i =  1040
# evenid =  ci38517847
# dist_jb =  484.6876247390061
# i =  1041
# evenid =  ci38517703
# dist_jb =  441.64944940159165
# i =  1042
# evenid =  ci38517471
# dist_jb =  441.3165695105966
# i =  1043
# evenid =  ci38517119
# dist_jb =  462.46954707051714
# i =  1044
# evenid =  ci38516463
# dist_jb =  464.69998018374497
# i =  1045
# evenid =  ci38515863
# dist_jb =  449.8641768447076
# i =  1046
# evenid =  ci38515519
# dist_jb =  490.8215722440269
# i =  1047
# evenid =  ci38514151
# dist_jb =  457.8620367914935
# i =  1048
# evenid =  ci38513943
# dist_jb =  441.5698547601561
# i =  1049
# evenid =  ci38512103
# dist_jb =  460.82987260854
# i =  1050
# evenid =  ci38511719
# dist_jb =  495.76529997354083
# i =  1051
# evenid =  ci38510319
# dist_jb =  462.4256190646065
# i =  1052
# evenid =  ci38509663
# dist_jb =  441.6621442465071
# i =  1053
# evenid =  ci38507623
# dist_jb =  462.2347269391012
# i =  1054
# evenid =  ci38506343
# dist_jb =  460.14171006228435
# i =  1055
# evenid =  ci38505679
# dist_jb =  483.6962861460269
# i =  1056
# evenid =  ci38504647
# dist_jb =  488.8761991200747
# i =  1057
# evenid =  ci38504415
# dist_jb =  461.5938618458287
# i =  1058
# evenid =  ci38503631
# dist_jb =  506.3430947333016
# i =  1059
# evenid =  ci38502215
# dist_jb =  506.475428837425
# i =  1060
# evenid =  ci37265404
# dist_jb =  490.75813302743063
WARNING:root:dist_jb (491.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.146) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.146) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.598) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.598) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.476) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.476) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.014) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.014) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.222) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.222) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.814) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.814) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.279) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.279) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.922) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.922) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.858) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.858) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.214) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.214) is greater than the recommended limit (300).
WARNING:root:dist_jb (442.152) is greater than the recommended limit (300).
WARNING:root:dist_jb (442.152) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.919) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.919) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.612) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.612) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.407) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.407) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.182) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.182) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.298) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.298) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.996) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.996) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.065) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.065) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.253) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.253) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.372) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.372) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.705) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.705) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.736) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.736) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.135) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.489) is greater than the recommended limit (300).
WARNING:root:dist_jb (437.489) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.339) is greater than the recommended limit (300).
WARNING:root:dist_jb (434.339) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.768) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.623) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.623) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.128) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.3) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.3) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.386) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.386) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.487) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.487) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.607) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.607) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.351) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.351) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.632) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.632) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.997) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.997) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.377) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.377) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.756) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.756) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.575) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.575) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.052) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.052) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.192) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.192) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.847) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.847) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.277) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.277) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.039) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.039) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.76) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.76) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.645) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.645) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.201) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.201) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.307) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.307) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.01) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.01) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.812) is greater than the recommended limit (300).
# i =  1061
# evenid =  ci38501895
# dist_jb =  491.3355270989195
# i =  1062
# evenid =  ci38500391
# dist_jb =  486.14631957074175
# i =  1063
# evenid =  ci38500135
# dist_jb =  460.5978905194711
# i =  1064
# evenid =  ci38499303
# dist_jb =  463.8957412926165
# i =  1065
# evenid =  ci38499159
# dist_jb =  487.4761624766704
# i =  1066
# evenid =  ci38498647
# dist_jb =  441.7003474523689
# i =  1067
# evenid =  ci38498615
# dist_jb =  475.0139517530623
# i =  1068
# evenid =  ci38497719
# dist_jb =  463.9627649963492
# i =  1069
# evenid =  ci38497239
# dist_jb =  463.22162493637654
# i =  1070
# evenid =  ci38495767
# dist_jb =  479.8142144392184
# i =  1071
# evenid =  ci38493743
# dist_jb =  464.27885395354724
# i =  1072
# evenid =  ci37265084
# dist_jb =  437.92211920967884
# i =  1073
# evenid =  ci38493191
# dist_jb =  488.85789705773993
# i =  1074
# evenid =  ci38492831
# dist_jb =  498.2141293099619
# i =  1075
# evenid =  ci38492599
# dist_jb =  442.1518795612876
# i =  1076
# evenid =  ci38492271
# dist_jb =  490.9193964674245
# i =  1077
# evenid =  ci38489903
# dist_jb =  490.6116033251631
# i =  1078
# evenid =  ci38489847
# dist_jb =  481.29534703035216
# i =  1079
# evenid =  ci38489727
# dist_jb =  490.4070162866183
# i =  1080
# evenid =  ci38488975
# dist_jb =  481.18156990088954
# i =  1081
# evenid =  ci38488767
# dist_jb =  498.2977240521279
# i =  1082
# evenid =  ci38488719
# dist_jb =  488.9958895210508
# i =  1083
# evenid =  ci38487839
# dist_jb =  491.9320161160357
# i =  1084
# evenid =  ci38487519
# dist_jb =  505.0654473227277
# i =  1085
# evenid =  ci38486831
# dist_jb =  482.2530285666573
# i =  1086
# evenid =  ci38486639
# dist_jb =  488.37235460375973
# i =  1087
# evenid =  ci38486591
# dist_jb =  497.70544676267383
# i =  1088
# evenid =  ci38486063
# dist_jb =  460.7362879837955
# i =  1089
# evenid =  ci38485391
# dist_jb =  494.13477338789727
# i =  1090
# evenid =  ci38484631
# dist_jb =  437.488576532642
# i =  1091
# evenid =  ci38484311
# dist_jb =  434.3393558151739
# i =  1092
# evenid =  ci38484231
# dist_jb =  506.7675947555012
# i =  1093
# evenid =  ci38483983
# dist_jb =  481.6231379310014
# i =  1094
# evenid =  ci38483743
# dist_jb =  492.1283970308787
# i =  1095
# evenid =  ci38483591
# dist_jb =  462.3001002606851
# i =  1096
# evenid =  ci38483383
# dist_jb =  457.3858273940655
# i =  1097
# evenid =  ci38483327
# dist_jb =  486.4868520773528
# i =  1098
# evenid =  ci38483215
# dist_jb =  461.60712998847634
# i =  1099
# evenid =  ci38482775
# dist_jb =  502.35105138582566
# i =  1100
# evenid =  ci38482375
# dist_jb =  490.1940787909944
# i =  1101
# evenid =  ci37264764
# dist_jb =  461.6320256959143
# i =  1102
# evenid =  ci38481735
# dist_jb =  435.99691124307907
# i =  1103
# evenid =  ci38481167
# dist_jb =  468.3771039118239
# i =  1104
# evenid =  ci38480975
# dist_jb =  490.7559393009253
# i =  1105
# evenid =  ci38480967
# dist_jb =  505.57510455378883
# i =  1106
# evenid =  ci38480919
# dist_jb =  468.0521221048585
# i =  1107
# evenid =  ci38480631
# dist_jb =  504.1922422835473
# i =  1108
# evenid =  ci38480559
# dist_jb =  487.84683881702085
# i =  1109
# evenid =  ci38480447
# dist_jb =  487.2767101199383
# i =  1110
# evenid =  ci38479967
# dist_jb =  460.04207331125474
# i =  1111
# evenid =  ci38479903
# dist_jb =  476.03923406091025
# i =  1112
# evenid =  ci38479783
# dist_jb =  474.76034517009504
# i =  1113
# evenid =  ci38479239
# dist_jb =  459.6451652837718
# i =  1114
# evenid =  ci38479143
# dist_jb =  489.20055528813793
# i =  1115
# evenid =  ci38478823
# dist_jb =  493.3066452602432
# i =  1116
# evenid =  ci38478703
# dist_jb =  500.0098299752479
# i =  1117
# evenid =  ci38478423
# dist_jb =  459.8118507799416
WARNING:root:dist_jb (459.812) is greater than the recommended limit (300).
WARNING:root:dist_jb (312.702) is greater than the recommended limit (300).
WARNING:root:dist_jb (312.702) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.295) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.137) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.137) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.772) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.772) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (493) is greater than the recommended limit (300).
WARNING:root:dist_jb (493) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.973) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.973) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.735) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.735) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.929) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.929) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.45) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.45) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.082) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.082) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.772) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.772) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.45) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.45) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.977) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.977) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.855) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.855) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.348) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.348) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.988) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.988) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.598) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.598) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.119) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.119) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.218) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.218) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.636) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.636) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.626) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.626) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.639) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.639) is greater than the recommended limit (300).
# i =  1118
# evenid =  nc73213416
# dist_jb =  312.7024792613621
# i =  1119
# evenid =  ci38478335
# dist_jb =  458.8755497724625
# i =  1120
# evenid =  ci38477415
# dist_jb =  488.2951440690129
# i =  1121
# evenid =  ci38477319
# dist_jb =  463.2233870001224
# i =  1122
# evenid =  ci38477303
# dist_jb =  469.29707476578477
# i =  1123
# evenid =  ci38476855
# dist_jb =  460.1368204439182
# i =  1124
# evenid =  ci38476711
# dist_jb =  484.4178677924481
# i =  1125
# evenid =  ci38476671
# dist_jb =  497.7723291443187
# i =  1126
# evenid =  ci38476279
# dist_jb =  462.586184032074
# i =  1127
# evenid =  ci38475967
# dist_jb =  492.99998107565756
# i =  1128
# evenid =  ci38475551
# dist_jb =  459.9727164299456
# i =  1129
# evenid =  ci38475511
# dist_jb =  507.73503635224887
# i =  1130
# evenid =  ci38475431
# dist_jb =  475.25900824214233
# i =  1131
# evenid =  ci38475007
# dist_jb =  477.92884768508276
# i =  1132
# evenid =  ci38474959
# dist_jb =  473.66480914185905
# i =  1133
# evenid =  ci38474855
# dist_jb =  493.44956350034477
# i =  1134
# evenid =  ci38474687
# dist_jb =  458.08228207861964
# i =  1135
# evenid =  ci38474639
# dist_jb =  487.7442173422147
# i =  1136
# evenid =  ci38474415
# dist_jb =  481.85718797869595
# i =  1137
# evenid =  ci38474127
# dist_jb =  459.7721912671681
# i =  1138
# evenid =  ci38474119
# dist_jb =  488.44981137675364
# i =  1139
# evenid =  ci38473983
# dist_jb =  490.1938551289297
# i =  1140
# evenid =  ci38473967
# dist_jb =  458.97729893966317
# i =  1141
# evenid =  ci38473831
# dist_jb =  505.887091835561
# i =  1142
# evenid =  ci38473511
# dist_jb =  439.85493246575976
# i =  1143
# evenid =  ci38473223
# dist_jb =  470.34766966189886
# i =  1144
# evenid =  ci38473135
# dist_jb =  485.9875356217813
# i =  1145
# evenid =  ci38473119
# dist_jb =  472.78682484531987
# i =  1146
# evenid =  ci38473063
# dist_jb =  460.59842032245786
# i =  1147
# evenid =  ci38473039
# dist_jb =  498.1186624060663
# i =  1148
# evenid =  ci38472895
# dist_jb =  495.21811280490186
# i =  1149
# evenid =  ci38472463
# dist_jb =  488.63621678270715
# i =  1150
# evenid =  ci38472279
# dist_jb =  478.6264647405956
# i =  1151
# evenid =  ci38471927
# dist_jb =  486.7757467555109
# i =  1152
# evenid =  ci38471687
# dist_jb =  486.6390665621618
# i =  1153
# evenid =  ci37264612
# dist_jb =  464.88268871100075
WARNING:root:dist_jb (464.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.973) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.973) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.328) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.328) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.1) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.1) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.695) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.695) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.753) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.753) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.298) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.298) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.389) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.389) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.339) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.339) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.061) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.061) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.159) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.159) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.164) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.164) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.099) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.099) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (443.183) is greater than the recommended limit (300).
WARNING:root:dist_jb (443.183) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.868) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.868) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.036) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.036) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.691) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.691) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.836) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.836) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.545) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.545) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.943) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.943) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.409) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.409) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.972) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.972) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.787) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.831) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.831) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.117) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.117) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.305) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.305) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.973) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.973) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.666) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.666) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.445) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.445) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.903) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.903) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.346) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.346) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.679) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.679) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.403) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.403) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.849) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.849) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.984) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.984) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.837) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.837) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.056) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.056) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.307) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.307) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.235) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.235) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.118) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.118) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.339) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.339) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.34) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.407) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.407) is greater than the recommended limit (300).
WARNING:root:dist_jb (440.896) is greater than the recommended limit (300).
WARNING:root:dist_jb (440.896) is greater than the recommended limit (300).
# i =  1154
# evenid =  ci38471103
# dist_jb =  461.97332930387273
# i =  1155
# evenid =  ci38470999
# dist_jb =  478.3279739017493
# i =  1156
# evenid =  ci38470887
# dist_jb =  472.10012252964987
# i =  1157
# evenid =  ci38470471
# dist_jb =  496.69454780325754
# i =  1158
# evenid =  ci38470439
# dist_jb =  501.7534378633864
# i =  1159
# evenid =  ci38470415
# dist_jb =  480.2977735637069
# i =  1160
# evenid =  ci38470159
# dist_jb =  486.3894191381582
# i =  1161
# evenid =  ci38470119
# dist_jb =  458.33852606407913
# i =  1162
# evenid =  ci38469967
# dist_jb =  489.0612332964006
# i =  1163
# evenid =  ci38469903
# dist_jb =  495.15858517479444
# i =  1164
# evenid =  ci38469775
# dist_jb =  468.16423350550014
# i =  1165
# evenid =  ci38469415
# dist_jb =  469.09854256749014
# i =  1166
# evenid =  ci38469375
# dist_jb =  468.8771583107639
# i =  1167
# evenid =  ci38469271
# dist_jb =  443.18279620403194
# i =  1168
# evenid =  ci38469215
# dist_jb =  465.8682048654028
# i =  1169
# evenid =  ci38469119
# dist_jb =  477.0357219555344
# i =  1170
# evenid =  ci38469079
# dist_jb =  487.9007763935089
# i =  1171
# evenid =  ci38468767
# dist_jb =  495.70014521265136
# i =  1172
# evenid =  ci38468407
# dist_jb =  495.6911399444955
# i =  1173
# evenid =  ci38468247
# dist_jb =  489.83610998010886
# i =  1174
# evenid =  ci38468151
# dist_jb =  463.5446581873343
# i =  1175
# evenid =  ci38468063
# dist_jb =  463.9429094098519
# i =  1176
# evenid =  ci38468023
# dist_jb =  492.24864846170397
# i =  1177
# evenid =  ci38468007
# dist_jb =  479.40886820822254
# i =  1178
# evenid =  ci38467815
# dist_jb =  487.97153809042254
# i =  1179
# evenid =  ci38467671
# dist_jb =  471.7870098385215
# i =  1180
# evenid =  ci38467423
# dist_jb =  459.83060483269503
# i =  1181
# evenid =  ci38467391
# dist_jb =  464.9540279481611
# i =  1182
# evenid =  ci38467359
# dist_jb =  460.11749149578446
# i =  1183
# evenid =  ci38467303
# dist_jb =  463.3051872829917
# i =  1184
# evenid =  ci38466991
# dist_jb =  503.62430842182783
# i =  1185
# evenid =  ci38466983
# dist_jb =  463.97305885698705
# i =  1186
# evenid =  ci38466959
# dist_jb =  486.66614290079264
# i =  1187
# evenid =  ci38466855
# dist_jb =  482.44519297293886
# i =  1188
# evenid =  ci38466847
# dist_jb =  493.9026877935691
# i =  1189
# evenid =  ci38466775
# dist_jb =  458.34593308971984
# i =  1190
# evenid =  ci38466711
# dist_jb =  482.6792761834958
# i =  1191
# evenid =  ci38466655
# dist_jb =  502.40323149800474
# i =  1192
# evenid =  ci38466583
# dist_jb =  459.84861928563896
# i =  1193
# evenid =  ci38466495
# dist_jb =  459.3043873836652
# i =  1194
# evenid =  ci38466343
# dist_jb =  461.98435724485904
# i =  1195
# evenid =  ci38466247
# dist_jb =  474.837126442676
# i =  1196
# evenid =  ci38466103
# dist_jb =  507.05601827526806
# i =  1197
# evenid =  ci38466063
# dist_jb =  497.30723445845575
# i =  1198
# evenid =  ci38466023
# dist_jb =  492.2350415286934
# i =  1199
# evenid =  ci38465759
# dist_jb =  461.69553781799766
# i =  1200
# evenid =  ci38465711
# dist_jb =  504.11848093581705
# i =  1201
# evenid =  ci38465703
# dist_jb =  494.3386781605984
# i =  1202
# evenid =  ci38465647
# dist_jb =  487.339756917548
# i =  1203
# evenid =  ci38465447
# dist_jb =  500.40658405858073
# i =  1204
# evenid =  ci38465439
# dist_jb =  440.89581292326386
WARNING:root:dist_jb (485.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.819) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.819) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.057) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.057) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.546) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.546) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.609) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.609) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.597) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.597) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.811) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.811) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.965) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.965) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.031) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.031) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.488) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.488) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.113) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.113) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.348) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.348) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.276) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.276) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.785) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.785) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.16) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.16) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.895) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.895) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.795) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.795) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.331) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.331) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.317) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.631) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.631) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.88) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.88) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.056) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.056) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.494) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.494) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.044) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.044) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.025) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.025) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.355) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.355) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.232) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.232) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.31) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.31) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.79) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.79) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.761) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.761) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.821) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.821) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.461) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.461) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.757) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.757) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.173) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.173) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.845) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.845) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.329) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.329) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.4) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.4) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.752) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.752) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.781) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.781) is greater than the recommended limit (300).
# i =  1205
# evenid =  ci38465415
# dist_jb =  485.8569631605808
# i =  1206
# evenid =  ci38465367
# dist_jb =  502.81911465826363
# i =  1207
# evenid =  ci38465351
# dist_jb =  463.1872735467197
# i =  1208
# evenid =  ci38465239
# dist_jb =  441.0565313075316
# i =  1209
# evenid =  ci38465087
# dist_jb =  462.5456030755288
# i =  1210
# evenid =  ci38465063
# dist_jb =  484.6092967544526
# i =  1211
# evenid =  ci38464943
# dist_jb =  467.2232770739974
# i =  1212
# evenid =  ci38464927
# dist_jb =  458.5973743177583
# i =  1213
# evenid =  ci38464839
# dist_jb =  486.48089437465677
# i =  1214
# evenid =  ci38464799
# dist_jb =  460.81145564757185
# i =  1215
# evenid =  ci38464775
# dist_jb =  488.96460292384904
# i =  1216
# evenid =  ci38464447
# dist_jb =  498.031496165193
# i =  1217
# evenid =  ci38464383
# dist_jb =  471.48808584378804
# i =  1218
# evenid =  ci38464047
# dist_jb =  463.11303503979235
# i =  1219
# evenid =  ci37264444
# dist_jb =  459.34772490070014
# i =  1220
# evenid =  ci38463911
# dist_jb =  495.2763080123275
# i =  1221
# evenid =  ci38463903
# dist_jb =  500.8497787151002
# i =  1222
# evenid =  ci38463831
# dist_jb =  464.7853387556014
# i =  1223
# evenid =  ci38463807
# dist_jb =  462.1602635010377
# i =  1224
# evenid =  ci38463791
# dist_jb =  490.8945841043368
# i =  1225
# evenid =  ci38463631
# dist_jb =  489.8541655753587
# i =  1226
# evenid =  ci37264364
# dist_jb =  459.93245712689
# i =  1227
# evenid =  ci38463551
# dist_jb =  459.7950586371807
# i =  1228
# evenid =  ci38463439
# dist_jb =  459.3310091153137
# i =  1229
# evenid =  ci38463375
# dist_jb =  501.6781960121486
# i =  1230
# evenid =  ci38463359
# dist_jb =  466.31715992490126
# i =  1231
# evenid =  ci37264348
# dist_jb =  490.63107824874623
# i =  1232
# evenid =  ci38463223
# dist_jb =  464.9886790035559
# i =  1233
# evenid =  ci38463159
# dist_jb =  498.0470820288569
# i =  1234
# evenid =  ci38463087
# dist_jb =  474.87963104977496
# i =  1235
# evenid =  ci38463007
# dist_jb =  479.0556585808132
# i =  1236
# evenid =  ci38462927
# dist_jb =  476.6111408355649
# i =  1237
# evenid =  ci38462847
# dist_jb =  473.49377539064784
# i =  1238
# evenid =  ci38462839
# dist_jb =  469.0440031818329
# i =  1239
# evenid =  ci38462687
# dist_jb =  459.0245337386575
# i =  1240
# evenid =  ci38462679
# dist_jb =  459.3553334966291
# i =  1241
# evenid =  ci37264324
# dist_jb =  508.2319340868614
# i =  1242
# evenid =  ci38462559
# dist_jb =  467.85021625298083
# i =  1243
# evenid =  ci38462351
# dist_jb =  460.107603620197
# i =  1244
# evenid =  ci38462175
# dist_jb =  494.30995808029604
# i =  1245
# evenid =  ci38462111
# dist_jb =  458.7899979757176
# i =  1246
# evenid =  ci38462063
# dist_jb =  473.76147015109
# i =  1247
# evenid =  ci38461991
# dist_jb =  471.74401970389164
# i =  1248
# evenid =  ci38461903
# dist_jb =  462.9451133066271
# i =  1249
# evenid =  ci38461887
# dist_jb =  459.88782109905236
# i =  1250
# evenid =  ci37264316
# dist_jb =  459.8210897679075
# i =  1251
# evenid =  ci38461879
# dist_jb =  505.46093510070773
# i =  1252
# evenid =  ci38461783
# dist_jb =  462.75662349475806
# i =  1253
# evenid =  ci38461775
# dist_jb =  486.30409114504357
# i =  1254
# evenid =  ci38461735
# dist_jb =  507.17256276052996
# i =  1255
# evenid =  ci38461727
# dist_jb =  462.95221138262275
# i =  1256
# evenid =  ci38461703
# dist_jb =  507.84488783971966
# i =  1257
# evenid =  ci38461655
# dist_jb =  495.0064201404573
# i =  1258
# evenid =  ci38461639
# dist_jb =  459.32868762683745
# i =  1259
# evenid =  ci38461631
# dist_jb =  485.40002531120564
# i =  1260
# evenid =  ci38461607
# dist_jb =  459.7522806709948
# i =  1261
# evenid =  ci38461599
# dist_jb =  462.7814323680839
WARNING:root:dist_jb (494.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.778) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.778) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.902) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.902) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.923) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.923) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.851) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.714) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.714) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.893) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.893) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.794) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.794) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.854) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.903) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.903) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.399) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.399) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.499) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.499) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.138) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.138) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.267) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.267) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.737) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.737) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.66) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.66) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.073) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.073) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.405) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.405) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.386) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.386) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.134) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.134) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.717) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.717) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.853) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.853) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.828) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.828) is greater than the recommended limit (300).
WARNING:root:dist_jb (440.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (440.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.437) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.437) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.431) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.431) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.943) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.943) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.171) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.171) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.418) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.101) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.101) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.863) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.863) is greater than the recommended limit (300).
# i =  1262
# evenid =  ci38461447
# dist_jb =  494.44854117227567
# i =  1263
# evenid =  ci38461431
# dist_jb =  474.87525006436596
# i =  1264
# evenid =  ci38461423
# dist_jb =  464.7777789803405
# i =  1265
# evenid =  ci38461391
# dist_jb =  459.46989489070995
# i =  1266
# evenid =  ci38461383
# dist_jb =  486.90194217911574
# i =  1267
# evenid =  ci38461335
# dist_jb =  479.8832158711722
# i =  1268
# evenid =  ci38461327
# dist_jb =  486.72856933740263
# i =  1269
# evenid =  ci37264308
# dist_jb =  472.9233972654723
# i =  1270
# evenid =  ci38461311
# dist_jb =  461.8508086910399
# i =  1271
# evenid =  ci38461295
# dist_jb =  458.7136503931568
# i =  1272
# evenid =  ci38461183
# dist_jb =  481.89259182497443
# i =  1273
# evenid =  ci38461159
# dist_jb =  460.43377835269854
# i =  1274
# evenid =  ci38461151
# dist_jb =  461.79364372027595
# i =  1275
# evenid =  ci38461127
# dist_jb =  472.8539003550417
# i =  1276
# evenid =  ci38461023
# dist_jb =  462.9025730915721
# i =  1277
# evenid =  ci38461007
# dist_jb =  461.398553908593
# i =  1278
# evenid =  ci38460999
# dist_jb =  460.15132835323044
# i =  1279
# evenid =  ci38460991
# dist_jb =  461.49942909863387
# i =  1280
# evenid =  ci37264300
# dist_jb =  460.1376730870806
# i =  1281
# evenid =  ci37264292
# dist_jb =  460.2668746301505
# i =  1282
# evenid =  ci37264284
# dist_jb =  459.7372139922969
# i =  1283
# evenid =  ci38460983
# dist_jb =  458.66024756948383
# i =  1284
# evenid =  ci37264204
# dist_jb =  479.072550754952
# i =  1285
# evenid =  ci37264196
# dist_jb =  461.1866983634722
# i =  1286
# evenid =  ci38460975
# dist_jb =  461.40467745895893
# i =  1287
# evenid =  ci37264188
# dist_jb =  458.23102422274303
# i =  1288
# evenid =  ci37264180
# dist_jb =  459.3856281644323
# i =  1289
# evenid =  ci37258076
# dist_jb =  461.1337995304562
# i =  1290
# evenid =  ci38460967
# dist_jb =  459.7169687941526
# i =  1291
# evenid =  ci38460951
# dist_jb =  486.85250807149663
# i =  1292
# evenid =  ci38460927
# dist_jb =  471.8284365800373
# i =  1293
# evenid =  ci38460911
# dist_jb =  440.9181578440449
# i =  1294
# evenid =  ci38460895
# dist_jb =  480.4366954216987
# i =  1295
# evenid =  ci38460887
# dist_jb =  461.43054508521004
# i =  1296
# evenid =  ci38460743
# dist_jb =  460.9430047593409
# i =  1297
# evenid =  ci38460727
# dist_jb =  492.17092326846824
# i =  1298
# evenid =  us70004c7n
# dist_jb =  473.6866387696412
# i =  1299
# evenid =  ci38460655
# dist_jb =  506.4175964110598
# i =  1300
# evenid =  ci38460639
# dist_jb =  506.1014877550169
# i =  1301
# evenid =  ci38460631
# dist_jb =  502.8626938649309
# i =  1302
# evenid =  ci38460623
# dist_jb =  465.96961268725767
WARNING:root:dist_jb (465.97) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.97) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.25) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.25) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.702) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.702) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.721) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.721) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.303) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.303) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.734) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.734) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.296) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.296) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.395) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.395) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.526) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.526) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.764) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.492) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.492) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.163) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.163) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.936) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.936) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.782) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.782) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.302) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.302) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.569) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.569) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.284) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.284) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.907) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.907) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.9) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.9) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.139) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.139) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.078) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.078) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.085) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.085) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.86) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.86) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.504) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.504) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.144) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.144) is greater than the recommended limit (300).
WARNING:root:dist_jb (456.635) is greater than the recommended limit (300).
WARNING:root:dist_jb (456.635) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.634) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.634) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.82) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.82) is greater than the recommended limit (300).
# i =  1303
# evenid =  ci38460471
# dist_jb =  483.25036519370724
# i =  1304
# evenid =  ci37264148
# dist_jb =  458.6781358061887
# i =  1305
# evenid =  ci38460415
# dist_jb =  487.70205206115736
# i =  1306
# evenid =  ci38460375
# dist_jb =  459.72072088991763
# i =  1307
# evenid =  ci38460335
# dist_jb =  490.3025106679049
# i =  1308
# evenid =  ci38460311
# dist_jb =  492.7343592038523
# i =  1309
# evenid =  ci38460279
# dist_jb =  460.2955677785456
# i =  1310
# evenid =  ci38460255
# dist_jb =  499.3945965170248
# i =  1311
# evenid =  ci37264140
# dist_jb =  459.5257077008206
# i =  1312
# evenid =  ci38460223
# dist_jb =  504.76374055836294
# i =  1313
# evenid =  ci38460039
# dist_jb =  459.4917779676019
# i =  1314
# evenid =  ci38459943
# dist_jb =  490.1631103296788
# i =  1315
# evenid =  ci38459895
# dist_jb =  491.93608655593994
# i =  1316
# evenid =  ci38459887
# dist_jb =  483.78237697329206
# i =  1317
# evenid =  ci38459863
# dist_jb =  460.3019234886089
# i =  1318
# evenid =  ci38459855
# dist_jb =  472.56897881822067
# i =  1319
# evenid =  ci37235916
# dist_jb =  506.28378645609183
# i =  1320
# evenid =  ci38459839
# dist_jb =  483.9073431903086
# i =  1321
# evenid =  ci38459831
# dist_jb =  501.90047108414535
# i =  1322
# evenid =  ci37235820
# dist_jb =  492.4703740293598
# i =  1323
# evenid =  ci38459671
# dist_jb =  480.1390215114686
# i =  1324
# evenid =  ci37235404
# dist_jb =  499.0780691423164
# i =  1325
# evenid =  ci37235380
# dist_jb =  475.08482173965086
# i =  1326
# evenid =  ci38459647
# dist_jb =  458.8598416426529
# i =  1327
# evenid =  ci38459599
# dist_jb =  487.911752354619
# i =  1328
# evenid =  ci38459567
# dist_jb =  462.50415909648933
# i =  1329
# evenid =  ci37233956
# dist_jb =  475.1438184427844
# i =  1330
# evenid =  ci37233156
# dist_jb =  456.6353126299525
# i =  1331
# evenid =  ci38459439
# dist_jb =  487.74435499640583
# i =  1332
# evenid =  ci38459415
# dist_jb =  457.70001794795695
# i =  1333
# evenid =  ci38459383
# dist_jb =  457.633840768322
# i =  1334
# evenid =  ci38459335
# dist_jb =  459.9313665055483
# i =  1335
# evenid =  ci38459327
# dist_jb =  459.8200191241765
WARNING:root:dist_jb (481.518) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.518) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.143) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.143) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.98) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.98) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.796) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.796) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.683) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.683) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.576) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.576) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.507) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.507) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.496) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.496) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.757) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.757) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.78) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.78) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.145) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.145) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.925) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.925) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.797) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.797) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.25) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.25) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.554) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.554) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.776) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.001) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.001) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.781) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.781) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.268) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.268) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.108) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.946) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.946) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.714) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.714) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.654) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.654) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.384) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.384) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.371) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.371) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.052) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.052) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.461) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.461) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.086) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.086) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.194) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.69) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.69) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.832) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.832) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.52) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.52) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.622) is greater than the recommended limit (300).
WARNING:root:dist_jb (471.622) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.113) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.113) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.593) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.593) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (508.887) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.655) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.41) is greater than the recommended limit (300).
# i =  1336
# evenid =  ci38459319
# dist_jb =  481.5176247848194
# i =  1337
# evenid =  ci38459311
# dist_jb =  488.3038689563134
# i =  1338
# evenid =  ci38459279
# dist_jb =  486.1426413382133
# i =  1339
# evenid =  ci38459247
# dist_jb =  462.9802752238892
# i =  1340
# evenid =  ci38459239
# dist_jb =  490.796246241765
# i =  1341
# evenid =  ci37231492
# dist_jb =  459.68259115605645
# i =  1342
# evenid =  ci38459215
# dist_jb =  490.57620864800396
# i =  1343
# evenid =  ci38459207
# dist_jb =  504.5069211787234
# i =  1344
# evenid =  ci38459183
# dist_jb =  490.4962105509377
# i =  1345
# evenid =  ci38459167
# dist_jb =  460.75701968136264
# i =  1346
# evenid =  ci38459135
# dist_jb =  467.77996340611435
# i =  1347
# evenid =  ci38459127
# dist_jb =  474.14489302887387
# i =  1348
# evenid =  ci38459047
# dist_jb =  471.92483336764184
# i =  1349
# evenid =  ci38459039
# dist_jb =  459.7974318662942
# i =  1350
# evenid =  ci37229324
# dist_jb =  463.49089453894607
# i =  1351
# evenid =  ci38458999
# dist_jb =  460.1942314706798
# i =  1352
# evenid =  ci37229188
# dist_jb =  463.24953627269895
# i =  1353
# evenid =  ci38458967
# dist_jb =  460.5481498940616
# i =  1354
# evenid =  ci37264124
# dist_jb =  465.55400340148964
# i =  1355
# evenid =  ci38458951
# dist_jb =  463.9524672390963
# i =  1356
# evenid =  ci37229172
# dist_jb =  496.7761684481473
# i =  1357
# evenid =  ci38458943
# dist_jb =  466.00144712961844
# i =  1358
# evenid =  ci37229124
# dist_jb =  485.7814982706932
# i =  1359
# evenid =  ci38458903
# dist_jb =  462.9622999950655
# i =  1360
# evenid =  ci38458895
# dist_jb =  487.2676914229794
# i =  1361
# evenid =  ci38458831
# dist_jb =  461.1080424262063
# i =  1362
# evenid =  ci37228820
# dist_jb =  469.65460345247965
# i =  1363
# evenid =  ci38458815
# dist_jb =  461.9455688539555
# i =  1364
# evenid =  ci38458799
# dist_jb =  463.71448711242846
# i =  1365
# evenid =  ci38458783
# dist_jb =  465.65417045500755
# i =  1366
# evenid =  ci38458767
# dist_jb =  492.3837589195984
# i =  1367
# evenid =  ci37264012
# dist_jb =  496.3707672000037
# i =  1368
# evenid =  ci38458759
# dist_jb =  505.0515683105668
# i =  1369
# evenid =  ci38458735
# dist_jb =  461.46071155807255
# i =  1370
# evenid =  ci37420965
# dist_jb =  499.0864631897993
# i =  1371
# evenid =  ci38458719
# dist_jb =  506.1942708311742
# i =  1372
# evenid =  ci37228468
# dist_jb =  470.6895464777212
# i =  1373
# evenid =  ci38458687
# dist_jb =  461.83152272220383
# i =  1374
# evenid =  ci37228292
# dist_jb =  463.51992882285725
# i =  1375
# evenid =  ci37420885
# dist_jb =  471.6222281332692
# i =  1376
# evenid =  ci38458679
# dist_jb =  458.1126409571139
# i =  1377
# evenid =  ci37263996
# dist_jb =  491.5932635288053
# i =  1378
# evenid =  ci38458671
# dist_jb =  508.88662837254805
# i =  1379
# evenid =  ci38458663
# dist_jb =  480.6554518270867
# i =  1380
# evenid =  ci38458647
# dist_jb =  465.4095915779458
WARNING:root:dist_jb (465.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.627) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.627) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.479) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.479) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.93) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.93) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.796) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.796) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.952) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.978) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.978) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.126) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.126) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.597) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.597) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.717) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.717) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.008) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.008) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.692) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.692) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.082) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.082) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.676) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.676) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.077) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.077) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.967) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.967) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.42) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.42) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.305) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.305) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.458) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.458) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.634) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.634) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.195) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.195) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.841) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.841) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.309) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.309) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.164) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.164) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.726) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.726) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.224) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.224) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.687) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.972) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.972) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.234) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.234) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.921) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.921) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.214) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.214) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.496) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.496) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.992) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.992) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.562) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.562) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (499.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.504) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.504) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.134) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.134) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.557) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.557) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.61) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.61) is greater than the recommended limit (300).
# i =  1381
# evenid =  ci38458655
# dist_jb =  460.6272658870975
# i =  1382
# evenid =  ci38458575
# dist_jb =  501.4785791222572
# i =  1383
# evenid =  ci38458567
# dist_jb =  459.930215473292
# i =  1384
# evenid =  ci37228004
# dist_jb =  495.9868245780489
# i =  1385
# evenid =  ci37227996
# dist_jb =  494.7957096645645
# i =  1386
# evenid =  ci38458543
# dist_jb =  483.9521677145756
# i =  1387
# evenid =  ci38458535
# dist_jb =  459.97847385324997
# i =  1388
# evenid =  ci37227500
# dist_jb =  464.12551886324087
# i =  1389
# evenid =  ci38458527
# dist_jb =  459.5966708708321
# i =  1390
# evenid =  ci38458511
# dist_jb =  460.9322427407033
# i =  1391
# evenid =  ci37227380
# dist_jb =  479.7167861316512
# i =  1392
# evenid =  ci37227372
# dist_jb =  503.0076376733245
# i =  1393
# evenid =  ci38458503
# dist_jb =  475.6922816718003
# i =  1394
# evenid =  ci37227356
# dist_jb =  467.95514518738656
# i =  1395
# evenid =  ci37227348
# dist_jb =  481.6374175808498
# i =  1396
# evenid =  ci38458495
# dist_jb =  464.08204301096225
# i =  1397
# evenid =  ci38458487
# dist_jb =  473.0465243793432
# i =  1398
# evenid =  ci38458479
# dist_jb =  461.6758081170991
# i =  1399
# evenid =  ci38458447
# dist_jb =  489.07735133724003
# i =  1400
# evenid =  ci37227228
# dist_jb =  464.9671869987292
# i =  1401
# evenid =  ci38458439
# dist_jb =  466.4199419725355
# i =  1402
# evenid =  ci37227220
# dist_jb =  464.7059760123518
# i =  1403
# evenid =  ci37227204
# dist_jb =  463.3053251777841
# i =  1404
# evenid =  ci37227196
# dist_jb =  460.4583826627033
# i =  1405
# evenid =  ci38458431
# dist_jb =  465.6336500095268
# i =  1406
# evenid =  ci37227172
# dist_jb =  506.19497028400525
# i =  1407
# evenid =  ci38458415
# dist_jb =  459.8413048287263
# i =  1408
# evenid =  ci37227156
# dist_jb =  495.308676040053
# i =  1409
# evenid =  ci37227084
# dist_jb =  463.16371835846695
# i =  1410
# evenid =  ci37227076
# dist_jb =  467.726303953283
# i =  1411
# evenid =  ci38458407
# dist_jb =  459.56415086277156
# i =  1412
# evenid =  ci37227068
# dist_jb =  494.6964231946777
# i =  1413
# evenid =  ci37227044
# dist_jb =  459.1806457906816
# i =  1414
# evenid =  ci37227036
# dist_jb =  466.22387678016827
# i =  1415
# evenid =  ci38458391
# dist_jb =  494.6869430769392
# i =  1416
# evenid =  ci38458383
# dist_jb =  459.9716066382749
# i =  1417
# evenid =  ci37263980
# dist_jb =  461.2337326352969
# i =  1418
# evenid =  ci37227020
# dist_jb =  481.920899753417
# i =  1419
# evenid =  ci38458375
# dist_jb =  467.21383838569596
# i =  1420
# evenid =  ci38458359
# dist_jb =  461.4963015298819
# i =  1421
# evenid =  us70004bu6
# dist_jb =  461.9917710163749
# i =  1422
# evenid =  ci37226964
# dist_jb =  459.6236775114734
# i =  1423
# evenid =  ci37226956
# dist_jb =  463.5617068525632
# i =  1424
# evenid =  ci38458327
# dist_jb =  499.93121179636046
# i =  1425
# evenid =  us70004bty
# dist_jb =  496.5036712422117
# i =  1426
# evenid =  ci37226940
# dist_jb =  482.1343172319021
# i =  1427
# evenid =  ci38458303
# dist_jb =  484.5571464198195
# i =  1428
# evenid =  ci37226900
# dist_jb =  459.60977929079934
# i =  1429
# evenid =  ci37226852
# dist_jb =  458.5646453750423
WARNING:root:dist_jb (458.565) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.565) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.311) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.311) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.046) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.046) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.155) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.155) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.475) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.933) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.933) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.452) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.452) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.49) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.49) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.216) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.216) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.111) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.111) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.28) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.28) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.744) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.156) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.156) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.363) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.363) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.132) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.132) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.439) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.439) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.652) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.652) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.635) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.635) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.804) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.807) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.807) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.055) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.055) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.791) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.791) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.287) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.287) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.417) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.417) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.588) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.588) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.036) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.036) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.261) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.261) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.449) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.593) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.593) is greater than the recommended limit (300).
# i =  1430
# evenid =  ci37226844
# dist_jb =  458.31116155576046
# i =  1431
# evenid =  ci38458295
# dist_jb =  457.5153427579508
# i =  1432
# evenid =  ci38458287
# dist_jb =  481.04632334323054
# i =  1433
# evenid =  ci37427557
# dist_jb =  459.5099700928019
# i =  1434
# evenid =  ci38458263
# dist_jb =  466.155163412125
# i =  1435
# evenid =  ci37427437
# dist_jb =  460.4751584504253
# i =  1436
# evenid =  ci37427421
# dist_jb =  459.9334460159737
# i =  1437
# evenid =  ci38458223
# dist_jb =  479.45243526564894
# i =  1438
# evenid =  ci37427405
# dist_jb =  492.4900466903009
# i =  1439
# evenid =  ci38458215
# dist_jb =  482.6383531172868
# i =  1440
# evenid =  ci38458199
# dist_jb =  458.21564650819556
# i =  1441
# evenid =  ci38458183
# dist_jb =  462.11087358197943
# i =  1442
# evenid =  ci37427253
# dist_jb =  462.97138531549746
# i =  1443
# evenid =  ci38458175
# dist_jb =  463.2799807094931
# i =  1444
# evenid =  ci38458167
# dist_jb =  462.74357297029746
# i =  1445
# evenid =  ci37427213
# dist_jb =  461.1562009088374
# i =  1446
# evenid =  ci37427197
# dist_jb =  484.36291230026444
# i =  1447
# evenid =  ci37427093
# dist_jb =  459.1317471629393
# i =  1448
# evenid =  ci38458159
# dist_jb =  462.4387256962915
# i =  1449
# evenid =  ci38458143
# dist_jb =  482.6517940453196
# i =  1450
# evenid =  ci38458135
# dist_jb =  497.63497573416805
# i =  1451
# evenid =  ci38458127
# dist_jb =  459.8040548063808
# i =  1452
# evenid =  ci38458119
# dist_jb =  466.5863793223814
# i =  1453
# evenid =  ci38458111
# dist_jb =  462.8074396446737
# i =  1454
# evenid =  ci38458103
# dist_jb =  481.0546809314499
# i =  1455
# evenid =  ci37225548
# dist_jb =  483.7911740107043
# i =  1456
# evenid =  ci37225436
# dist_jb =  492.70560323438895
# i =  1457
# evenid =  ci38458087
# dist_jb =  466.28722488655785
# i =  1458
# evenid =  ci37225428
# dist_jb =  459.15115922161004
# i =  1459
# evenid =  ci37225420
# dist_jb =  463.9103924174751
# i =  1460
# evenid =  ci38458079
# dist_jb =  463.41668445845295
# i =  1461
# evenid =  ci38458071
# dist_jb =  459.7825214493939
# i =  1462
# evenid =  ci37225412
# dist_jb =  459.58757761291713
# i =  1463
# evenid =  ci37225388
# dist_jb =  488.035550582683
# i =  1464
# evenid =  ci37263772
# dist_jb =  461.260832417825
# i =  1465
# evenid =  ci37225228
# dist_jb =  459.4489491715626
# i =  1466
# evenid =  ci37263764
# dist_jb =  459.9179928337799
# i =  1467
# evenid =  ci37225220
# dist_jb =  474.593281886805
WARNING:root:dist_jb (460.396) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.396) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.436) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.436) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.381) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.381) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.463) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.463) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.557) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.557) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.041) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.041) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.286) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.286) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.855) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.855) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.166) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.166) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.826) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.826) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.039) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.039) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.861) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.861) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.425) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.425) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.533) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.533) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.529) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.529) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.583) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.583) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.184) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.184) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.632) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.632) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.784) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.784) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.936) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.936) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.264) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.264) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.86) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.86) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.278) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.278) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.808) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.992) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.992) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.636) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.636) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.678) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.514) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.514) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.74) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.74) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.448) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.448) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.749) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.749) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (504.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.129) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.129) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.337) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.337) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.079) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.057) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.057) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.464) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.464) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.671) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.671) is greater than the recommended limit (300).
# i =  1468
# evenid =  ci38458063
# dist_jb =  460.3957064287552
# i =  1469
# evenid =  ci37225204
# dist_jb =  496.43559794276956
# i =  1470
# evenid =  ci37225196
# dist_jb =  468.90115615704224
# i =  1471
# evenid =  ci37225172
# dist_jb =  503.3809076637806
# i =  1472
# evenid =  ci38458047
# dist_jb =  481.46349048880563
# i =  1473
# evenid =  ci37225100
# dist_jb =  463.54766920844384
# i =  1474
# evenid =  ci38458031
# dist_jb =  459.5571626343512
# i =  1475
# evenid =  ci37225084
# dist_jb =  458.0412819390202
# i =  1476
# evenid =  ci38458023
# dist_jb =  486.93058438714695
# i =  1477
# evenid =  ci38458015
# dist_jb =  460.28609486881356
# i =  1478
# evenid =  ci37225044
# dist_jb =  484.8554668714375
# i =  1479
# evenid =  ci38458007
# dist_jb =  480.9550168710856
# i =  1480
# evenid =  ci38457999
# dist_jb =  463.16627462577577
# i =  1481
# evenid =  ci38457991
# dist_jb =  459.8262037199372
# i =  1482
# evenid =  ci37225004
# dist_jb =  461.6241497925021
# i =  1483
# evenid =  ci38457983
# dist_jb =  496.03922932746775
# i =  1484
# evenid =  ci37224996
# dist_jb =  467.8610953697402
# i =  1485
# evenid =  ci37224988
# dist_jb =  461.42472397179523
# i =  1486
# evenid =  ci37224980
# dist_jb =  461.533005077317
# i =  1487
# evenid =  ci38457975
# dist_jb =  458.94450230802363
# i =  1488
# evenid =  ci37263732
# dist_jb =  486.6783676675181
# i =  1489
# evenid =  ci37263724
# dist_jb =  497.5287572830828
# i =  1490
# evenid =  ci37224972
# dist_jb =  468.58257004004116
# i =  1491
# evenid =  ci37263716
# dist_jb =  486.1836113196322
# i =  1492
# evenid =  ci37224964
# dist_jb =  457.63217368576636
# i =  1493
# evenid =  ci38457967
# dist_jb =  458.7842963891649
# i =  1494
# evenid =  ci37224932
# dist_jb =  462.93644067616515
# i =  1495
# evenid =  ci38457951
# dist_jb =  487.2639050918853
# i =  1496
# evenid =  ci37224820
# dist_jb =  501.86013254217465
# i =  1497
# evenid =  ci37224812
# dist_jb =  487.27841804528293
# i =  1498
# evenid =  ci37224804
# dist_jb =  461.91222845733125
# i =  1499
# evenid =  ci37224780
# dist_jb =  458.80816534072574
# i =  1500
# evenid =  ci37224796
# dist_jb =  462.99216507039023
# i =  1501
# evenid =  ci37224772
# dist_jb =  468.6357880999881
# i =  1502
# evenid =  ci37263684
# dist_jb =  462.67762434455716
# i =  1503
# evenid =  ci38457935
# dist_jb =  459.5144945176853
# i =  1504
# evenid =  ci37263548
# dist_jb =  475.740258844228
# i =  1505
# evenid =  ci37263532
# dist_jb =  459.44751173608785
# i =  1506
# evenid =  ci37224764
# dist_jb =  459.7493221052941
# i =  1507
# evenid =  ci37224756
# dist_jb =  504.37595274005974
# i =  1508
# evenid =  ci38457927
# dist_jb =  468.12859505722065
# i =  1509
# evenid =  ci37224748
# dist_jb =  488.6372511298012
# i =  1510
# evenid =  ci38457919
# dist_jb =  465.33735761616003
# i =  1511
# evenid =  ci37263644
# dist_jb =  462.07922278805256
# i =  1512
# evenid =  ci37224788
# dist_jb =  462.0566174955912
# i =  1513
# evenid =  ci37263516
# dist_jb =  464.46368573367806
# i =  1514
# evenid =  ci38457911
# dist_jb =  472.9711975682109
# i =  1515
# evenid =  ci37222164
# dist_jb =  459.56408166035396
# i =  1516
# evenid =  ci37222156
# dist_jb =  460.67142279211174
# i =  1517
# evenid =  ci38457903
WARNING:root:dist_jb (461.412) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.412) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.573) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.573) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.243) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.243) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.904) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.904) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.742) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.742) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.427) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.427) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.907) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.907) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.519) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.519) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.574) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.574) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.362) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.362) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.199) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.199) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.693) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.693) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.914) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.053) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.053) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.846) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.846) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.423) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.423) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.771) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.771) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.876) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.083) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.083) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.409) is greater than the recommended limit (300).
WARNING:root:dist_jb (472.409) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.14) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.14) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.314) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.488) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.488) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.445) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.445) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.601) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.601) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.13) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.13) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.509) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.072) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.072) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.646) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.646) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.464) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.464) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.611) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.069) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.069) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.476) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.476) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.888) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.312) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.312) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.789) is greater than the recommended limit (300).
# dist_jb =  461.4115963459196
# i =  1518
# evenid =  ci37222140
# dist_jb =  460.57288250191675
# i =  1519
# evenid =  ci37222092
# dist_jb =  486.24253785005436
# i =  1520
# evenid =  ci38457895
# dist_jb =  461.9036976863713
# i =  1521
# evenid =  ci38457879
# dist_jb =  497.74206959827563
# i =  1522
# evenid =  ci37263508
# dist_jb =  462.4269881828948
# i =  1523
# evenid =  ci37222060
# dist_jb =  460.9073273401715
# i =  1524
# evenid =  ci37222052
# dist_jb =  492.3143407942088
# i =  1525
# evenid =  ci37222044
# dist_jb =  457.5192270122171
# i =  1526
# evenid =  ci37222036
# dist_jb =  464.5741798423554
# i =  1527
# evenid =  ci37222028
# dist_jb =  483.34191463624376
# i =  1528
# evenid =  ci38457871
# dist_jb =  475.3615491983589
# i =  1529
# evenid =  ci37263500
# dist_jb =  473.37044089057275
# i =  1530
# evenid =  ci37221948
# dist_jb =  463.19861656371455
# i =  1531
# evenid =  ci37221940
# dist_jb =  459.69322048432
# i =  1532
# evenid =  ci37263484
# dist_jb =  460.9138292429557
# i =  1533
# evenid =  ci37263396
# dist_jb =  461.0529048891964
# i =  1534
# evenid =  ci38457863
# dist_jb =  502.8456625647254
# i =  1535
# evenid =  ci38457855
# dist_jb =  461.231430895265
# i =  1536
# evenid =  ci37263380
# dist_jb =  460.4231138412467
# i =  1537
# evenid =  ci37221932
# dist_jb =  474.5886222925718
# i =  1538
# evenid =  ci38457847
# dist_jb =  462.3704795636207
# i =  1539
# evenid =  ci37221916
# dist_jb =  485.93385565259734
# i =  1540
# evenid =  ci37221924
# dist_jb =  459.77067483889414
# i =  1541
# evenid =  ci38457839
# dist_jb =  491.87620172758193
# i =  1542
# evenid =  ci37221884
# dist_jb =  469.08298688071505
# i =  1543
# evenid =  ci37221892
# dist_jb =  472.4092895499678
# i =  1544
# evenid =  ci38457831
# dist_jb =  468.1398026960125
# i =  1545
# evenid =  ci37221876
# dist_jb =  463.3138390421946
# i =  1546
# evenid =  ci37221716
# dist_jb =  459.44129975038567
# i =  1547
# evenid =  ci37263348
# dist_jb =  487.4876421389156
# i =  1548
# evenid =  ci37221708
# dist_jb =  490.44492563342135
# i =  1549
# evenid =  ci37221644
# dist_jb =  501.60109154503664
# i =  1550
# evenid =  ci37221636
# dist_jb =  463.01254034097883
# i =  1551
# evenid =  ci37263340
# dist_jb =  460.1298432171051
# i =  1552
# evenid =  ci38457815
# dist_jb =  486.5092337925572
# i =  1553
# evenid =  ci37220324
# dist_jb =  462.0715096209006
# i =  1554
# evenid =  ci37221628
# dist_jb =  469.6301473705914
# i =  1555
# evenid =  ci37221620
# dist_jb =  460.6457941610683
# i =  1556
# evenid =  ci38457807
# dist_jb =  492.4636297666143
# i =  1557
# evenid =  ci37263332
# dist_jb =  490.6114515335957
# i =  1558
# evenid =  ci37221604
# dist_jb =  459.0692566393052
# i =  1559
# evenid =  ci37221596
# dist_jb =  463.4757240410418
# i =  1560
# evenid =  ci37258068
# dist_jb =  459.88807080631494
# i =  1561
# evenid =  ci37221588
# dist_jb =  462.3116546339241
# i =  1562
# evenid =  ci37263324
# dist_jb =  461.93180837306073
# i =  1563
# evenid =  ci37221612
# dist_jb =  460.78920166540297
# i =  1564
# evenid =  ci37221580
# dist_jb =  477.86060951730036
WARNING:root:dist_jb (477.861) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.861) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.297) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.036) is greater than the recommended limit (300).
WARNING:root:dist_jb (470.036) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.12) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.12) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.191) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.191) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.48) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.48) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.731) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.731) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.066) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.066) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.773) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.773) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.106) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.106) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.212) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.212) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.345) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.345) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.349) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.349) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.22) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.22) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.112) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.112) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.028) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.028) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.003) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.881) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.881) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.667) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.667) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.981) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.981) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.441) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.059) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.059) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.555) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.555) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.673) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.673) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.54) is greater than the recommended limit (300).
WARNING:root:dist_jb (506.54) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.265) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.265) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.006) is greater than the recommended limit (300).
# i =  1565
# evenid =  ci38457799
# dist_jb =  467.2967509021199
# i =  1566
# evenid =  ci37221564
# dist_jb =  470.0362564346428
# i =  1567
# evenid =  ci37221556
# dist_jb =  500.0318824946798
# i =  1568
# evenid =  ci37221548
# dist_jb =  488.119773755311
# i =  1569
# evenid =  ci37221460
# dist_jb =  486.1908388271305
# i =  1570
# evenid =  ci37263260
# dist_jb =  463.4797850371822
# i =  1571
# evenid =  ci37221444
# dist_jb =  463.73053459810757
# i =  1572
# evenid =  ci38457791
# dist_jb =  466.0659074581149
# i =  1573
# evenid =  ci37263252
# dist_jb =  480.0145875723756
# i =  1574
# evenid =  ci37221436
# dist_jb =  461.77317357706426
# i =  1575
# evenid =  ci37221428
# dist_jb =  459.7831184849534
# i =  1576
# evenid =  ci37263244
# dist_jb =  464.10601888906933
# i =  1577
# evenid =  ci38457775
# dist_jb =  495.36991966484976
# i =  1578
# evenid =  ci37221212
# dist_jb =  496.21183990146613
# i =  1579
# evenid =  ci37221204
# dist_jb =  505.3453960301226
# i =  1580
# evenid =  ci38457887
# dist_jb =  505.34870863170363
# i =  1581
# evenid =  ci37221196
# dist_jb =  460.2196814423413
# i =  1582
# evenid =  ci37221188
# dist_jb =  460.11159250151127
# i =  1583
# evenid =  ci37263236
# dist_jb =  469.02751165927737
# i =  1584
# evenid =  ci37221404
# dist_jb =  492.0026786173953
# i =  1585
# evenid =  ci37221388
# dist_jb =  459.88111633143336
# i =  1586
# evenid =  ci37221236
# dist_jb =  507.66739442943583
# i =  1587
# evenid =  ci37263228
# dist_jb =  459.9806748206029
# i =  1588
# evenid =  ci37221220
# dist_jb =  461.4405175817303
# i =  1589
# evenid =  ci38457767
# dist_jb =  487.05925671586823
# i =  1590
# evenid =  ci37221164
# dist_jb =  463.5550385993472
# i =  1591
# evenid =  ci37221156
# dist_jb =  467.67335855956946
# i =  1592
# evenid =  ci37221180
# dist_jb =  506.53998008627843
# i =  1593
# evenid =  ci37263220
# dist_jb =  460.26543114074354
# i =  1594
# evenid =  ci37221148
# dist_jb =  459.00601032277467
WARNING:root:dist_jb (459.056) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.056) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.998) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.263) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.263) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.471) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.095) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.095) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.995) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.995) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.299) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.299) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.28) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.28) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.832) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.832) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.784) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.784) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.911) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.911) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.741) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.741) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.752) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.752) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.774) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.774) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.416) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.416) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.4) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.4) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.349) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.349) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.785) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.785) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.288) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.429) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.429) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (456.981) is greater than the recommended limit (300).
WARNING:root:dist_jb (456.981) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.836) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.836) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.693) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.693) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.042) is greater than the recommended limit (300).
WARNING:root:dist_jb (464) is greater than the recommended limit (300).
WARNING:root:dist_jb (464) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.417) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.417) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.736) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.736) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.531) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.531) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.119) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.119) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.064) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.064) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.587) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.587) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.078) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.078) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.56) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.56) is greater than the recommended limit (300).
WARNING:root:dist_jb (454.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (454.586) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.37) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.384) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.384) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.794) is greater than the recommended limit (300).
WARNING:root:dist_jb (457.794) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.104) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.204) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.204) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.712) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.712) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.868) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.868) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.963) is greater than the recommended limit (300).
# i =  1595
# evenid =  ci37221140
# dist_jb =  459.0562595747744
# i =  1596
# evenid =  ci38457759
# dist_jb =  461.99825976432373
# i =  1597
# evenid =  ci37221132
# dist_jb =  460.2633134974163
# i =  1598
# evenid =  ci37263212
# dist_jb =  464.1783034889872
# i =  1599
# evenid =  ci37263020
# dist_jb =  462.4712601292156
# i =  1600
# evenid =  ci37263204
# dist_jb =  475.095498010778
# i =  1601
# evenid =  ci37262956
# dist_jb =  493.9949806805369
# i =  1602
# evenid =  ci37221124
# dist_jb =  493.94991877181076
# i =  1603
# evenid =  ci37262924
# dist_jb =  463.298774537075
# i =  1604
# evenid =  ci37421229
# dist_jb =  466.4744414256089
# i =  1605
# evenid =  ci37221116
# dist_jb =  462.2797254327493
# i =  1606
# evenid =  ci37262916
# dist_jb =  458.8320073441019
# i =  1607
# evenid =  ci37262892
# dist_jb =  459.7835338515277
# i =  1608
# evenid =  ci37221108
# dist_jb =  457.9110651881053
# i =  1609
# evenid =  ci37262884
# dist_jb =  462.7413221526548
# i =  1610
# evenid =  ci37262860
# dist_jb =  459.43366095150975
# i =  1611
# evenid =  ci37262684
# dist_jb =  491.75208251133597
# i =  1612
# evenid =  ci37221100
# dist_jb =  464.7741921545974
# i =  1613
# evenid =  ci37262524
# dist_jb =  466.87715103777106
# i =  1614
# evenid =  ci38457735
# dist_jb =  462.4159850691244
# i =  1615
# evenid =  ci37221092
# dist_jb =  497.3996648161172
# i =  1616
# evenid =  ci38457727
# dist_jb =  477.34907667893305
# i =  1617
# evenid =  ci37261988
# dist_jb =  458.78466049693156
# i =  1618
# evenid =  ci37261980
# dist_jb =  458.28849130725723
# i =  1619
# evenid =  ci37221076
# dist_jb =  463.1036933006112
# i =  1620
# evenid =  ci37221068
# dist_jb =  486.42911865457984
# i =  1621
# evenid =  ci38457719
# dist_jb =  462.57748565658505
# i =  1622
# evenid =  ci37220908
# dist_jb =  479.3317649280624
# i =  1623
# evenid =  ci37220748
# dist_jb =  456.98117536089467
# i =  1624
# evenid =  ci37220612
# dist_jb =  502.83608979577195
# i =  1625
# evenid =  ci37220604
# dist_jb =  477.69321933443666
# i =  1626
# evenid =  ci37220596
# dist_jb =  462.0422464139182
# i =  1627
# evenid =  ci37261964
# dist_jb =  463.99959781545215
# i =  1628
# evenid =  ci37261948
# dist_jb =  462.06303551479823
# i =  1629
# evenid =  ci37261900
# dist_jb =  461.41651374766207
# i =  1630
# evenid =  ci37261844
# dist_jb =  461.7358699886801
# i =  1631
# evenid =  ci38457703
# dist_jb =  461.5311258345177
# i =  1632
# evenid =  ci37220316
# dist_jb =  458.11930419563805
# i =  1633
# evenid =  ci37220588
# dist_jb =  459.0638930792375
# i =  1634
# evenid =  ci37421773
# dist_jb =  459.58745897206205
# i =  1635
# evenid =  ci37261788
# dist_jb =  497.72976063440314
# i =  1636
# evenid =  ci38457695
# dist_jb =  467.0779964283102
# i =  1637
# evenid =  ci37220308
# dist_jb =  505.6956349196987
# i =  1638
# evenid =  ci37261620
# dist_jb =  459.5596947129938
# i =  1639
# evenid =  ci37261628
# dist_jb =  454.5856519663177
# i =  1640
# evenid =  ci37261564
# dist_jb =  458.370056587917
# i =  1641
# evenid =  ci37220300
# dist_jb =  462.38391081687615
# i =  1642
# evenid =  ci37261556
# dist_jb =  457.84951104851086
# i =  1643
# evenid =  ci38457687
# dist_jb =  457.7935076818527
# i =  1644
# evenid =  ci37261540
# dist_jb =  461.10388728113753
# i =  1645
# evenid =  ci37220292
# dist_jb =  458.20405461631975
# i =  1646
# evenid =  ci37261516
# dist_jb =  460.7117507102951
# i =  1647
# evenid =  ci37220284
# dist_jb =  494.8683796075336
# i =  1648
# evenid =  ci38457679
# dist_jb =  491.9634573506174
# i =  1649
# evenid =  ci37261500
# dist_jb =  459.51509615403023
WARNING:root:dist_jb (459.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.846) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.846) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.48) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.48) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.246) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.246) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.235) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.235) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.502) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.502) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.874) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.874) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.617) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.617) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.825) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.825) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.315) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.315) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.963) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.819) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.819) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.801) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.801) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (505.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.485) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.485) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.761) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.761) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.262) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.262) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.434) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.705) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.705) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.642) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.642) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.121) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.121) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.033) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.033) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.77) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.77) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.947) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.947) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.708) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.708) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.6) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.6) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.046) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.046) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.562) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.562) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.065) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.065) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.831) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.831) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.187) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.603) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.603) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.658) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.658) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.267) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.267) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.928) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.928) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.41) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.737) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.737) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.906) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.906) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.873) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.873) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.863) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.863) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.472) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.472) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.769) is greater than the recommended limit (300).
# i =  1650
# evenid =  ci37220276
# dist_jb =  487.84635656054473
# i =  1651
# evenid =  ci37220268
# dist_jb =  460.48014944590267
# i =  1652
# evenid =  ci37220108
# dist_jb =  458.245527664605
# i =  1653
# evenid =  ci38457671
# dist_jb =  459.2350700819312
# i =  1654
# evenid =  ci37219948
# dist_jb =  459.5019341173251
# i =  1655
# evenid =  ci37219924
# dist_jb =  461.874228889331
# i =  1656
# evenid =  ci37261484
# dist_jb =  476.6168648783659
# i =  1657
# evenid =  ci38457663
# dist_jb =  458.8248097379692
# i =  1658
# evenid =  ci37261468
# dist_jb =  461.31458413259656
# i =  1659
# evenid =  ci37219900
# dist_jb =  462.9626205277407
# i =  1660
# evenid =  ci38457655
# dist_jb =  462.818876455073
# i =  1661
# evenid =  ci37219908
# dist_jb =  464.80091765763115
# i =  1662
# evenid =  ci37261436
# dist_jb =  505.0753293480761
# i =  1663
# evenid =  ci37219884
# dist_jb =  480.48510170778064
# i =  1664
# evenid =  ci37261284
# dist_jb =  460.76088267150516
# i =  1665
# evenid =  ci37261276
# dist_jb =  460.954716005305
# i =  1666
# evenid =  ci37261268
# dist_jb =  459.2616993484305
# i =  1667
# evenid =  ci38457639
# dist_jb =  460.43447753531086
# i =  1668
# evenid =  ci37261260
# dist_jb =  463.70541686585244
# i =  1669
# evenid =  ci37219876
# dist_jb =  496.9343190774703
# i =  1670
# evenid =  ci37219868
# dist_jb =  475.64221021897595
# i =  1671
# evenid =  ci37261244
# dist_jb =  465.1213388817822
# i =  1672
# evenid =  ci37219860
# dist_jb =  474.03251058020504
# i =  1673
# evenid =  ci38457631
# dist_jb =  460.7702107234542
# i =  1674
# evenid =  ci37219852
# dist_jb =  459.9468641654621
# i =  1675
# evenid =  ci37421237
# dist_jb =  458.2731404852199
# i =  1676
# evenid =  ci37421221
# dist_jb =  498.70779825929986
# i =  1677
# evenid =  ci37219844
# dist_jb =  483.6002756588019
# i =  1678
# evenid =  ci38457623
# dist_jb =  494.0462233765482
# i =  1679
# evenid =  ci37261204
# dist_jb =  475.5616064708445
# i =  1680
# evenid =  ci37219836
# dist_jb =  460.06468038276716
# i =  1681
# evenid =  ci37260924
# dist_jb =  490.83083971732805
# i =  1682
# evenid =  ci37219828
# dist_jb =  463.18678358311354
# i =  1683
# evenid =  ci37219820
# dist_jb =  484.60336271135134
# i =  1684
# evenid =  ci37260892
# dist_jb =  458.6578525375531
# i =  1685
# evenid =  ci37219812
# dist_jb =  487.2673935847419
# i =  1686
# evenid =  ci38457615
# dist_jb =  458.9281553472005
# i =  1687
# evenid =  ci37260884
# dist_jb =  483.07460409541625
# i =  1688
# evenid =  ci37260876
# dist_jb =  463.4100280366315
# i =  1689
# evenid =  ci37219804
# dist_jb =  497.73707426987875
# i =  1690
# evenid =  ci37219796
# dist_jb =  452.90597669224707
# i =  1691
# evenid =  ci37260868
# dist_jb =  483.87267828976996
# i =  1692
# evenid =  ci38457607
# dist_jb =  493.863418131901
# i =  1693
# evenid =  ci37219788
# dist_jb =  503.471624772238
# i =  1694
# evenid =  ci37219740
# dist_jb =  464.76880873855737
WARNING:root:dist_jb (464.769) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.137) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.137) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.255) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.255) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (477.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.472) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.472) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (463.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.444) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.444) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.304) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.236) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.236) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.007) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.007) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.3) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.3) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.318) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.318) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.893) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.893) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.018) is greater than the recommended limit (300).
WARNING:root:dist_jb (501.018) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.773) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.773) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.324) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.324) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.548) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.515) is greater than the recommended limit (300).
WARNING:root:dist_jb (492) is greater than the recommended limit (300).
WARNING:root:dist_jb (492) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.387) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.387) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.048) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.805) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.805) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.803) is greater than the recommended limit (300).
WARNING:root:dist_jb (507.803) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.446) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.446) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.786) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.786) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.331) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.331) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.679) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.679) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.013) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.337) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.337) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (495.178) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.861) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.861) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.136) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.136) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.667) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.667) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.589) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.51) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.743) is greater than the recommended limit (300).
WARNING:root:dist_jb (503.743) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.95) is greater than the recommended limit (300).
# i =  1695
# evenid =  ci37261164
# dist_jb =  460.1366663066911
# i =  1696
# evenid =  ci37260860
# dist_jb =  461.25521751371605
# i =  1697
# evenid =  ci37219732
# dist_jb =  477.98742825912007
# i =  1698
# evenid =  ci37219724
# dist_jb =  461.47240679575316
# i =  1699
# evenid =  ci37260828
# dist_jb =  463.3415352563359
# i =  1700
# evenid =  ci37261156
# dist_jb =  496.4444064091924
# i =  1701
# evenid =  ci37219708
# dist_jb =  482.3040818969158
# i =  1702
# evenid =  ci37219716
# dist_jb =  460.23568604429033
# i =  1703
# evenid =  ci37219700
# dist_jb =  494.00686919836784
# i =  1704
# evenid =  ci37219692
# dist_jb =  487.30040141225845
# i =  1705
# evenid =  ci37219684
# dist_jb =  460.31797895141966
# i =  1706
# evenid =  ci38457599
# dist_jb =  459.89284785441106
# i =  1707
# evenid =  ci37219676
# dist_jb =  501.0177509264209
# i =  1708
# evenid =  ci37219668
# dist_jb =  459.77304621064394
# i =  1709
# evenid =  ci37260804
# dist_jb =  467.01324700624025
# i =  1710
# evenid =  ci37219660
# dist_jb =  461.32414776047847
# i =  1711
# evenid =  ci37219652
# dist_jb =  462.5481191997096
# i =  1712
# evenid =  ci37260788
# dist_jb =  482.5149204732029
# i =  1713
# evenid =  ci37219644
# dist_jb =  491.9998446862142
# i =  1714
# evenid =  ci37219636
# dist_jb =  460.38691859994594
# i =  1715
# evenid =  ci37219628
# dist_jb =  461.0475244102552
# i =  1716
# evenid =  ci37219620
# dist_jb =  461.80535664550644
# i =  1717
# evenid =  ci38457591
# dist_jb =  507.80269979084665
# i =  1718
# evenid =  ci37260620
# dist_jb =  462.4463412186351
# i =  1719
# evenid =  ci37260612
# dist_jb =  464.78629990010387
# i =  1720
# evenid =  ci37219612
# dist_jb =  461.33098769160006
# i =  1721
# evenid =  ci38457583
# dist_jb =  460.6786482295792
# i =  1722
# evenid =  ci37219604
# dist_jb =  486.0128307096003
# i =  1723
# evenid =  ci38457575
# dist_jb =  467.3374158035424
# i =  1724
# evenid =  ci37219596
# dist_jb =  495.1777641375856
# i =  1725
# evenid =  ci38457559
# dist_jb =  459.8606932125025
# i =  1726
# evenid =  ci37219588
# dist_jb =  464.1505039998491
# i =  1727
# evenid =  ci37219580
# dist_jb =  468.136048091816
# i =  1728
# evenid =  ci38457551
# dist_jb =  458.66669474506466
# i =  1729
# evenid =  ci37219572
# dist_jb =  462.5099291791552
# i =  1730
# evenid =  ci37260500
# dist_jb =  491.5889646187669
# i =  1731
# evenid =  ci37260492
# dist_jb =  466.5096949999487
# i =  1732
# evenid =  ci37219564
# dist_jb =  503.7430168853863
# i =  1733
# evenid =  ci37219180
# dist_jb =  458.950363371732
WARNING:root:dist_jb (458.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (500.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.098) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.098) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.422) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.422) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.728) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.728) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.047) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.192) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.192) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.265) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.265) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.63) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.143) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.143) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.493) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.493) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.075) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.836) is greater than the recommended limit (300).
WARNING:root:dist_jb (460.836) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.54) is greater than the recommended limit (300).
WARNING:root:dist_jb (473.54) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (494.955) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (461.081) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.626) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.626) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.819) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.819) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.373) is greater than the recommended limit (300).
WARNING:root:dist_jb (459.373) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.752) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.752) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.929) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.929) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.27) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.27) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.373) is greater than the recommended limit (300).
WARNING:root:dist_jb (497.373) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.696) is greater than the recommended limit (300).
WARNING:root:dist_jb (456.066) is greater than the recommended limit (300).
WARNING:root:dist_jb (456.066) is greater than the recommended limit (300).
WARNING:root:dist_jb (443.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (443.931) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.878) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.878) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.242) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.242) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.95) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.608) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.608) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.154) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.154) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.142) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.142) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.202) is greater than the recommended limit (300).
WARNING:root:dist_jb (476.202) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.208) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.208) is greater than the recommended limit (300).
# i =  1734
# evenid =  ci37260484
# dist_jb =  500.07522460537905
# i =  1735
# evenid =  ci37219556
# dist_jb =  466.38543166353395
# i =  1736
# evenid =  ci37219548
# dist_jb =  462.09848143574715
# i =  1737
# evenid =  ci37260476
# dist_jb =  498.4217571830669
# i =  1738
# evenid =  ci37219540
# dist_jb =  469.7277625833083
# i =  1739
# evenid =  ci37260460
# dist_jb =  492.8748862957296
# i =  1740
# evenid =  ci37260468
# dist_jb =  466.04681539375406
# i =  1741
# evenid =  ci37219172
# dist_jb =  466.1918779175499
# i =  1742
# evenid =  ci37219524
# dist_jb =  462.26492891236796
# i =  1743
# evenid =  ci37260452
# dist_jb =  473.6299389489157
# i =  1744
# evenid =  ci37219516
# dist_jb =  464.14342237544196
# i =  1745
# evenid =  ci38457535
# dist_jb =  459.4925255401021
# i =  1746
# evenid =  ci37260444
# dist_jb =  461.0747805221167
# i =  1747
# evenid =  ci37219508
# dist_jb =  460.8360197463161
# i =  1748
# evenid =  ci37219164
# dist_jb =  473.53959233823554
# i =  1749
# evenid =  ci37219476
# dist_jb =  494.95481580093485
# i =  1750
# evenid =  ci37260316
# dist_jb =  461.0814359635127
# i =  1751
# evenid =  ci37219468
# dist_jb =  465.6258562360096
# i =  1752
# evenid =  ci37260308
# dist_jb =  469.8193239804192
# i =  1753
# evenid =  ci37219156
# dist_jb =  459.3734653419733
# i =  1754
# evenid =  ci37219500
# dist_jb =  498.7521075609279
# i =  1755
# evenid =  ci37219492
# dist_jb =  498.92894733059813
# i =  1756
# evenid =  ci37219484
# dist_jb =  482.2697578013008
# i =  1757
# evenid =  ci38457519
# dist_jb =  458.27264584730216
# i =  1758
# evenid =  ci37260300
# dist_jb =  497.37281056844006
# i =  1759
# evenid =  ci37222204
# dist_jb =  468.69649497386206
# i =  1760
# evenid =  ci37222196
# dist_jb =  456.0660868587884
# i =  1761
# evenid =  ci37222188
# dist_jb =  443.9310874094475
# i =  1762
# evenid =  ci38457511
# dist_jb =  476.8784496067786
# i =  1763
# evenid =  ci37257780
# dist_jb =  481.24166782901864
# i =  1764
# evenid =  ci38457487
# dist_jb =  482.9497579748493
# i =  1765
# evenid =  us70004bkq
# dist_jb =  479.60782511833384
# i =  1766
# evenid =  ci38456615
# dist_jb =  479.15431334969674
# i =  1767
# evenid =  ci38456351
# dist_jb =  482.14152799550624
# i =  1768
# evenid =  ci38455679
# dist_jb =  476.20184794812957
# i =  1769
# evenid =  ci38453719
# dist_jb =  474.3320382696797
# i =  1770
# evenid =  ci38453279
# dist_jb =  487.208212623567
# i = 
WARNING:root:dist_jb (489.805) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.805) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.968) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.968) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.62) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.62) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.495) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.495) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.833) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.833) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.442) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.442) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.001) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.001) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.939) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.939) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (478.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.723) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.723) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.29) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.29) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.327) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.327) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.429) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.429) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.733) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.733) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.164) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.164) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.238) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.238) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.901) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.777) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.777) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.084) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.084) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.857) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.505) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.505) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.767) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.767) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.91) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.06) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.06) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.063) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.523) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.523) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.426) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.514) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.514) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.17) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.358) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.358) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.443) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.443) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.279) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.279) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.424) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.424) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.206) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.206) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.69) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.69) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.308) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.308) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.278) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.278) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.556) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.556) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.811) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.811) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.82) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.82) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.9) is greater than the recommended limit (300).
WARNING:root:dist_jb (479.9) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.306) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.459) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.459) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.965) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.965) is greater than the recommended limit (300).
 1771
# evenid =  ci38452607
# dist_jb =  489.8046191033856
# i =  1772
# evenid =  ci38452095
# dist_jb =  480.96843824677654
# i =  1773
# evenid =  ci38451239
# dist_jb =  480.6197541592049
# i =  1774
# evenid =  ci37260292
# dist_jb =  488.4950382838721
# i =  1775
# evenid =  ci38451079
# dist_jb =  478.9869907854855
# i =  1776
# evenid =  ci38450935
# dist_jb =  484.83344668278085
# i =  1777
# evenid =  ci38450511
# dist_jb =  478.44244158709324
# i =  1778
# evenid =  ci38450415
# dist_jb =  479.0013599486344
# i =  1779
# evenid =  nc73207501
# dist_jb =  333.9385973987597
# i =  1780
# evenid =  ci38450271
# dist_jb =  478.9184817182826
# i =  1781
# evenid =  ci37260284
# dist_jb =  479.722502424937
# i =  1782
# evenid =  ci38450263
# dist_jb =  479.2898637664207
# i =  1783
# evenid =  ci38450223
# dist_jb =  487.32685009954474
# i =  1784
# evenid =  ci38449919
# dist_jb =  490.42885713829793
# i =  1785
# evenid =  ci38449719
# dist_jb =  487.73324410625077
# i =  1786
# evenid =  ci38449351
# dist_jb =  488.1635933730131
# i =  1787
# evenid =  ci38449191
# dist_jb =  486.23771414823517
# i =  1788
# evenid =  ci38448863
# dist_jb =  490.9009657913421
# i =  1789
# evenid =  ci38448791
# dist_jb =  480.7766002468601
# i =  1790
# evenid =  ci38448631
# dist_jb =  482.08370995082237
# i =  1791
# evenid =  ci38448487
# dist_jb =  487.8565123499003
# i =  1792
# evenid =  ci38448295
# dist_jb =  487.5053926407795
# i =  1793
# evenid =  ci38448031
# dist_jb =  475.76680210223736
# i =  1794
# evenid =  ci38447999
# dist_jb =  489.9101756902918
# i =  1795
# evenid =  ci38447623
# dist_jb =  490.06001402866394
# i =  1796
# evenid =  ci38447591
# dist_jb =  483.0626168437136
# i =  1797
# evenid =  ci38447391
# dist_jb =  489.5231136637999
# i =  1798
# evenid =  ci38447191
# dist_jb =  489.4257976575068
# i =  1799
# evenid =  ci38447143
# dist_jb =  487.51396329615324
# i =  1800
# evenid =  ci38446807
# dist_jb =  475.17020854749285
# i =  1801
# evenid =  ci38446671
# dist_jb =  489.35816677708317
# i =  1802
# evenid =  ci38446647
# dist_jb =  488.443087792607
# i =  1803
# evenid =  ci38446639
# dist_jb =  475.27943228839325
# i =  1804
# evenid =  ci38446391
# dist_jb =  489.1806917806022
# i =  1805
# evenid =  ci38446343
# dist_jb =  483.42404508167687
# i =  1806
# evenid =  ci38446159
# dist_jb =  488.2060769544138
# i =  1807
# evenid =  ci38446071
# dist_jb =  489.6897975440831
# i =  1808
# evenid =  ci38445975
# dist_jb =  475.3081539181554
# i =  1809
# evenid =  ci38445839
# dist_jb =  489.27768686402
# i =  1810
# evenid =  ci38445751
# dist_jb =  480.5557477874694
# i =  1811
# evenid =  ci38445703
# dist_jb =  485.8113649952596
# i =  1812
# evenid =  ci37420973
# dist_jb =  488.8198839464471
# i =  1813
# evenid =  ci38445503
# dist_jb =  479.8995751587108
# i =  1814
# evenid =  ci38445495
# dist_jb =  492.30627401435527
# i =  1815
# evenid =  ci38445295
# dist_jb =  485.45901929972894
# i =  1816
# evenid =  ci38445087
# dist_jb =  480.9647011660707
# i = 
WARNING:root:dist_jb (489.679) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.679) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.243) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.243) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.855) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.855) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.46) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.46) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.425) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.425) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.372) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.372) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.133) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.133) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.474) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.815) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.815) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.625) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.625) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.435) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.435) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.897) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.897) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.858) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.858) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.621) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.621) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.334) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.334) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.821) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.821) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.021) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.021) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.151) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.672) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.802) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.802) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.928) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.928) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.915) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.915) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.852) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.852) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.98) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.98) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.549) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.549) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.87) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.87) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.226) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.226) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.619) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.619) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.875) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.647) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.647) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.117) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.117) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.121) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.121) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.069) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.069) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.911) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.911) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.015) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.015) is greater than the recommended limit (300).
 1817
# evenid =  ci37225444
# dist_jb =  489.6790860902573
# i =  1818
# evenid =  ci38445015
# dist_jb =  488.882641020419
# i =  1819
# evenid =  ci38444903
# dist_jb =  484.24333902570686
# i =  1820
# evenid =  ci38444823
# dist_jb =  488.85525853223504
# i =  1821
# evenid =  ci38444791
# dist_jb =  486.4595824831289
# i =  1822
# evenid =  ci38444543
# dist_jb =  490.42460587953747
# i =  1823
# evenid =  ci38444487
# dist_jb =  489.3715425086989
# i =  1824
# evenid =  ci38444407
# dist_jb =  490.1325899892675
# i =  1825
# evenid =  ci38444263
# dist_jb =  484.4741121064952
# i =  1826
# evenid =  ci38444231
# dist_jb =  489.8149415069372
# i =  1827
# evenid =  ci38444215
# dist_jb =  487.6253674974733
# i =  1828
# evenid =  ci38444159
# dist_jb =  489.4354629698593
# i =  1829
# evenid =  ci37260124
# dist_jb =  488.8969297227536
# i =  1830
# evenid =  ci38444103
# dist_jb =  488.8584747902185
# i =  1831
# evenid =  ci38444063
# dist_jb =  483.6208293928003
# i =  1832
# evenid =  ci38444047
# dist_jb =  490.33444042971416
# i =  1833
# evenid =  ci38443871
# dist_jb =  491.8210405283579
# i =  1834
# evenid =  ci37224620
# dist_jb =  485.0213010881094
# i =  1835
# evenid =  ci38443831
# dist_jb =  488.15058464119824
# i =  1836
# evenid =  ci38443823
# dist_jb =  489.6529192318002
# i =  1837
# evenid =  ci38443759
# dist_jb =  483.6715692620877
# i =  1838
# evenid =  ci37231484
# dist_jb =  485.8016396271444
# i =  1839
# evenid =  ci38443751
# dist_jb =  483.9282769908525
# i =  1840
# evenid =  ci37230948
# dist_jb =  486.91478835631966
# i =  1841
# evenid =  ci37420717
# dist_jb =  483.8522477510311
# i =  1842
# evenid =  ci38443719
# dist_jb =  482.9797476507115
# i =  1843
# evenid =  ci38443711
# dist_jb =  491.54918766659
# i =  1844
# evenid =  ci38443703
# dist_jb =  486.87019819290515
# i =  1845
# evenid =  ci38443695
# dist_jb =  482.22592452038907
# i =  1846
# evenid =  ci37230836
# dist_jb =  486.6193201053192
# i =  1847
# evenid =  ci38443671
# dist_jb =  489.8753450828431
# i =  1848
# evenid =  ci37230564
# dist_jb =  492.64681569664117
# i =  1849
# evenid =  ci37230556
# dist_jb =  488.1171247137357
# i =  1850
# evenid =  ci37421213
# dist_jb =  492.1207480394455
# i =  1851
# evenid =  ci38443647
# dist_jb =  491.06863286042363
# i =  1852
# evenid =  ci38443631
# dist_jb =  482.91120853272
# i =  1853
# evenid =  ci38443615
# dist_jb =  489.014596462917
# i =  1854
# evenid =  ci37224612
# dist_jb =  488.4698438329839
WARNING:root:dist_jb (488.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.47) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.845) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.845) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.423) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.423) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.934) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.882) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.882) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.733) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.733) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.594) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.746) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.746) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.246) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.246) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.578) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.578) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.168) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.168) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.73) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.793) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.793) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.14) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.14) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.969) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.969) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.032) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.55) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.55) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.595) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.595) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.786) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.786) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.222) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.222) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.342) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.223) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.203) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.203) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.524) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.524) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.347) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.347) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (483.703) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.009) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.009) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.728) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.728) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.708) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.708) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.018) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.018) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (484.789) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.7) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.359) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.359) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.606) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.606) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.68) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.68) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.783) is greater than the recommended limit (300).
# i =  1855
# evenid =  ci38443607
# dist_jb =  486.8446796679963
# i =  1856
# evenid =  ci38443543
# dist_jb =  485.42253189016765
# i =  1857
# evenid =  ci38443535
# dist_jb =  481.9342261390058
# i =  1858
# evenid =  ci38443527
# dist_jb =  488.8820029446127
# i =  1859
# evenid =  ci38443519
# dist_jb =  488.73287683809144
# i =  1860
# evenid =  ci38443487
# dist_jb =  483.5939115310609
# i =  1861
# evenid =  ci37420701
# dist_jb =  488.74570418366596
# i =  1862
# evenid =  ci38443439
# dist_jb =  489.2464753636807
# i =  1863
# evenid =  ci38443431
# dist_jb =  485.5781194505297
# i =  1864
# evenid =  ci38443415
# dist_jb =  488.1678867598245
# i =  1865
# evenid =  ci37223308
# dist_jb =  489.72987499458026
# i =  1866
# evenid =  ci38443407
# dist_jb =  489.91754379648665
# i =  1867
# evenid =  ci37259964
# dist_jb =  485.7928657101473
# i =  1868
# evenid =  ci37223244
# dist_jb =  488.1399198608623
# i =  1869
# evenid =  ci38443391
# dist_jb =  485.96922749839973
# i =  1870
# evenid =  ci38443383
# dist_jb =  489.03235796050313
# i =  1871
# evenid =  ci37223156
# dist_jb =  487.55011022128497
# i =  1872
# evenid =  ci37422005
# dist_jb =  488.5946712761584
# i =  1873
# evenid =  ci38443319
# dist_jb =  487.78642344414106
# i =  1874
# evenid =  ci38443287
# dist_jb =  488.2215222953247
# i =  1875
# evenid =  ci37222572
# dist_jb =  486.3420521421093
# i =  1876
# evenid =  ci37222564
# dist_jb =  488.2225044251131
# i =  1877
# evenid =  ci37222556
# dist_jb =  482.2034756893943
# i =  1878
# evenid =  ci37222548
# dist_jb =  482.5238282155771
# i =  1879
# evenid =  ci38443279
# dist_jb =  482.34651501760675
# i =  1880
# evenid =  ci38443271
# dist_jb =  483.57709683539326
# i =  1881
# evenid =  ci37222524
# dist_jb =  483.70305705463113
# i =  1882
# evenid =  ci37421989
# dist_jb =  484.00912135047975
# i =  1883
# evenid =  ci37421997
# dist_jb =  489.7280426909404
# i =  1884
# evenid =  ci38443255
# dist_jb =  488.7075124842297
# i =  1885
# evenid =  us70004a0z
# dist_jb =  486.01839395712204
# i =  1886
# evenid =  ci38443239
# dist_jb =  482.27305158376294
# i =  1887
# evenid =  ci37421957
# dist_jb =  484.78874062004326
# i =  1888
# evenid =  ci37259692
# dist_jb =  491.6533055224854
# i =  1889
# evenid =  ci37222516
# dist_jb =  482.5895525584026
# i =  1890
# evenid =  ci37222508
# dist_jb =  488.7004361700691
# i =  1891
# evenid =  ci38443231
# dist_jb =  487.3585825156984
# i =  1892
# evenid =  ci38443223
# dist_jb =  481.60566623292317
# i =  1893
# evenid =  ci37259660
# dist_jb =  486.6802118929682
# i =  1894
# evenid =  ci38443215
# dist_jb =  489.7827347165184
WARNING:root:dist_jb (489.783) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.447) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.447) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (474.729) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.999) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.999) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.602) is greater than the recommended limit (300).
WARNING:root:dist_jb (485.602) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.084) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.084) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.615) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.615) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.935) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.935) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.602) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.602) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.226) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.226) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.293) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.293) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.71) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.71) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.469) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.469) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.842) is greater than the recommended limit (300).
WARNING:root:dist_jb (480.842) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.814) is greater than the recommended limit (300).
WARNING:root:dist_jb (488.814) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.802) is greater than the recommended limit (300).
WARNING:root:dist_jb (493.802) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.212) is greater than the recommended limit (300).
WARNING:root:dist_jb (491.212) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.604) is greater than the recommended limit (300).
WARNING:root:dist_jb (486.604) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.945) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.797) is greater than the recommended limit (300).
WARNING:root:dist_jb (487.797) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.336) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.203) is greater than the recommended limit (300).
WARNING:root:dist_jb (432.203) is greater than the recommended limit (300).
WARNING:root:dist_jb (352.841) is greater than the recommended limit (300).
WARNING:root:dist_jb (352.841) is greater than the recommended limit (300).
WARNING:root:dist_jb (319.561) is greater than the recommended limit (300).
WARNING:root:dist_jb (319.561) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.614) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.614) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.374) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.374) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (492.962) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.177) is greater than the recommended limit (300).
WARNING:root:dist_jb (410.177) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (496.653) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.564) is greater than the recommended limit (300).
WARNING:root:dist_jb (345.944) is greater than the recommended limit (300).
WARNING:root:dist_jb (345.944) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.528) is greater than the recommended limit (300).
WARNING:root:dist_jb (386.528) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.524) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.524) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.544) is greater than the recommended limit (300).
WARNING:root:dist_jb (452.544) is greater than the recommended limit (300).
WARNING:root:dist_jb (361.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (361.932) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.308) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.308) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.85) is greater than the recommended limit (300).
WARNING:root:dist_jb (338.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (338.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.572) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.572) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.897) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.897) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (464.706) is greater than the recommended limit (300).
WARNING:root:dist_jb (347.623) is greater than the recommended limit (300).
WARNING:root:dist_jb (347.623) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.951) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.951) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.601) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.601) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.638) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.422) is greater than the recommended limit (300).
WARNING:root:dist_jb (468.422) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (465.624) is greater than the recommended limit (300).
WARNING:root:dist_jb (340.276) is greater than the recommended limit (300).
WARNING:root:dist_jb (340.276) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.891) is greater than the recommended limit (300).
WARNING:root:dist_jb (375.891) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.627) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.627) is greater than the recommended limit (300).
WARNING:root:dist_jb (421.507) is greater than the recommended limit (300).
# i =  1895
# evenid =  ci37222404
# dist_jb =  485.44697306393925
# i =  1896
# evenid =  ci37259588
# dist_jb =  474.7290345213075
# i =  1897
# evenid =  ci37256196
# dist_jb =  487.9991005925107
# i =  1898
# evenid =  ci37222396
# dist_jb =  485.60179305092936
# i =  1899
# evenid =  us70004a0n
# dist_jb =  487.08357897683476
# i =  1900
# evenid =  ci37421941
# dist_jb =  489.6151107254054
# i =  1901
# evenid =  ci38443199
# dist_jb =  481.9352959739866
# i =  1902
# evenid =  ci37259580
# dist_jb =  487.601556040012
# i =  1903
# evenid =  ci37218996
# dist_jb =  493.225824582874
# i =  1904
# evenid =  ci37222364
# dist_jb =  489.29265180758796
# i =  1905
# evenid =  ci37222372
# dist_jb =  489.70990750926654
# i =  1906
# evenid =  ci37222380
# dist_jb =  482.46871879152707
# i =  1907
# evenid =  ci37255980
# dist_jb =  480.8422370781167
# i =  1908
# evenid =  ci37218988
# dist_jb =  488.8136766438467
# i =  1909
# evenid =  ci37222356
# dist_jb =  493.8018438813935
# i =  1910
# evenid =  ci37255940
# dist_jb =  491.21199801736753
# i =  1911
# evenid =  ci38443191
# dist_jb =  486.6037668944944
# i =  1912
# evenid =  ci38443183
# dist_jb =  487.94522296319167
# i =  1913
# evenid =  ci38443095
# dist_jb =  487.79655814942856
# i =  1914
# evenid =  nc73205136
# dist_jb =  117.93665942800752
# i =  1915
# evenid =  ci38441215
# dist_jb =  432.3362411429816
# i =  1916
# evenid =  ci38441151
# dist_jb =  432.20311742302584
# i =  1917
# evenid =  nc73201431
# dist_jb =  352.8405501883017
# i =  1918
# evenid =  nc73201181
# dist_jb =  319.5606743498521
# i =  1919
# evenid =  nc73200946
# dist_jb =  124.4070547615857
# i =  1920
# evenid =  nc73199916
# dist_jb =  146.69199340357258
# i =  1921
# evenid =  nc73199616
# dist_jb =  193.96139857736864
# i =  1922
# evenid =  ci38644688
# dist_jb =  452.6137832683325
# i =  1923
# evenid =  nc73196616
# dist_jb =  383.3738483807893
# i =  1924
# evenid =  nc73195396
# dist_jb =  115.35782619108002
# i =  1925
# evenid =  nc73195356
# dist_jb =  141.48632268041877
# i =  1926
# evenid =  nn00687315
# dist_jb =  492.9617422132042
# i =  1927
# evenid =  ci38633112
# dist_jb =  410.17736903171533
# i =  1928
# evenid =  nn00687042
# dist_jb =  269.28444222484313
# i =  1929
# evenid =  nc73192136
# dist_jb =  116.43390533731983
# i =  1930
# evenid =  nc73190231
# dist_jb =  115.16157289151039
# i =  1931
# evenid =  nn00685593
# dist_jb =  496.65252779967335
# i =  1932
# evenid =  ci38601472
# dist_jb =  452.56368118943243
# i =  1933
# evenid =  nc73185161
# dist_jb =  114.51678293408006
# i =  1934
# evenid =  nc73184841
# dist_jb =  345.94382254511385
# i =  1935
# evenid =  nc73184251
# dist_jb =  386.5275785832119
# i =  1936
# evenid =  nc73183846
# dist_jb =  226.2532040669132
# i =  1937
# evenid =  ci38592680
# dist_jb =  452.5236681977308
# i =  1938
# evenid =  nn00684677
# dist_jb =  452.54417975491396
# i =  1939
# evenid =  nn00684475
# dist_jb =  361.93183078063095
# i =  1940
# evenid =  nn00684210
# dist_jb =  465.30781961791394
# i =  1941
# evenid =  nn00684070
# dist_jb =  468.8496143015776
# i =  1942
# evenid =  nc73176070
# dist_jb =  288.70490143705246
# i =  1943
# evenid =  nc73175485
# dist_jb =  79.88563068320519
# i =  1944
# evenid =  nn00683728
# dist_jb =  338.58971118881595
# i =  1945
# evenid =  nn00683673
# dist_jb =  468.5717798435116
# i =  1946
# evenid =  nc73174665
# dist_jb =  242.93930867496994
# i =  1947
# evenid =  nn00683614
# dist_jb =  469.8965957870756
# i =  1948
# evenid =  nn00683604
# dist_jb =  464.7058794632809
# i =  1949
# evenid =  nc73174010
# dist_jb =  347.6227979566882
# i =  1950
# evenid =  nc73173775
# dist_jb =  184.24598001043012
# i =  1951
# evenid =  nn00683481
# dist_jb =  469.9510036859696
# i =  1952
# evenid =  nn00683467
# dist_jb =  466.600777126454
# i =  1953
# evenid =  nn00683456
# dist_jb =  467.63835429461403
# i =  1954
# evenid =  nn00683441
# dist_jb =  468.4222741234552
# i =  1955
# evenid =  nn00683435
# dist_jb =  465.62395185922395
# i =  1956
# evenid =  nc73172850
# dist_jb =  22.202643795909648
# i =  1957
# evenid =  nc73172710
# dist_jb =  340.27585662882683
# i =  1958
# evenid =  nc73170430
# dist_jb =  375.8914061399354
# i =  1959
# evenid =  ci38555640
# dist_jb =  431.62665750714825
# i =  1960
# evenid =  nc73170140
# dist_jb =  169.0375143223668
# i =  1961
# evenid =  nc73169010
# dist_jb =  421.5068915477586
WARNING:root:dist_jb (421.507) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.097) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.097) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.068) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.068) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.029) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.029) is greater than the recommended limit (300).
WARNING:root:dist_jb (320.045) is greater than the recommended limit (300).
WARNING:root:dist_jb (320.045) is greater than the recommended limit (300).
WARNING:root:dist_jb (341.719) is greater than the recommended limit (300).
WARNING:root:dist_jb (341.719) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.358) is greater than the recommended limit (300).
WARNING:root:dist_jb (376.358) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.016) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.016) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.097) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.097) is greater than the recommended limit (300).
WARNING:root:dist_jb (453.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (453.971) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (467.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.096) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.096) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.715) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.715) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (370.09) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.984) is greater than the recommended limit (300).
WARNING:root:dist_jb (439.984) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (462.877) is greater than the recommended limit (300).
WARNING:root:dist_jb (356.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (356.987) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (354.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (305.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (305.109) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.899) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.899) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.225) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.225) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.84) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.84) is greater than the recommended limit (300).
WARNING:root:dist_jb (329.52) is greater than the recommended limit (300).
WARNING:root:dist_jb (329.52) is greater than the recommended limit (300).
WARNING:root:dist_jb (329.463) is greater than the recommended limit (300).
WARNING:root:dist_jb (329.463) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.181) is greater than the recommended limit (300).
WARNING:root:dist_jb (330.667) is greater than the recommended limit (300).
WARNING:root:dist_jb (330.667) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.566) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.566) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (481.273) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.762) is greater than the recommended limit (300).
WARNING:root:dist_jb (398.762) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.83) is greater than the recommended limit (300).
WARNING:root:dist_jb (466.83) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (304.883) is greater than the recommended limit (300).
WARNING:root:dist_jb (350.891) is greater than the recommended limit (300).
WARNING:root:dist_jb (350.891) is greater than the recommended limit (300).
WARNING:root:dist_jb (330.457) is greater than the recommended limit (300).
WARNING:root:dist_jb (330.457) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.332) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (366.2) is greater than the recommended limit (300).
WARNING:root:dist_jb (306.878) is greater than the recommended limit (300).
WARNING:root:dist_jb (306.878) is greater than the recommended limit (300).
WARNING:root:dist_jb (350.593) is greater than the recommended limit (300).
WARNING:root:dist_jb (350.593) is greater than the recommended limit (300).
WARNING:root:dist_jb (342.635) is greater than the recommended limit (300).
WARNING:root:dist_jb (342.635) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.806) is greater than the recommended limit (300).
WARNING:root:dist_jb (374.806) is greater than the recommended limit (300).
WARNING:root:dist_jb (326.912) is greater than the recommended limit (300).
# i =  1962
# evenid =  nc73166830
# dist_jb =  333.09704411373343
# i =  1963
# evenid =  nc73166680
# dist_jb =  333.06802498851687
# i =  1964
# evenid =  nc73166265
# dist_jb =  114.59143314002048
# i =  1965
# evenid =  nc73164840
# dist_jb =  114.9892300820639
# i =  1966
# evenid =  nc73164200
# dist_jb =  109.16451679070524
# i =  1967
# evenid =  us70003453
# dist_jb =  458.0294082701633
# i =  1968
# evenid =  nc73161470
# dist_jb =  277.5498925711791
# i =  1969
# evenid =  nn00681228
# dist_jb =  320.04493870049953
# i =  1970
# evenid =  nc73157855
# dist_jb =  341.7194446753711
# i =  1971
# evenid =  nc73155640
# dist_jb =  376.35842830539207
# i =  1972
# evenid =  nc73155340
# dist_jb =  332.01582370760343
# i =  1973
# evenid =  nn00680709
# dist_jb =  426.0974726216463
# i =  1974
# evenid =  ci38277999
# dist_jb =  453.9705332982178
# i =  1975
# evenid =  us1000jd0s
# dist_jb =  467.98730369620296
# i =  1976
# evenid =  nc73147611
# dist_jb =  119.17341169936908
# i =  1977
# evenid =  nc73147131
# dist_jb =  333.095655143843
# i =  1978
# evenid =  nn00678983
# dist_jb =  426.7153089690988
# i =  1979
# evenid =  nc73145656
# dist_jb =  222.7357902412031
# i =  1980
# evenid =  nc73145321
# dist_jb =  370.0903811307171
# i =  1981
# evenid =  ci37533186
# dist_jb =  439.9837406374569
# i =  1982
# evenid =  nc73143141
# dist_jb =  54.40513492781848
# i =  1983
# evenid =  us2000jhla
# dist_jb =  462.87709318047854
# i =  1984
# evenid =  nc73141190
# dist_jb =  216.21504381393143
# i =  1985
# evenid =  nc73138600
# dist_jb =  356.9869916903595
# i =  1986
# evenid =  nc73139526
# dist_jb =  354.25922674456774
# i =  1987
# evenid =  nc73139386
# dist_jb =  305.1085572112017
# i =  1988
# evenid =  nc73139371
# dist_jb =  331.89884922448505
# i =  1989
# evenid =  nc73139366
# dist_jb =  332.2249593127586
# i =  1990
# evenid =  nc73139351
# dist_jb =  331.84006464443314
# i =  1991
# evenid =  nc73139336
# dist_jb =  329.5200294943433
# i =  1992
# evenid =  nc73139181
# dist_jb =  329.46334857463546
# i =  1993
# evenid =  nc73139166
# dist_jb =  331.1809937335039
# i =  1994
# evenid =  nc73139116
# dist_jb =  330.6665812300329
# i =  1995
# evenid =  nc73139111
# dist_jb =  331.56609186450606
# i =  1996
# evenid =  ci38213159
# dist_jb =  481.27284949592035
# i =  1997
# evenid =  nc73137916
# dist_jb =  398.7615553383286
# i =  1998
# evenid =  ci38207119
# dist_jb =  466.8302345428305
# i =  1999
# evenid =  nc73134921
# dist_jb =  304.88295820074967
# i =  2000
# evenid =  nc73134661
# dist_jb =  285.16538683694034
# i =  2001
# evenid =  nc73134576
# dist_jb =  350.8905083735701
# i =  2002
# evenid =  nc73133716
# dist_jb =  3.418641505430224
# i =  2003
# evenid =  nc73133456
# dist_jb =  3.2614388299261408
# i =  2004
# evenid =  nc73133251
# dist_jb =  330.4569577043169
# i =  2005
# evenid =  nc73133256
# dist_jb =  332.3316216006446
# i =  2006
# evenid =  nc73132506
# dist_jb =  366.2004759219365
# i =  2007
# evenid =  nc73132126
# dist_jb =  306.8779635846612
# i =  2008
# evenid =  nc73129211
# dist_jb =  350.592638701669
# i =  2009
# evenid =  nc73128161
# dist_jb =  342.6349904903439
# i =  2010
# evenid =  ci38404744
# dist_jb =  374.8059378708532
# i =  2011
# evenid =  nc73125516
# dist_jb =  174.43930477740514
# i =  2012
# evenid =  nc73125011
# dist_jb =  114.98702628140732
# i =  2013
# evenid =  nn00670948
# dist_jb =  260.1332976651203
# i =  2014
# evenid =  nn00670931
# dist_jb =  260.21729779992086
# i =  2015
# evenid =  nc73120976
# dist_jb =  103.89914048990207
# i =  2016
# evenid =  nc73119281
# dist_jb =  326.91216101971844
WARNING:root:dist_jb (326.912) is greater than the recommended limit (300).
WARNING:root:dist_jb (363.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (363.259) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (391.249) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.688) is greater than the recommended limit (300).
WARNING:root:dist_jb (400.688) is greater than the recommended limit (300).
WARNING:root:dist_jb (419.513) is greater than the recommended limit (300).
WARNING:root:dist_jb (419.513) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.637) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.245) is greater than the recommended limit (300).
WARNING:root:dist_jb (490.245) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.769) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.769) is greater than the recommended limit (300).
WARNING:root:dist_jb (405.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (405.231) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.953) is greater than the recommended limit (300).
WARNING:root:dist_jb (489.953) is greater than the recommended limit (300).
WARNING:root:dist_jb (416.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (416.954) is greater than the recommended limit (300).
WARNING:root:dist_jb (401.479) is greater than the recommended limit (300).
WARNING:root:dist_jb (401.479) is greater than the recommended limit (300).
WARNING:root:dist_jb (429.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (429.043) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.089) is greater than the recommended limit (300).
WARNING:root:dist_jb (469.089) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.16) is greater than the recommended limit (300).
WARNING:root:dist_jb (427.16) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (369.385) is greater than the recommended limit (300).
WARNING:root:dist_jb (335.124) is greater than the recommended limit (300).
WARNING:root:dist_jb (335.124) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.303) is greater than the recommended limit (300).
WARNING:root:dist_jb (392.303) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.645) is greater than the recommended limit (300).
WARNING:root:dist_jb (385.645) is greater than the recommended limit (300).
WARNING:root:dist_jb (306.179) is greater than the recommended limit (300).
WARNING:root:dist_jb (306.179) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.747) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.747) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.004) is greater than the recommended limit (300).
WARNING:root:dist_jb (383.004) is greater than the recommended limit (300).
WARNING:root:dist_jb (420.352) is greater than the recommended limit (300).
WARNING:root:dist_jb (420.352) is greater than the recommended limit (300).
WARNING:root:dist_jb (445.842) is greater than the recommended limit (300).
WARNING:root:dist_jb (445.842) is greater than the recommended limit (300).
# i =  2017
# evenid =  nn00668094
# dist_jb =  260.27042387779085
# i =  2018
# evenid =  nc73118836
# dist_jb =  363.25902648548106
# i =  2019
# evenid =  nc73116386
# dist_jb =  271.95858715608136
# i =  2020
# evenid =  nc73113891
# dist_jb =  391.24927491394635
# i =  2021
# evenid =  nc73112376
# dist_jb =  400.6877070214147
# i =  2022
# evenid =  nc73109341
# dist_jb =  21.00443094584801
# i =  2023
# evenid =  nc73109266
# dist_jb =  158.8413049336314
# i =  2024
# evenid =  nc73109006
# dist_jb =  194.04268263169254
# i =  2025
# evenid =  ci38351080
# dist_jb =  419.5130133787779
# i =  2026
# evenid =  nc73105366
# dist_jb =  156.0780195552179
# i =  2027
# evenid =  nc73105346
# dist_jb =  157.70805044187583
# i =  2028
# evenid =  nc73105336
# dist_jb =  157.55881319325263
# i =  2029
# evenid =  nc73105296
# dist_jb =  157.3072400505157
# i =  2030
# evenid =  nc73105281
# dist_jb =  156.22565750552099
# i =  2031
# evenid =  nc73105276
# dist_jb =  156.79246363779546
# i =  2032
# evenid =  nc73103501
# dist_jb =  246.23592595339633
# i =  2033
# evenid =  ci37406098
# dist_jb =  431.63693463122723
# i =  2034
# evenid =  nc73102201
# dist_jb =  490.2450352034832
# i =  2035
# evenid =  ci37403994
# dist_jb =  441.76910660565835
# i =  2036
# evenid =  ci37403594
# dist_jb =  405.23070469012305
# i =  2037
# evenid =  us1000hfwf
# dist_jb =  489.95296638257474
# i =  2038
# evenid =  nc73100261
# dist_jb =  239.95745892448593
# i =  2039
# evenid =  nc73096771
# dist_jb =  172.77558204243175
# i =  2040
# evenid =  nc73096431
# dist_jb =  416.9537968108095
# i =  2041
# evenid =  nc73096031
# dist_jb =  401.4788491286157
# i =  2042
# evenid =  nc73095656
# dist_jb =  117.71272333912704
# i =  2043
# evenid =  ci38317720
# dist_jb =  429.0425242720326
# i =  2044
# evenid =  nc73095076
# dist_jb =  469.0890544909058
# i =  2045
# evenid =  nc73093981
# dist_jb =  148.0687145914971
# i =  2046
# evenid =  ci37372850
# dist_jb =  427.1598310089621
# i =  2047
# evenid =  nc73086796
# dist_jb =  369.3848622775662
# i =  2048
# evenid =  nc73079795
# dist_jb =  59.56841395625335
# i =  2049
# evenid =  nc73079240
# dist_jb =  22.172710303721463
# i =  2050
# evenid =  nc73078885
# dist_jb =  116.1974690549746
# i =  2051
# evenid =  nc73078235
# dist_jb =  241.00463693025856
# i =  2052
# evenid =  nc73076125
# dist_jb =  335.12385899810954
# i =  2053
# evenid =  nc73072796
# dist_jb =  392.30303209504234
# i =  2054
# evenid =  nc73072741
# dist_jb =  385.6446375110422
# i =  2055
# evenid =  nc73071866
# dist_jb =  112.56837219390347
# i =  2056
# evenid =  nc73069930
# dist_jb =  272.4532038138022
# i =  2057
# evenid =  nn00649919
# dist_jb =  306.1793282760261
# i =  2058
# evenid =  nc73061391
# dist_jb =  26.65330479023556
# i =  2059
# evenid =  nc73058601
# dist_jb =  143.05921589420993
# i =  2060
# evenid =  nc73056106
# dist_jb =  240.42373391688523
# i =  2061
# evenid =  nc73055751
# dist_jb =  115.91609994999716
# i =  2062
# evenid =  nc73055086
# dist_jb =  368.74694681655836
# i =  2063
# evenid =  nc73050776
# dist_jb =  383.0035050168294
# i =  2064
# evenid =  nc73042391
# dist_jb =  105.43541879192394
# i =  2065
# evenid =  nc73037206
# dist_jb =  116.542155173375
# i =  2066
# evenid =  nc73034736
# dist_jb =  192.38716042137656
# i =  2067
# evenid =  nc73034206
# dist_jb =  49.27771097952817
# i =  2068
# evenid =  nc73027746
# dist_jb =  420.3518295529492
# i =  2069
# evenid =  nc73027396
# dist_jb =  177.2307906450211
# i =  2070
# evenid =  nn00638434
# dist_jb =  261.3759827577937
# i =  2071
# evenid =  nn00638386
# dist_jb =  261.6740790877495
# i =  2072
# evenid =  nc73025331
# dist_jb =  445.8421369583475
WARNING:root:dist_jb (316.355) is greater than the recommended limit (300).
WARNING:root:dist_jb (316.355) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.953) is greater than the recommended limit (300).
WARNING:root:dist_jb (475.953) is greater than the recommended limit (300).
WARNING:root:dist_jb (408.305) is greater than the recommended limit (300).
WARNING:root:dist_jb (408.305) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.59) is greater than the recommended limit (300).
WARNING:root:dist_jb (330.027) is greater than the recommended limit (300).
WARNING:root:dist_jb (330.027) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.393) is greater than the recommended limit (300).
WARNING:root:dist_jb (426.393) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (431.577) is greater than the recommended limit (300).
WARNING:root:dist_jb (356.9) is greater than the recommended limit (300).
WARNING:root:dist_jb (356.9) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (502.917) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.077) is greater than the recommended limit (300).
WARNING:root:dist_jb (332.077) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.558) is greater than the recommended limit (300).
WARNING:root:dist_jb (482.558) is greater than the recommended limit (300).
WARNING:root:dist_jb (343.828) is greater than the recommended limit (300).
WARNING:root:dist_jb (343.828) is greater than the recommended limit (300).
WARNING:root:dist_jb (455.307) is greater than the recommended limit (300).
WARNING:root:dist_jb (455.307) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.436) is greater than the recommended limit (300).
WARNING:root:dist_jb (368.436) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.202) is greater than the recommended limit (300).
WARNING:root:dist_jb (333.202) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (331.665) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (388.989) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (435.006) is greater than the recommended limit (300).
WARNING:root:dist_jb (302.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (302.481) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.442) is greater than the recommended limit (300).
WARNING:root:dist_jb (498.442) is greater than the recommended limit (300).
WARNING:root:dist_jb (425.387) is greater than the recommended limit (300).
WARNING:root:dist_jb (425.387) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (441.376) is greater than the recommended limit (300).
WARNING:root:dist_jb (447.308) is greater than the recommended limit (300).
WARNING:root:dist_jb (447.308) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.208) is greater than the recommended limit (300).
WARNING:root:dist_jb (458.208) is greater than the recommended limit (300).
WARNING:root:dist_jb (454.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (454.491) is greater than the recommended limit (300).
WARNING:root:dist_jb (453.821) is greater than the recommended limit (300).
WARNING:root:dist_jb (453.821) is greater than the recommended limit (300).
# i =  2073
# evenid =  nc73024816
# dist_jb =  316.35520567727633
# i =  2074
# evenid =  nc73023166
# dist_jb =  21.15646952578309
# i =  2075
# evenid =  nc73021190
# dist_jb =  160.37372450898383
# i =  2076
# evenid =  nc73016870
# dist_jb =  88.02788305970485
# i =  2077
# evenid =  nc73016050
# dist_jb =  9.178289525215108
# i =  2078
# evenid =  nc73016111
# dist_jb =  475.9532739673225
# i =  2079
# evenid =  nc73014286
# dist_jb =  112.4685443673501
# i =  2080
# evenid =  nc73014276
# dist_jb =  114.03106779548555
# i =  2081
# evenid =  nc73012946
# dist_jb =  408.3047911038059
# i =  2082
# evenid =  nc73012146
# dist_jb =  388.589742938543
# i =  2083
# evenid =  nc73010506
# dist_jb =  164.8630376474305
# i =  2084
# evenid =  nc73008716
# dist_jb =  24.018479049499692
# i =  2085
# evenid =  nc73002966
# dist_jb =  330.0274257391985
# i =  2086
# evenid =  nc73002681
# dist_jb =  228.017658460443
# i =  2087
# evenid =  nc73000196
# dist_jb =  65.01381979377118
# i =  2088
# evenid =  ci38149752
# dist_jb =  426.39293710079727
# i =  2089
# evenid =  ci38148312
# dist_jb =  431.5771849328385
# i =  2090
# evenid =  nc72997156
# dist_jb =  175.24139395882284
# i =  2091
# evenid =  nc72996581
# dist_jb =  356.89980636883524
# i =  2092
# evenid =  nc72996311
# dist_jb =  114.6808550469209
# i =  2093
# evenid =  ci37908735
# dist_jb =  502.91671271233076
# i =  2094
# evenid =  nn00628994
# dist_jb =  332.0773584776768
# i =  2095
# evenid =  nc72992330
# dist_jb =  127.1929139795246
# i =  2096
# evenid =  ci37899039
# dist_jb =  482.5579014390417
# i =  2097
# evenid =  nc72988926
# dist_jb =  343.82800859221703
# i =  2098
# evenid =  ci37898863
# dist_jb =  455.30732177889007
# i =  2099
# evenid =  nc72988726
# dist_jb =  368.43553699019407
# i =  2100
# evenid =  nc72982551
# dist_jb =  126.17496099155527
# i =  2101
# evenid =  nc72981481
# dist_jb =  333.20202091068654
# i =  2102
# evenid =  nc72980896
# dist_jb =  285.4175170234166
# i =  2103
# evenid =  ci37889959
# dist_jb =  331.6645584207911
# i =  2104
# evenid =  nc72979736
# dist_jb =  119.8794451665798
# i =  2105
# evenid =  nc72978276
# dist_jb =  175.06467496674873
# i =  2106
# evenid =  nc72977826
# dist_jb =  158.7790297471784
# i =  2107
# evenid =  nc72975536
# dist_jb =  388.98922051389485
# i =  2108
# evenid =  nc72974766
# dist_jb =  24.891434388615757
# i =  2109
# evenid =  nc72974771
# dist_jb =  25.071539787068016
# i =  2110
# evenid =  nc72974586
# dist_jb =  25.351668810064577
# i =  2111
# evenid =  ci38109320
# dist_jb =  435.00624228441006
# i =  2112
# evenid =  nc72967671
# dist_jb =  283.5078992457189
# i =  2113
# evenid =  nc72966896
# dist_jb =  114.57240405567612
# i =  2114
# evenid =  nc72964596
# dist_jb =  302.48108033300343
# i =  2115
# evenid =  nn00620603
# dist_jb =  498.442069984157
# i =  2116
# evenid =  nc72963436
# dist_jb =  425.38679575838813
# i =  2117
# evenid =  nc72961611
# dist_jb =  247.4496579657129
# i =  2118
# evenid =  ci38095368
# dist_jb =  441.3763046022971
# i =  2119
# evenid =  us1000ci2l
# dist_jb =  447.3076878528665
# i =  2120
# evenid =  us1000cf6q
# dist_jb =  458.20814980799946
# i =  2121
# evenid =  us2000cpcn
# dist_jb =  454.49124530684594
# i =  2122
# evenid =  us2000cpba
# dist_jb =  453.8207139547797
# i =  2123
# evenid =  nc72957816
# dist_jb =  116.69404398256681
# i =  2124
# evenid =  nc72957626
# dist_jb =  189.92080757126072
# i =  2125
# evenid =  nc72955520
# dist_jb =  109.6146847638215
# i = 
WARNING:root:dist_jb (303.142) is greater than the recommended limit (300).
WARNING:root:dist_jb (303.142) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (380.918) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.779) is greater than the recommended limit (300).
WARNING:root:dist_jb (433.779) is greater than the recommended limit (300).
WARNING:root:dist_jb (305.853) is greater than the recommended limit (300).
WARNING:root:dist_jb (305.853) is greater than the recommended limit (300).
 2126
# evenid =  nc72954970
# dist_jb =  303.1421948404792
# i =  2127
# evenid =  nc72952250
# dist_jb =  262.6473940954605
# i =  2128
# evenid =  nc72950451
# dist_jb =  380.9183832804325
# i =  2129
# evenid =  ci37848263
# dist_jb =  433.77887937822527
# i =  2130
# evenid =  nc72948801
# dist_jb =  2.069680835484531
# i =  2131
# evenid =  nc72946846
# dist_jb =  305.8533161082878
In [14]:
#event_focal_df['id']

show dist_jb <= 20 km

In [15]:
# dist_jb < 20
event_focal_df[event_focal_df['dist_jb'] <= 20]
Out[15]:
time latitude longitude depth mag magType id Rupture_type mechanism strike dip rake focal_source PGA PGV dist_jb
776 2019-10-16T02:11:58.540Z 37.948167 -122.061833 14.30 3.24 ml nc73292585 SS SS 340.0 85.0 170.0 FM 0.001495 0.031745 19.374545
778 2019-10-15T05:33:42.810Z 37.938000 -122.057000 13.97 4.46 mw nc73291880 SS SS 160.0 85.0 -180.0 FM 0.014059 0.489694 19.314753
2002 2019-01-17T14:11:07.620Z 37.848500 -122.238333 10.52 3.39 ml nc73133716 SS-N SS 135.0 60.0 -170.0 FM 0.011892 0.243538 3.418642
2003 2019-01-16T12:42:09.100Z 37.846000 -122.248000 10.18 3.43 mw nc73133456 SS-N SS 50.0 80.0 -30.0 FM 0.012945 0.271046 3.261439
2077 2018-05-15T02:18:35.000Z 37.805333 -122.202000 8.77 3.45 mw nc73016050 SS SS 240.0 85.0 10.0 FM 0.005713 0.132614 9.178290
2130 2018-01-04T10:39:37.730Z 37.855167 -122.256833 12.31 4.38 mw nc72948801 SS-N SS 60.0 90.0 -40.0 FM 0.066819 2.112995 2.069681

show PGV >= 0.1 cm/s

In [16]:
event_focal_df[event_focal_df['PGV'] >= 1e-1]
Out[16]:
time latitude longitude depth mag magType id Rupture_type mechanism strike dip rake focal_source PGA PGV dist_jb
593 2020-05-15T11:03:27.176Z 38.168900 -117.849700 2.70 6.50 ml nn00725272 SS-N SS 168.46 66.74 -167.11 MT 0.000875 0.229283 388.690549
778 2019-10-15T05:33:42.810Z 37.938000 -122.057000 13.97 4.46 mw nc73291880 SS SS 160.00 85.00 -180.00 FM 0.014059 0.489694 19.314753
936 2019-07-16T20:11:01.470Z 37.818667 -121.756833 12.38 4.31 mw nc73225421 SS-N SS 350.00 55.00 -150.00 FM 0.003321 0.117469 44.789384
1762 2019-07-06T03:19:53.040Z 35.769500 -117.599333 8.00 7.10 mw ci38457511 SS SS 160.00 84.00 -165.00 FM 0.000677 0.277139 476.878450
1912 2019-07-04T17:33:49.000Z 35.705333 -117.503833 10.50 6.40 mw ci38443183 SS SS 139.00 85.00 -178.00 FM 0.000299 0.117220 487.945223
2002 2019-01-17T14:11:07.620Z 37.848500 -122.238333 10.52 3.39 ml nc73133716 SS-N SS 135.00 60.00 -170.00 FM 0.011892 0.243538 3.418642
2003 2019-01-16T12:42:09.100Z 37.846000 -122.248000 10.18 3.43 mw nc73133456 SS-N SS 50.00 80.00 -30.00 FM 0.012945 0.271046 3.261439
2077 2018-05-15T02:18:35.000Z 37.805333 -122.202000 8.77 3.45 mw nc73016050 SS SS 240.00 85.00 10.00 FM 0.005713 0.132614 9.178290
2130 2018-01-04T10:39:37.730Z 37.855167 -122.256833 12.31 4.38 mw nc72948801 SS-N SS 60.00 90.00 -40.00 FM 0.066819 2.112995 2.069681

Save result (Optional)

In [17]:
event_pgv_df = pd.DataFrame({ 'time' : event_focal_df['time'],
                        'latitude' : event_focal_df['latitude'],
                        'longitude' :event_focal_df['longitude'],
                        'depth' : event_focal_df['longitude'],
                        'mag' : event_focal_df['mag'],
                        'magType' : event_focal_df['magType'],
                        'Rupture_type' : event_focal_df['Rupture_type'], 
                        'mechanism' : event_focal_df['mechanism'], 
                        'strike' : event_focal_df['strike'],
                        'dip' : event_focal_df['dip'],
                        'rake' : event_focal_df['rake'],
                        'focal_source' : event_focal_df['focal_source'],
                        'PGV' : event_focal_df['PGV'],
                        'PGA' : event_focal_df['PGA'],
                        'dist_jb' : event_focal_df['dist_jb'],
                        'id' : event_focal_df['id'] }  )

event_pgv_df.to_csv(event_pgv_fi, columns=['time','PGV','PGA','dist_jb','latitude','longitude','depth','mag','magType','id','Rupture_type','mechanism','strike','dip','rake','focal_source'], index=False, sep=',')
In [ ]:

In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]: