소스 검색

Add visualization scripts and response surface analysis

- Introduced `visualizacion_pareto_avanzada.py` for advanced Pareto visualization, including 3D scatter plots and contour maps.
- Added `visualizacion_restriccion_detallada.py` to visualize design restrictions with multiple 3D views and 2D projections.
- Created binary image `superficies_respuesta.png` for response surface analysis.
- Updated `parametric_sweep.py` to modify efficiency calculation by excluding `iyg` from the numerator.
dacowars 2 주 전
부모
커밋
f0e9315257

BIN
__pycache__/parametric_sweep.cpython-313.pyc


BIN
analisis de resultados/analisis_completo_pareto.png


+ 222 - 0
analisis de resultados/analisis_pareto_3d.py

@@ -0,0 +1,222 @@
+import numpy as np
+import matplotlib.pyplot as plt
+from mpl_toolkits.mplot3d import Axes3D
+from scipy.spatial import ConvexHull
+import warnings
+warnings.filterwarnings('ignore')
+
+# Leer el archivo manualmente
+data = []
+with open('resultados1.txt', 'r', encoding='utf-8') as f:
+    header = f.readline().strip().split('\t')
+    for line in f:
+        values = line.strip().split()  # Split por espacios/tabulaciones
+        if len(values) >= 15:  # Tenemos 15 columnas
+            data.append(values)
+
+# Encontrar índices de columnas
+tf_idx = 2  # tf es la columna 3
+tw_idx = 3  # tw es la columna 4
+flecha_idx = 8  # Flecha_Media es la columna 9
+
+# Convertir datos a números
+def convert_value(x):
+    """Convierte string a float, manejando formato con coma decimal"""
+    try:
+        return float(x.replace(',', '.').strip())
+    except:
+        return np.nan
+
+tf_list = []
+tw_list = []
+flecha_list = []
+
+for row in data:
+    tf_val = convert_value(row[tf_idx])
+    tw_val = convert_value(row[tw_idx])
+    flecha_val = convert_value(row[flecha_idx])
+    
+    if not (np.isnan(tf_val) or np.isnan(tw_val) or np.isnan(flecha_val)):
+        tf_list.append(tf_val)
+        tw_list.append(tw_val)
+        flecha_list.append(flecha_val)
+
+tf = np.array(tf_list)
+tw = np.array(tw_list)
+flecha_media = np.array(flecha_list)
+
+# RESTRICCIÓN DE DISEÑO
+LIMITE_FLECHA = -25.0  # Valores de flecha por debajo de este límite NO son válidos
+
+# Separar puntos válidos e inválidos
+valid_idx = flecha_media >= LIMITE_FLECHA
+invalid_idx = flecha_media < LIMITE_FLECHA
+
+tf_valid = tf[valid_idx]
+tw_valid = tw[valid_idx]
+flecha_valid = flecha_media[valid_idx]
+
+tf_invalid = tf[invalid_idx]
+tw_invalid = tw[invalid_idx]
+flecha_invalid = flecha_media[invalid_idx]
+
+print("="*70)
+print("ANÁLISIS DE FRONTERA DE PARETO - PROBLEMA DE MINIMIZACIÓN 3D")
+print("="*70)
+print(f"\n✓ Datos cargados exitosamente")
+print(f"  Total de puntos: {len(tf)}")
+print(f"\n  Rango de tf (espesor ala):       [{tf.min():.6f}, {tf.max():.6f}]")
+print(f"  Rango de tw (espesor alma):     [{tw.min():.6f}, {tw.max():.6f}]")
+print(f"  Rango de Flecha_Media:          [{flecha_media.min():.2f}, {flecha_media.max():.2f}]")
+
+print(f"\n⚠ RESTRICCIÓN DE DISEÑO: Flecha_Media >= {LIMITE_FLECHA} mm")
+print(f"  Puntos VÁLIDOS:                 {len(tf_valid)} ({100*len(tf_valid)/len(tf):.1f}%)")
+print(f"  Puntos INVÁLIDOS:               {len(tf_invalid)} ({100*len(tf_invalid)/len(tf):.1f}%)")
+print(f"  Rango flecha válida:            [{flecha_valid.min():.2f}, {flecha_valid.max():.2f}]")
+print(f"  Rango flecha inválida:          [{flecha_invalid.min():.2f}, {flecha_invalid.max():.2f}]")
+
+
+# Calcular la frontera de Pareto con algoritmo mejorado (solo para puntos VÁLIDOS)
+def compute_pareto_frontier(tf, tw, flecha):
+    """
+    Calcula los puntos que pertenecen a la frontera de Pareto.
+    Objetivo: minimizar tf, tw y |flecha|
+    """
+    n = len(tf)
+    is_pareto = np.ones(n, dtype=bool)
+    
+    # Usar valor absoluto para la comparación
+    flecha_abs = np.abs(flecha)
+    
+    for i in range(n):
+        if not is_pareto[i]:
+            continue
+        for j in range(n):
+            if i != j and is_pareto[j]:
+                # El punto j domina al i si: j <= i en todos los criterios
+                # y j < i en al menos uno
+                dom = (tf[j] <= tf[i]) and (tw[j] <= tw[i]) and (flecha_abs[j] <= flecha_abs[i])
+                strict = (tf[j] < tf[i]) or (tw[j] < tw[i]) or (flecha_abs[j] < flecha_abs[i])
+                
+                if dom and strict:
+                    is_pareto[i] = False
+                    break
+    
+    return is_pareto
+
+# Calcular Pareto solo para puntos VÁLIDOS
+pareto_mask_valid = compute_pareto_frontier(tf_valid, tw_valid, flecha_valid)
+pareto_tf_valid = tf_valid[pareto_mask_valid]
+pareto_tw_valid = tw_valid[pareto_mask_valid]
+pareto_flecha_valid = flecha_valid[pareto_mask_valid]
+
+print(f"\n✓ Frontera de Pareto calculada (región válida)")
+print(f"  Puntos en la frontera: {len(pareto_tf_valid)} ({100*len(pareto_tf_valid)/len(tf_valid):.1f}% de válidos)")
+
+
+# Crear figura 3D de alta calidad
+fig = plt.figure(figsize=(16, 12))
+ax = fig.add_subplot(111, projection='3d')
+
+# Graficar el PLANO DE RESTRICCIÓN en z = LIMITE_FLECHA
+xx = np.linspace(tf.min(), tf.max(), 20)
+yy = np.linspace(tw.min(), tw.max(), 20)
+XX, YY = np.meshgrid(xx, yy)
+ZZ = np.full_like(XX, LIMITE_FLECHA)  # Plano en z = -25
+
+# Plotear el plano de restricción
+plane = ax.plot_surface(XX, YY, ZZ, alpha=0.3, color='orange', label='Plano de restricción')
+# Agregar wireframe al plano para hacerlo más visible
+ax.plot_wireframe(XX, YY, ZZ, color='darkorange', alpha=0.5, linewidth=0.5)
+
+# Graficar puntos INVÁLIDOS (debajo del plano)
+scatter_invalid = ax.scatter(tf_invalid, tw_invalid, flecha_invalid, 
+                             c='red', 
+                             marker='x', 
+                             s=100, 
+                             alpha=0.3, 
+                             label=f'Puntos inválidos (n={len(tf_invalid)})',
+                             linewidth=2)
+
+# Graficar puntos VÁLIDOS (encima del plano)
+scatter_valid = ax.scatter(tf_valid, tw_valid, flecha_valid, 
+                           c='lightgreen', 
+                           marker='o', 
+                           s=80, 
+                           alpha=0.6, 
+                           label=f'Puntos válidos (n={len(tf_valid)})',
+                           edgecolors='darkgreen',
+                           linewidth=0.5)
+
+# Intentar graficar la frontera de Pareto solo para puntos válidos
+if len(tf_valid) >= 4:
+    try:
+        # Crear matriz de coordenadas para la frontera de Pareto (solo válidos)
+        points_pareto = np.column_stack((tf_valid, tw_valid, np.abs(flecha_valid)))
+        
+        # Calcular la envolvente convexa (convex hull)
+        hull = ConvexHull(points_pareto)
+        
+        # Graficar la superficie
+        for simplex in hull.simplices:
+            triangle = points_pareto[simplex]
+            # Graficar los bordes del triángulo
+            for i in range(3):
+                p1 = triangle[i]
+                p2 = triangle[(i+1)%3]
+                ax.plot([p1[0], p2[0]], 
+                       [p1[1], p2[1]], 
+                       [p1[2], p2[2]], 
+                       'b-', alpha=0.2, linewidth=0.5)
+        
+        print(f"  Envolvente convexa (región válida): {len(hull.simplices)} triángulos")
+    except Exception as e:
+        print(f"  ⚠ Envolvente convexa: No se pudo calcular ({str(e)[:50]})")
+
+# Etiquetas de ejes
+ax.set_xlabel('tf - Espesor del ala (mm)', fontsize=12, fontweight='bold')
+ax.set_ylabel('tw - Espesor del alma (mm)', fontsize=12, fontweight='bold')
+ax.set_zlabel('Flecha_Media - Deflexión (mm)', fontsize=12, fontweight='bold')
+ax.set_title(f'Frontera de Pareto con Restricción: Flecha_Media ≥ {LIMITE_FLECHA} mm\ntf vs tw vs Deflexión Media', 
+             fontsize=14, fontweight='bold', pad=20)
+
+# Leyenda mejorada
+ax.legend(loc='upper left', fontsize=11, framealpha=0.95)
+
+# Mejorar vista
+ax.view_init(elev=25, azim=45)
+ax.grid(True, alpha=0.3)
+
+# Agregar línea de referencia en el plano de restricción
+ax.text2D(0.02, 0.98, f'Plano de restricción: Flecha = {LIMITE_FLECHA} mm\n(Naranja)', 
+          transform=ax.transAxes, fontsize=10, verticalalignment='top',
+          bbox=dict(boxstyle='round', facecolor='wheat', alpha=0.8))
+
+plt.tight_layout()
+plt.savefig('grafico_3d_pareto_con_restriccion.png', dpi=300, bbox_inches='tight')
+print(f"\n✓ Gráfico guardado: 'grafico_3d_pareto_con_restriccion.png'")
+
+# Mostrar estadísticas de los puntos de Pareto
+print("\n" + "="*70)
+print("ESTADÍSTICAS DE LA FRONTERA DE PARETO (REGIÓN VÁLIDA)")
+print("="*70)
+print(f"{'Parámetro':<20} {'Mínimo':<15} {'Máximo':<15} {'Promedio':<15}")
+print("-"*70)
+print(f"{'tf':<20} {pareto_tf_valid.min():<15.6f} {pareto_tf_valid.max():<15.6f} {pareto_tf_valid.mean():<15.6f}")
+print(f"{'tw':<20} {pareto_tw_valid.min():<15.6f} {pareto_tw_valid.max():<15.6f} {pareto_tw_valid.mean():<15.6f}")
+print(f"{'Flecha_Media':<20} {pareto_flecha_valid.min():<15.2f} {pareto_flecha_valid.max():<15.2f} {pareto_flecha_valid.mean():<15.2f}")
+
+# Mostrar detalles de los puntos de Pareto VÁLIDOS
+print("\n" + "="*70)
+print(f"PUNTOS EN LA FRONTERA DE PARETO - REGIÓN VÁLIDA (primeros 30 de {len(pareto_tf_valid)})")
+print("="*70)
+print(f"{'#':<4} {'tf':<12} {'tw':<12} {'Flecha_Media':<15}")
+print("-"*70)
+for i in range(min(30, len(pareto_tf_valid))):
+    print(f"{i+1:<4} {pareto_tf_valid[i]:<12.6f} {pareto_tw_valid[i]:<12.6f} {pareto_flecha_valid[i]:<15.2f}")
+
+if len(pareto_tf_valid) > 30:
+    print(f"\n... y {len(pareto_tf_valid) - 30} puntos más")
+
+print("\n" + "="*70)
+plt.show()

BIN
analisis de resultados/comparacion_regiones.png


+ 136 - 0
analisis de resultados/grafico_3d_pareto.py

@@ -0,0 +1,136 @@
+import numpy as np
+import matplotlib.pyplot as plt
+from mpl_toolkits.mplot3d import Axes3D
+from scipy.spatial import ConvexHull
+
+# Leer el archivo manualmente
+data = []
+with open('resultados1.txt', 'r', encoding='utf-8') as f:
+    header = f.readline().strip().split('\t')
+    for line in f:
+        values = line.strip().split('\t')
+        if len(values) >= 9:  # Asegurar que hay suficientes columnas
+            data.append(values)
+
+# Encontrar índices de columnas
+tf_idx = header.index('tf')
+tw_idx = header.index('tw')
+flecha_idx = header.index('Flecha_Media')
+
+# Convertir datos a números
+def convert_value(x):
+    """Convierte string a float, manejando formato con coma decimal"""
+    try:
+        return float(x.replace(',', '.').strip())
+    except:
+        return np.nan
+
+tf_list = []
+tw_list = []
+flecha_list = []
+
+for row in data:
+    tf_val = convert_value(row[tf_idx])
+    tw_val = convert_value(row[tw_idx])
+    flecha_val = convert_value(row[flecha_idx])
+    
+    if not (np.isnan(tf_val) or np.isnan(tw_val) or np.isnan(flecha_val)):
+        tf_list.append(tf_val)
+        tw_list.append(tw_val)
+        flecha_list.append(flecha_val)
+
+tf = np.array(tf_list)
+tw = np.array(tw_list)
+flecha_media = np.array(flecha_list)
+
+# Función para calcular la frontera de Pareto (versión mejorada)
+def pareto_frontier(tf, tw, flecha):
+    """
+    Calcula los puntos que pertenecen a la frontera de Pareto.
+    Queremos minimizar tf, tw y el valor absoluto de flecha (magn itud de deflexión).
+    Un punto es Pareto si no hay otro punto que sea mejor en todos los criterios simultáneamente.
+    """
+    n = len(tf)
+    is_pareto = np.ones(n, dtype=bool)
+    
+    # Usar valor absoluto de flecha para la comparación
+    flecha_abs = np.abs(flecha)
+    
+    for i in range(n):
+        for j in range(n):
+            if i != j:
+                # El punto j domina al punto i si es mejor (≤) en todos los criterios
+                # y estrictamente mejor en al menos uno
+                if (tf[j] <= tf[i] and tw[j] <= tw[i] and flecha_abs[j] <= flecha_abs[i]) and \
+                   (tf[j] < tf[i] or tw[j] < tw[i] or flecha_abs[j] < flecha_abs[i]):
+                    is_pareto[i] = False
+                    break
+    
+    return is_pareto
+
+# Calcular frontera de Pareto
+pareto_mask = pareto_frontier(tf, tw, flecha_media)
+pareto_tf = tf[pareto_mask]
+pareto_tw = tw[pareto_mask]
+pareto_flecha = flecha_media[pareto_mask]
+
+print(f"Total de puntos: {len(tf)}")
+print(f"Puntos en la frontera de Pareto: {len(pareto_tf)}")
+
+# Crear figura 3D
+fig = plt.figure(figsize=(14, 10))
+ax = fig.add_subplot(111, projection='3d')
+
+# Graficar todos los puntos
+scatter_all = ax.scatter(tf, tw, flecha_media, c='lightblue', marker='o', s=50, alpha=0.6, label='Todos los puntos')
+
+# Graficar la frontera de Pareto
+scatter_pareto = ax.scatter(pareto_tf, pareto_tw, pareto_flecha, c='red', marker='*', s=200, alpha=0.9, label='Frontera de Pareto')
+
+# Intentar graficar la superficie convexa de la frontera de Pareto
+if len(pareto_tf) >= 4:
+    try:
+        # Crear matriz de coordenadas para la frontera de Pareto
+        points_pareto = np.column_stack((pareto_tf, pareto_tw, pareto_flecha))
+        
+        # Calcular la envolvente convexa (convex hull)
+        hull = ConvexHull(points_pareto)
+        
+        # Graficar la superficie
+        for simplex in hull.simplices:
+            # Crear triángulos de la superficie
+            triangle = points_pareto[simplex]
+            # Graficar los bordes del triángulo
+            for i in range(3):
+                ax.plot(triangle[[i, (i+1)%3], 0], 
+                       triangle[[i, (i+1)%3], 1], 
+                       triangle[[i, (i+1)%3], 2], 'r-', alpha=0.3, linewidth=0.5)
+    except Exception as e:
+        print(f"No se pudo graficar la superficie convexa: {e}")
+
+# Etiquetas de ejes
+ax.set_xlabel('tf (espesor del ala)', fontsize=12, fontweight='bold')
+ax.set_ylabel('tw (espesor del alma)', fontsize=12, fontweight='bold')
+ax.set_zlabel('Flecha_Media (deflexión)', fontsize=12, fontweight='bold')
+ax.set_title('Nube de Puntos 3D y Frontera de Pareto\ntf vs tw vs Flecha_Media', fontsize=14, fontweight='bold')
+
+# Leyenda
+ax.legend(loc='upper right', fontsize=11)
+
+# Ajustar vista
+ax.view_init(elev=20, azim=45)
+
+plt.tight_layout()
+plt.savefig('grafico_3d_pareto.png', dpi=300, bbox_inches='tight')
+print("\nGráfico guardado como 'grafico_3d_pareto.png'")
+
+# Mostrar detalles de los puntos de Pareto
+print("\n" + "="*60)
+print("PUNTOS EN LA FRONTERA DE PARETO:")
+print("="*60)
+print(f"{'tf':<12} {'tw':<12} {'Flecha_Media':<15}")
+print("-"*60)
+for i in range(len(pareto_tf)):
+    print(f"{pareto_tf[i]:<12.6f} {pareto_tw[i]:<12.6f} {pareto_flecha[i]:<15.6f}")
+
+plt.show()

BIN
analisis de resultados/multiples_vistas_restriccion.png


+ 577 - 0
analisis de resultados/resultados1.txt

@@ -0,0 +1,577 @@
+H	b	tf	tw	Frecuencia	Coef_Impacto	Flecha_38D	Flecha_86E	Flecha_Media	Area	Ixg	Iyg	Imax	Imin	Peso
+1,0                        0,45                        0,01                        0,01                        8,04481592819778                        1,606075014942086                        -80,269823                        -80,269823                        -80,269823                        188,0000000000003                        298962,66666666686                        15195,666666666726                        298962,66666666686                        15195,666666666715                        147,58000000000024
+1,0                        0,45                        0,01                        0,01391304347826087                        8,253415940833383                        1,6044532380183796                        -73,462709                        -73,462709                        -73,462709                        226,3478260869571                        329653,71014492755                        15209,494356319057                        329653,71014492755                        15209,494356319045                        177,68304347826134
+1,0                        0,45                        0,01                        0,01782608695652174                        8,434981421051537                        1,603446293677663                        -67,88673                        -67,88673                        -67,88673                        264,69565217391255                        360344,75362318824                        15233,760773677513                        360344,75362318824                        15233,760773677519                        207,78608695652136
+1,0                        0,45                        0,01                        0,021739130434782608                        8,596459427711546                        1,6028430166540875                        -63,196981                        -63,196981                        -63,196981                        303,04347826086934                        391035,79710144957                        15271,401810909354                        391035,79710144957                        15271,401810909341                        237,88913043478243
+1,0                        0,45                        0,01                        0,02565217391304348                        8,741821480298004                        1,602519674289431                        -59,183182                        -59,183182                        -59,183182                        341,3913043478262                        421726,84057971014                        15325,353360181785                        421726,84057971014                        15325,353360181802                        267,99217391304353
+1,0                        0,45                        0,01                        0,029565217391304348                        8,873756862900423                        1,602395873599751                        -55,702394                        -55,702394                        -55,702394                        379,73913043478296                        452417,88405797153                        15398,551313662583                        452417,88405797153                        15398,551313662578                        298,09521739130463
+1,0                        0,45                        0,01                        0,03347826086956522                        8,994253241180521                        1,6024165004504012                        -52,651642                        -52,651642                        -52,651642                        418,08695652173947                        483108,9275362327                        15493,931563518898                        483108,9275362327                        15493,931563518876                        328,1982608695655
+1,0                        0,45                        0,01                        0,03739130434782609                        9,104852976130198                        1,602542489285312                        -49,953953                        -49,953953                        -49,953953                        456,4347826086952                        513799,9710144926                        15614,43000191771                        513799,9710144926                        15614,430001917746                        358,3013043478257
+1,0                        0,45                        0,01                        0,04130434782608696                        9,20679566135761                        1,602745503188636                        -47,550212                        -47,550212                        -47,550212                        494,78260869565196                        544491,0144927539                        15762,982521026894                        544491,0144927539                        15762,982521026932                        388,4043478260868
+1,0                        0,45                        0,01                        0,04521739130434783                        9,3010952521607                        1,6030046248898664                        -45,394086                        -45,394086                        -45,394086                        533,1304347826087                        575182,0579710145                        15942,525013013374                        575182,0579710145                        15942,525013013399                        418,50739130434783
+1,0                        0,45                        0,01                        0,0491304347826087                        9,388596385447054                        1,6033042040021268                        -43,448629                        -43,448629                        -43,448629                        571,4782608695658                        605873,1014492753                        16155,99337004483                        605873,1014492753                        16155,993370044804                        448,6104347826092
+1,0                        0,45                        0,01                        0,053043478260869574                        9,470013376342905                        1,603632412631898                        -41,683961                        -41,683961                        -41,683961                        609,8260869565219                        636564,1449275358                        16406,323484288343                        636564,1449275358                        16406,323484288372                        478,71347826086964
+1,0                        0,45                        0,01                        0,05695652173913044                        9,54595539457291                        1,6039802354644441                        -40,075621                        -40,075621                        -40,075621                        648,173913043478                        667255,1884057968                        16696,451247910973                        667255,1884057968                        16696,451247910984                        508,8165217391302
+1,0                        0,45                        0,01                        0,06086956521739131                        9,616947928772612                        1,604340764220781                        -38,603371                        -38,603371                        -38,603371                        686,5217391304349                        697946,2318840575                        17029,312553080854                        697946,2318840575                        17029,312553080814                        538,9195652173913
+1,0                        0,45                        0,01                        0,06478260869565218                        9,683447272958446                        1,604708682089448                        -37,250321                        -37,250321                        -37,250321                        724,8695652173915                        728637,2753623185                        17407,84329196456                        728637,2753623185                        17407,84329196457                        569,0226086956523
+1,0                        0,45                        0,01                        0,06869565217391305                        9,74585318360894                        1,6050798929018089                        -36,002257                        -36,002257                        -36,002257                        763,2173913043479                        759328,3188405792                        17834,979356729957                        759328,3188405792                        17834,979356729993                        599,1256521739131
+1,0                        0,45                        0,01                        0,07260869565217391                        9,80451944506483                        1,6054512516170065                        -34,847126                        -34,847126                        -34,847126                        801,5652173913041                        790019,3623188403                        18313,656639543973                        790019,3623188403                        18313,656639543962                        629,2286956521738
+1,0                        0,45                        0,01                        0,07652173913043478                        9,859759337400428                        1,6058203442782213                        -33,774651                        -33,774651                        -33,774651                        839,9130434782603                        820710,405797101                        18846,811032574475                        820710,405797101                        18846,8110325744                        659,3317391304344
+1,0                        0,45                        0,01                        0,08043478260869565                        9,911851449129264                        1,6061853266798791                        -32,776018                        -32,776018                        -32,776018                        878,2608695652175                        851401,4492753623                        19437,37842798838                        851401,4492753623                        19437,37842798835                        689,4347826086957
+1,0                        0,45                        0,01                        0,08434782608695653                        9,961044633776991                        1,6065448018105193                        -31,843631                        -31,843631                        -31,843631                        916,6086956521741                        882092,492753623                        20088,294717953126                        882092,492753623                        20088,294717953046                        719,5378260869567
+1,0                        0,45                        0,01                        0,08826086956521739                        10,00756309240224                        1,6068977328663594                        -30,970904                        -30,970904                        -30,970904                        954,9565217391305                        912783,5362318839                        20802,495794635826                        912783,5362318839                        20802,495794635874                        749,6408695652175
+1,0                        0,45                        0,01                        0,09217391304347826                        10,0516076370858                        1,6072433538039266                        -30,152116                        -30,152116                        -30,152116                        993,3043478260868                        943474,5797101454                        21582,91755020388                        943474,5797101454                        21582,917550203896                        779,7439130434782
+1,0                        0,45                        0,01                        0,09608695652173914                        10,093362375667246                        1,607581141614592                        -29,382227                        -29,382227                        -29,382227                        1031,6521739130433                        974165,623188406                        22432,495876825287                        974165,623188406                        22432,495876825375                        809,846956521739
+1,0                        0,45                        0,01                        0,1                        10,132990380333572                        1,607910717101836                        -28,656864                        -28,656864                        -28,656864                        1070,0000000000005                        1004856,6666666669                        23354,166666666704                        1004856,6666666669                        23354,16666666666                        839,9500000000003
+1,0                        0,45                        0,01391304347826087                        0,01                        8,820801381542394                        1,6024267519258693                        -64,326474                        -64,326474                        -64,326474                        222,43478260869583                        380982,0877236233                        21138,536231883965                        380982,0877236234                        21138,536231883976                        174,61130434782623
+1,0                        0,45                        0,01391304347826087                        0,01391304347826087                        8,983302680247704                        1,602409520927714                        -59,928638                        -59,928638                        -59,928638                        260,4763705103969                        410943,70947311685                        21152,253496330595                        410943,70947311685                        21152,253496330588                        204,47395085066157
+1,0                        0,45                        0,01391304347826087                        0,01782608695652174                        9,118385902694671                        1,602564718731563                        -56,289797                        -56,289797                        -56,289797                        298,51795841209776                        440905,3312226103                        21176,326126860018                        440905,3312226103                        21176,326126859985                        234,33659735349673
+1,0                        0,45                        0,01391304347826087                        0,021739130434782608                        9,237601373382038                        1,6028227412890006                        -53,152123                        -53,152123                        -53,152123                        336,5595463137994                        470866,9529721042                        21213,666570183355                        470866,9529721042                        21213,666570183384                        264,1992438563325
+1,0                        0,45                        0,01391304347826087                        0,02565217391304348                        9,34471005406421                        1,603146957306978                        -50,402025                        -50,402025                        -50,402025                        374,60113421550074                        500828,574721597                        21267,187273010823                        500828,574721597                        21267,1872730108                        294,0618903591681
+1,0                        0,45                        0,01391304347826087                        0,029565217391304348                        9,441993024503068                        1,603514170279606                        -47,964319                        -47,964319                        -47,964319                        412,6427221172024                        530790,1964710911                        21339,800682053887                        530790,1964710911                        21339,800682053898                        323,9245368620039
+1,0                        0,45                        0,01391304347826087                        0,03347826086956522                        9,531014842000396                        1,6039086826237066                        -45,784797                        -45,784797                        -45,784797                        450,6843100189035                        560751,8182205848                        21434,419244023073                        560751,8182205848                        21434,41924402304                        353,7871833648392
+1,0                        0,45                        0,01391304347826087                        0,03739130434782609                        9,612935389588406                        1,604319491360482                        -43,822359                        -43,822359                        -43,822359                        488,7258979206043                        590713,4399700774                        21553,955405629004                        590713,4399700774                        21553,955405629025                        383,6498298676744
+1,0                        0,45                        0,01391304347826087                        0,04130434782608696                        9,688654458278513                        1,6047387040078251                        -42,044818                        -42,044818                        -42,044818                        526,7674858223057                        620675,0617195707                        21701,321613582903                        620675,0617195707                        21701,321613582913                        413,51247637051
+1,0                        0,45                        0,01391304347826087                        0,04521739130434783                        9,758898051225923                        1,6051606079493763                        -40,426367                        -40,426367                        -40,426367                        564,8090737240076                        650636,6834690645                        21879,43031459539                        650636,6834690645                        21879,43031459541                        443,37512287334596
+1,0                        0,45                        0,01391304347826087                        0,0491304347826087                        9,824261214484034                        1,6055810157735162                        -38,945959                        -38,945959                        -38,945959                        602,8506616257088                        680598,3052185583                        22091,19395537722                        680598,3052185583                        22091,19395537723                        473,23776937618135
+1,0                        0,45                        0,01391304347826087                        0,053043478260869574                        9,885243179708533                        1,6059968636232065                        -37,586186                        -37,586186                        -37,586186                        640,8922495274101                        710559,9269680519                        22339,524982638795                        710559,9269680519                        22339,524982638824                        503,10041587901696
+1,0                        0,45                        0,01391304347826087                        0,05695652173913044                        9,942269936101615                        1,606405926839991                        -36,332485                        -36,332485                        -36,332485                        678,9338374291118                        740521,5487175448                        22627,335843091638                        740521,5487175448                        22627,33584309168                        532,9630623818528
+1,0                        0,45                        0,01391304347826087                        0,06086956521739131                        9,995707149381062                        1,6068065946656886                        -35,172563                        -35,172563                        -35,172563                        716,9754253308128                        770483,1704670383                        22957,538983446655                        770483,1704670383                        22957,538983446644                        562,825708884688
+1,0                        0,45                        0,01391304347826087                        0,06478260869565218                        10,045872796367004                        1,6071977271041948                        -34,09596                        -34,09596                        -34,09596                        755,0170132325142                        800444,7922165322                        23333,046850413983                        800444,7922165322                        23333,04685041399                        592,6883553875236
+1,0                        0,45                        0,01391304347826087                        0,06869565217391305                        10,093047374540077                        1,6075785567505156                        -33,093714                        -33,093714                        -33,093714                        793,0586011342152                        830406,413966025                        23756,771890704356                        830406,413966025                        23756,77189070443                        622,551001890359
+1,0                        0,45                        0,01391304347826087                        0,07260869565217391                        10,137475498162562                        1,6079485648763756                        -32,158118                        -32,158118                        -32,158118                        831,1001890359166                        860368,035715519                        24231,626551029527                        860368,035715519                        24231,62655102954                        652,4136483931945
+1,0                        0,45                        0,01391304347826087                        0,07652173913043478                        10,179381300795637                        1,6083075026555813                        -31,282473                        -31,282473                        -31,282473                        869,141776937618                        890329,6574650117                        24760,52327809958                        890329,6574650117                        24760,523278099558                        682,2762948960302
+1,0                        0,45                        0,01391304347826087                        0,08043478260869565                        10,218960137354332                        1,6086552397749805                        -30,460971                        -30,460971                        -30,460971                        907,1833648393193                        920291,2792145058                        25346,374518625536                        920291,2792145058                        25346,374518625536                        712,1389413988657
+1,0                        0,45                        0,01391304347826087                        0,08434782608695653                        10,256388938651309                        1,6089917845782535                        -29,688538                        -29,688538                        -29,688538                        945,2249527410207                        950252,9009639993                        25992,092719318156                        950252,9009639993                        25992,09271931819                        742,0015879017012
+1,0                        0,45                        0,01391304347826087                        0,08826086956521739                        10,29182770744099                        1,6093172450598905                        -28,960717                        -28,960717                        -28,960717                        983,2665406427218                        980214,5227134927                        26700,590326888072                        980214,5227134927                        26700,590326888054                        771,8642344045367
+1,0                        0,45                        0,01391304347826087                        0,09217391304347826                        10,325420190406899                        1,6096317913426266                        -28,2736                        -28,2736                        -28,2736                        1021,3081285444232                        1010176,1444629862                        27474,779788046286                        1010176,1444629862                        27474,779788046362                        801,7268809073722
+1,0                        0,45                        0,01391304347826087                        0,09608695652173914                        10,3572990418173                        1,6099356682406294                        -27,623702                        -27,623702                        -27,623702                        1059,3497164461248                        1040137,7662124796                        28317,573549503813                        1040137,7662124796                        28317,573549503824                        831,589527410208
+1,0                        0,45                        0,01391304347826087                        0,1                        10,387582288771695                        1,6102291327985043                        -27,007967                        -27,007967                        -27,007967                        1097,3913043478262                        1070099,3879619734                        29231,884057971245                        1070099,3879619734                        29231,88405797132                        861,4521739130436
+1,0                        0,45                        0,01782608695652174                        0,01                        9,445586062130445                        1,6035290245275788                        -54,288595                        -54,288595                        -54,288595                        256,86956521739137                        461691,55497109646                        27081,405797101463                        461691,55497109646                        27081,405797101455                        201,6426086956522
+1,0                        0,45                        0,01782608695652174                        0,01391304347826087                        9,58377589156113                        1,6041681077745107                        -51,078797                        -51,078797                        -51,078797                        294,6049149338376                        490935,4047786666                        27095,012636342304                        490935,4047786666                        27095,012636342304                        231,2648582230625
+1,0                        0,45                        0,01782608695652174                        0,01782608695652174                        9,688029219012616                        1,6047350899819077                        -48,471432                        -48,471432                        -48,471432                        332,3402646502832                        520179,25458623574                        27118,891480042803                        520179,25458623574                        27118,891480042847                        260,8871077504723
+1,0                        0,45                        0,01782608695652174                        0,021739130434782608                        9,777067289660105                        1,6052748076350474                        -46,205607                        -46,205607                        -46,205607                        370,07561436672944                        549423,104393805                        27155,93132945743                        549423,104393805                        27155,931329457453                        290,5093572778826
+1,0                        0,45                        0,01782608695652174                        0,02565217391304348                        9,856175747432344                        1,6057958360887148                        -44,191642                        -44,191642                        -44,191642                        407,8109640831757                        578666,9542013746                        27209,02118583994                        578666,9542013746                        27209,021185839974                        320,1316068052929
+1,0                        0,45                        0,01782608695652174                        0,029565217391304348                        9,927594433182973                        1,6062988150598485                        -42,381388                        -42,381388                        -42,381388                        445,5463137996219                        607910,8040089438                        27281,050050445323                        607910,8040089438                        27281,050050445305                        349,7538563327032
+1,0                        0,45                        0,01782608695652174                        0,03347826086956522                        9,992740613858853                        1,6067839171912932                        -40,741153                        -40,741153                        -40,741153                        483,28166351606814                        637154,6538165137                        27374,90692452741                        637154,6538165137                        27374,90692452738                        379,37610586011346
+1,0                        0,45                        0,01782608695652174                        0,03739130434782609                        10,052599367647867                        1,607251262942726                        -39,245675                        -39,245675                        -39,245675                        521,0170132325138                        666398,5036240818                        27493,48080934046                        666398,5036240818                        27493,48080934048                        408,9983553875233
+1,0                        0,45                        0,01782608695652174                        0,04130434782608696                        10,107898479672764                        1,607701024058195                        -37,875158                        -37,875158                        -37,875158                        558,7523629489597                        695642,3534316516                        27639,66070613911                        695642,3534316516                        27639,660706139068                        438,6206049149334
+1,0                        0,45                        0,01782608695652174                        0,04521739130434783                        10,159203446221532                        1,6081334773386542                        -36,613628                        -36,613628                        -36,613628                        596,4877126654062                        724886,203239221                        27816,33561617739                        724886,203239221                        27816,33561617742                        468,24285444234386
+1,0                        0,45                        0,01782608695652174                        0,0491304347826087                        10,206965216783876                        1,6085489645591586                        -35,447915                        -35,447915                        -35,447915                        634,2230623818527                        754130,0530467898                        28026,394540709593                        754130,0530467898                        28026,39454070957                        497,8651039697544
+1,0                        0,45                        0,01782608695652174                        0,053043478260869574                        10,251553483060208                        1,6089478886236155                        -34,366995                        -34,366995                        -34,366995                        671,9584120982987                        783373,9028543599                        28272,72648098974                        783373,9028543599                        28272,72648098975                        527,4873534971645
+1,0                        0,45                        0,01782608695652174                        0,05695652173913044                        10,293278575248166                        1,6093307094025184                        -33,361522                        -33,361522                        -33,361522                        709,6937618147446                        812617,7526619284                        28558,22043827268                        812617,7526619284                        28558,220438272725                        557,1096030245745
+1,0                        0,45                        0,01782608695652174                        0,06086956521739131                        10,332406440908326                        1,6096979400361036                        -32,423503                        -32,423503                        -32,423503                        747,4291115311917                        841861,6024694976                        28885,765413812343                        841861,6024694976                        28885,765413812387                        586,7318525519854
+1,0                        0,45                        0,01782608695652174                        0,06478260869565218                        10,369164606856835                        1,6100500991585303                        -31,546049                        -31,546049                        -31,546049                        785,1644612476376                        871105,452277067                        29258,250408863216                        871105,452277067                        29258,25040886315                        616,3541020793955
+1,0                        0,45                        0,01782608695652174                        0,06869565217391305                        10,403752742249123                        1,6103877327500813                        -30,723186                        -30,723186                        -30,723186                        822,8998109640835                        900349,3020846361                        29678,564424679273                        900349,3020846361                        29678,564424679214                        645,9763516068056
+1,0                        0,45                        0,01782608695652174                        0,07260869565217391                        10,43634753511314                        1,6107114029640615                        -29,949705                        -29,949705                        -29,949705                        860,6351606805295                        929593,1518922058                        30149,59646251508                        929593,1518922058                        30149,596462515117                        675,5986011342156
+1,0                        0,45                        0,01782608695652174                        0,07652173913043478                        10,467103226356764                        1,6110216466856533                        -29,221065                        -29,221065                        -29,221065                        898,3705103969751                        958837,0016997744                        30674,235523624746                        958837,0016997744                        30674,235523624713                        705,2208506616255
+1,0                        0,45                        0,01782608695652174                        0,08043478260869565                        10,496163594248404                        1,6113190596395486                        -28,533242                        -28,533242                        -28,533242                        936,1058601134222                        988080,851507344                        31255,370609262533                        988080,851507344                        31255,370609262547                        734,8431001890364
+1,0                        0,45                        0,01782608695652174                        0,08434782608695653                        10,523653582580879                        1,6116041834415449                        -27,882714                        -27,882714                        -27,882714                        973,841209829868                        1017324,7013149136                        31895,89072068325                        1017324,7013149136                        31895,890720683336                        764,4653497164464
+1,0                        0,45                        0,01782608695652174                        0,08826086956521739                        10,549687223960154                        1,6118775619487293                        -27,266357                        -27,266357                        -27,266357                        1011,576559546314                        1046568,5511224825                        32598,684859140165                        1046568,5511224825                        32598,684859140234                        794,0875992438565
+1,0                        0,45                        0,01782608695652174                        0,09217391304347826                        10,574367893474502                        1,612139725168455                        -26,681398                        -26,681398                        -26,681398                        1049,3119092627599                        1075812,4009300522                        33366,64202588861                        1075812,4009300522                        33366,64202588866                        823,7098487712666
+1,0                        0,45                        0,01782608695652174                        0,09608695652173914                        10,597789098054166                        1,6123911815916905                        -26,125377                        -26,125377                        -26,125377                        1087,0472589792064                        1105056,2507376217                        34202,65122218214                        1105056,2507376217                        34202,6512221821                        853,332098298677
+1,0                        0,45                        0,01782608695652174                        0,1                        10,620037594123557                        1,612632438492012                        -25,59607                        -25,59607                        -25,59607                        1124,782608695653                        1134300,1005451907                        35109,60144927526                        1134300,1005451907                        35109,60144927529                        882,9543478260875
+1,0                        0,45                        0,021739130434782608                        0,01                        9,962157138687644                        1,6065530956395875                        -47,35636                        -47,35636                        -47,35636                        291,3043478260869                        541101,6136544198                        33024,275362318826                        541101,6136544198                        33024,27536231878                        228,67391304347822
+1,0                        0,45                        0,021739130434782608                        0,01391304347826087                        10,082672534746902                        1,607493731527206                        -44,870584                        -44,870584                        -44,870584                        328,7334593572782                        569639,2475250827                        33037,77177635417                        569639,2475250827                        33037,771776354195                        258,0557655954634
+1,0                        0,45                        0,021739130434782608                        0,01782608695652174                        10,171036246386098                        1,6082352620406781                        -42,835923                        -42,835923                        -42,835923                        366,16257088846817                        598176,8813957449                        33061,4568332254                        598176,8813957449                        33061,45683322544                        287,4376181474475
+1,0                        0,45                        0,021739130434782608                        0,021739130434782608                        10,237984945080497                        1,6088253743479337                        -41,1087                        -41,1087                        -41,1087                        403,5916824196595                        626714,5152664072                        33098,19608873117                        626714,5152664072                        33098,19608873117                        316,8194706994327
+1,0                        0,45                        0,021739130434782608                        0,02565217391304348                        10,296101807472565                        1,6093569409714767                        -39,561355                        -39,561355                        -39,561355                        441,0207939508509                        655252,1491370695                        33150,85509866914                        655252,1491370695                        33150,85509866915                        346,20132325141793
+1,0                        0,45                        0,021739130434782608                        0,029565217391304348                        10,347779465201867                        1,6098443804872387                        -38,15815                        -38,15815                        -38,15815                        478,4499054820414                        683789,7830077322                        33222,29941883659                        683789,7830077322                        33222,29941883663                        375,58317580340247
+1,0                        0,45                        0,021739130434782608                        0,03347826086956522                        10,394435828717054                        1,6102961917383356                        -36,875192                        -36,875192                        -36,875192                        515,8790170132327                        712327,416878394                        33315,39460503174                        712327,416878394                        33315,39460503172                        404,9650283553877
+1,0                        0,45                        0,021739130434782608                        0,03739130434782609                        10,436997163903515                        1,610717907638877                        -35,695046                        -35,695046                        -35,695046                        553,3081285444235                        740865,050749056                        33433,006213051915                        740865,050749056                        33433,006213051936                        434,34688090737245
+1,0                        0,45                        0,021739130434782608                        0,04130434782608696                        10,476114102180897                        1,611113424923845                        -34,604246                        -34,604246                        -34,604246                        590,7372400756137                        769402,6846197183                        33577,999798695404                        769402,6846197183                        33577,99979869544                        463,72873345935676
+1,0                        0,45                        0,021739130434782608                        0,04521739130434783                        10,512265267245573                        1,6114856208460968                        -33,59198                        -33,59198                        -33,59198                        628,1663516068054                        797940,3184903805                        33753,24091775946                        797940,3184903805                        33753,24091775944                        493,1105860113422
+1,0                        0,45                        0,021739130434782608                        0,0491304347826087                        10,54582222334178                        1,611836770218101                        -32,649335                        -32,649335                        -32,649335                        665,595463137996                        826477,9523610433                        33961,595126041815                        826477,9523610433                        33961,595126041735                        522,4924385633269
+1,0                        0,45                        0,021739130434782608                        0,053043478260869574                        10,577075346702923                        1,6121686605351813                        -31,768815                        -31,768815                        -31,768815                        703,0245746691871                        855015,5862317049                        34205,92797934065                        855015,5862317049                        34205,927979340595                        551,8742911153118
+1,0                        0,45                        0,021739130434782608                        0,05695652173913044                        10,606265495592133                        1,6124828236927904                        -30,94403                        -30,94403                        -30,94403                        740,4536862003782                        883553,2201023673                        34489,10503345367                        883553,2201023673                        34489,105033453685                        581,2561436672969
+1,0                        0,45                        0,021739130434782608                        0,06086956521739131                        10,633590464521843                        1,6127805367249997                        -30,169476                        -30,169476                        -30,169476                        777,8827977315688                        912090,8539730295                        34813,99184417821                        912090,8539730295                        34813,99184417818                        610,6379962192815
+1,0                        0,45                        0,021739130434782608                        0,06478260869565218                        10,659222029199025                        1,6130629568057617                        -29,440368                        -29,440368                        -29,440368                        815,3119092627597                        940628,4878436916                        35183,45396731229                        940628,4878436916                        35183,45396731227                        640,0198487712664
+1,0                        0,45                        0,021739130434782608                        0,06869565217391305                        10,683304935229808                        1,6133310746929412                        -28,752527                        -28,752527                        -28,752527                        852,7410207939508                        969166,1217143538                        35600,35695865386                        969166,1217143538                        35600,35695865382                        669,4017013232514
+1,0                        0,45                        0,021739130434782608                        0,07260869565217391                        10,70596672435692                        1,6135857954880881                        -28,102286                        -28,102286                        -28,102286                        890,1701323251417                        997703,755585016                        36067,56637400054                        997703,755585016                        36067,56637400052                        698,7835538752362
+1,0                        0,45                        0,021739130434782608                        0,07652173913043478                        10,727319901647261                        1,6138279425867712                        -27,486411                        -27,486411                        -27,486411                        927,5992438563325                        1026241,3894556788                        36587,94776914987                        1026241,3894556788                        36587,94776914987                        728,1654064272209
+1,0                        0,45                        0,021739130434782608                        0,08043478260869565                        10,747464717005808                        1,6140582728826678                        -26,902045                        -26,902045                        -26,902045                        965,028355387524                        1054779,0233263413                        37164,36669989959                        1054779,0233263413                        37164,36669989956                        757,5472589792063
+1,0                        0,45                        0,021739130434782608                        0,08434782608695653                        10,7664930130336                        1,6142775080938765                        -26,346636                        -26,346636                        -26,346636                        1002,4574669187142                        1083316,6571970028                        37799,68872204825                        1083316,6571970028                        37799,68872204831                        786,9291115311906
+1,0                        0,45                        0,021739130434782608                        0,08826086956521739                        10,784485155696725                        1,6144862891921112                        -25,817925                        -25,817925                        -25,817925                        1039,8865784499053                        1111854,2910676657                        38496,77939139232                        1111854,2910676657                        38496,77939139224                        816,3109640831757
+1,0                        0,45                        0,021739130434782608                        0,09217391304347826                        10,801514371354108                        1,614685217511983                        -25,3139                        -25,3139                        -25,3139                        1077,3156899810967                        1140391,924938328                        39258,5042637307                        1140391,924938328                        39258,50426373077                        845,6928166351609
+1,0                        0,45                        0,021739130434782608                        0,09608695652173914                        10,817647677069223                        1,614874858836981                        -24,832748                        -24,832748                        -24,832748                        1114,744801512287                        1168929,55880899                        40087,72889486054                        1168929,55880899                        40087,72889486055                        875,0746691871453
+1,0                        0,45                        0,021739130434782608                        0,1                        10,832945045779043                        1,615055727783358                        -24,372867                        -24,372867                        -24,372867                        1152,173913043479                        1197467,1926796525                        40987,318840579625                        1197467,1926796525                        40987,3188405796                        904,4565217391308
+1,0                        0,45                        0,02565217391304348                        0,01                        10,395613673951521                        1,6103077402672077                        -42,276417                        -42,276417                        -42,276417                        325,739130434783                        619222,8090189309                        38967,14492753629                        619222,8090189309                        38967,14492753628                        255,70521739130467
+1,0                        0,45                        0,02565217391304348                        0,01391304347826087                        10,506002675080708                        1,6114206889776221                        -40,24796                        -40,24796                        -40,24796                        362,86200378071885                        647065,6891758775                        38980,53091636567                        647065,6891758775                        38980,53091636565                        284,84667296786427
+1,0                        0,45                        0,02565217391304348                        0,01782608695652174                        10,581009460674213                        1,6122107674805568                        -38,607983                        -38,607983                        -38,607983                        399,984877126654                        674908,5693328237                        39004,02218640825                        674908,5693328237                        39004,02218640821                        313,9881285444234
+1,0                        0,45                        0,02565217391304348                        0,021739130434782608                        10,636184696155741                        1,6128089825759822                        -37,20598                        -37,20598                        -37,20598                        437,1077504725901                        702751,4494897699                        39040,460848005256                        702751,4494897699                        39040,46084800524                        343,1295841209832
+1,0                        0,45                        0,02565217391304348                        0,02565217391304348                        10,678341247980901                        1,6132755955240592                        -35,973126                        -35,973126                        -35,973126                        474,23062381852577                        730594,3296467173                        39092,68901149827                        730594,3296467173                        39092,68901149824                        372,27103969754273
+1,0                        0,45                        0,02565217391304348                        0,029565217391304348                        10,714738005066359                        1,613685012787773                        -34,849117                        -34,849117                        -34,849117                        511,3534971644614                        758437,2098036635                        39163,54878722797                        758437,2098036635                        39163,54878722795                        401,4124952741022
+1,0                        0,45                        0,02565217391304348                        0,03347826086956522                        10,74687943317413                        1,614051555192119                        -33,815185                        -33,815185                        -33,815185                        548,4763705103974                        786280,0899606096                        39255,882285536056                        786280,0899606096                        39255,88228553601                        430,5539508506619
+1,0                        0,45                        0,02565217391304348                        0,03739130434782609                        10,775704664507689                        1,6143842205820598                        -32,85811                        -32,85811                        -32,85811                        585,5992438563324                        814122,9701175555                        39372,531616763335                        814122,9701175555                        39372,5316167633                        459,69540642722086
+1,0                        0,45                        0,02565217391304348                        0,04130434782608696                        10,801841024609505                        1,614689045852177                        -31,967915                        -31,967915                        -31,967915                        622,7221172022686                        841965,8502745016                        39516,33889125159                        841965,8502745016                        39516,33889125155                        488,8368620037808
+1,0                        0,45                        0,02565217391304348                        0,04521739130434783                        10,825730850691674                        1,614970303033915                        -31,136705                        -31,136705                        -31,136705                        659,8449905482045                        869808,7304314479                        39690,14621934145                        869808,7304314479                        39690,146219341535                        517,9783175803404
+1,0                        0,45                        0,02565217391304348                        0,0491304347826087                        10,847700440175732                        1,6152311557864114                        -30,358017                        -30,358017                        -30,358017                        696,9678638941398                        897651,6105883939                        39896,79571137439                        897651,6105883939                        39896,79571137443                        547,1197731568998
+1,0                        0,45                        0,02565217391304348                        0,053043478260869574                        10,86799921014826                        1,6154740329739323                        -29,626436                        -29,626436                        -29,626436                        734,0907372400757                        925494,4907453405                        40139,12947769142                        925494,4907453405                        40139,129477691386                        576,2612287334595
+1,0                        0,45                        0,02565217391304348                        0,05695652173913044                        10,886822927111767                        1,6157008494105105                        -28,93734                        -28,93734                        -28,93734                        771,2136105860119                        953337,3709022867                        40419,989628634394                        953337,3709022867                        40419,98962863447                        605,4026843100194
+1,0                        0,45                        0,02565217391304348                        0,06086956521739131                        10,904329795962443                        1,6159131621703349                        -28,286743                        -28,286743                        -28,286743                        808,3364839319474                        981180,251059233                        40742,21827454389                        981180,251059233                        40742,218274543964                        634,5441398865788
+1,0                        0,45                        0,02565217391304348                        0,06478260869565218                        10,920652071700909                        1,6161122862082584                        -27,671165                        -27,671165                        -27,671165                        845,4593572778829                        1009023,1312161792                        41108,65752576163                        1009023,1312161792                        41108,65752576156                        663,685595463138
+1,0                        0,45                        0,02565217391304348                        0,06869565217391305                        10,935899318139851                        1,6162993164103772                        -27,087559                        -27,087559                        -27,087559                        882,5822306238182                        1036866,0113731254                        41522,14949262847                        1036866,0113731254                        41522,149492628436                        692,8270510396973
+1,0                        0,45                        0,02565217391304348                        0,07260869565217391                        10,950167330763025                        1,6164752238187121                        -26,53323                        -26,53323                        -26,53323                        919,7051039697544                        1064708,8915300716                        41985,53628548605                        1064708,8915300716                        41985,536285486094                        721,9685066162573
+1,0                        0,45                        0,02565217391304348                        0,07652173913043478                        10,963535982755088                        1,616640819605479                        -26,005808                        -26,005808                        -26,005808                        956,82797731569                        1092551,7716870178                        42501,660014675                        1092551,7716870178                        42501,66001467503                        751,1099621928166
+1,0                        0,45                        0,02565217391304348                        0,08043478260869565                        10,97607793545711                        1,6167968552068783                        -25,503185                        -25,503185                        -25,503185                        993,950850661626                        1120394,651843964                        43073,36279053731                        1120394,651843964                        43073,36279053726                        780,2514177693764
+1,0                        0,45                        0,02565217391304348                        0,08434782608695653                        10,987859660614653                        1,6169440300705105                        -25,023461                        -25,023461                        -25,023461                        1031,0737240075612                        1148237,5320009105                        43703,48672341322                        1148237,5320009105                        43703,48672341328                        809,3928733459356
+1,0                        0,45                        0,02565217391304348                        0,08826086956521739                        10,998937720330284                        1,617082940785582                        -24,56496                        -24,56496                        -24,56496                        1068,196597353497                        1176080,4121578564                        44394,873923644656                        1176080,4121578564                        44394,87392364459                        838,5343289224951
+1,0                        0,45                        0,02565217391304348                        0,09217391304347826                        11,009364076789122                        1,6172141436142051                        -24,126172                        -24,126172                        -24,126172                        1105,3194706994334                        1203923,2923148032                        45150,36650157293                        1203923,2923148032                        45150,36650157289                        867,6757844990552
+1,0                        0,45                        0,02565217391304348                        0,09608695652173914                        11,019185475755767                        1,6173381439849273                        -23,705741                        -23,705741                        -23,705741                        1142,4423440453688                        1231766,1724717496                        45972,80656753898                        1231766,1724717496                        45972,806567539                        896,8172400756144
+1,0                        0,45                        0,02565217391304348                        0,1                        11,028444001682578                        1,617455401040103                        -23,302454                        -23,302454                        -23,302454                        1179,5652173913045                        1259609,0526286955                        46865,03623188426                        1259609,0526286955                        46865,03623188426                        925,9586956521741
+1,0                        0,45                        0,029565217391304348                        0,01                        10,763214815605707                        1,6142396229280525                        -38,39103                        -38,39103                        -38,39103                        360,1739130434785                        696065,6863099644                        44910,01449275369                        696065,6863099644                        44910,014492753704                        282,73652173913064
+1,0                        0,45                        0,029565217391304348                        0,01391304347826087                        10,868749389036193                        1,615483043077428                        -36,66983                        -36,66983                        -36,66983                        396,9905482041587                        723225,1811945594                        44923,290056377205                        723225,1811945594                        44923,29005637719                        311,6375803402646
+1,0                        0,45                        0,029565217391304348                        0,01782608695652174                        10,934487200195138                        1,6162819533700232                        -35,303148                        -35,303148                        -35,303148                        433,80718336483886                        750384,6760791544                        44946,58753959093                        750384,6760791544                        44946,5875395909                        340,5386389413985
+1,0                        0,45                        0,029565217391304348                        0,021739130434782608                        10,980883120631837                        1,6168568108339172                        -34,13229                        -34,13229                        -34,13229                        470,6238185255196                        777544,1709637502                        44982,72560727941                        777544,1709637502                        44982,72560727939                        369,4396975425329
+1,0                        0,45                        0,029565217391304348                        0,02565217391304348                        11,013017853771544                        1,6172602280721249                        -33,109133                        -33,109133                        -33,109133                        507,4404536862004                        804703,665848345                        45034,52292432725                        804703,665848345                        45034,52292432728                        398,3407561436673
+1,0                        0,45                        0,029565217391304348                        0,029565217391304348                        11,037488141183948                        1,6175702823337432                        -32,184996                        -32,184996                        -32,184996                        544,2570888468814                        831863,1607329402                        45104,79815561938                        831863,1607329402                        45104,798155619355                        427,2418147448019
+1,0                        0,45                        0,029565217391304348                        0,03347826086956522                        11,05813882952298                        1,6178338455948025                        -31,331621                        -31,331621                        -31,331621                        581,0737240075619                        859022,6556175355                        45196,36996604043                        859022,6556175355                        45196,369966040395                        456,1428733459361
+1,0                        0,45                        0,029565217391304348                        0,03739130434782609                        11,075962925560018                        1,6180627267345042                        -30,538204                        -30,538204                        -30,538204                        617,8903591682421                        886182,1505021309                        45312,05702047479                        886182,1505021309                        45312,05702047476                        485,04393194707
+1,0                        0,45                        0,029565217391304348                        0,04130434782608696                        11,091601718530383                        1,6182646035705415                        -29,796815                        -29,796815                        -29,796815                        654,7069943289217                        913341,6453867254                        45454,67798380744                        913341,6453867254                        45454,67798380744                        513,9449905482036
+1,0                        0,45                        0,029565217391304348                        0,04521739130434783                        11,105491086717944                        1,6184447222081626                        -29,101299                        -29,101299                        -29,101299                        691,5236294896029                        940501,1402713209                        45627,05152092324                        940501,1402713209                        45627,05152092328                        542,8460491493382
+1,0                        0,45                        0,029565217391304348                        0,0491304347826087                        11,117938945043333                        1,6186068035434311                        -28,446685                        -28,446685                        -28,446685                        728,3402646502838                        967660,6351559161                        45831,99629670667                        967660,6351559161                        45831,99629670659                        571,7471077504728
+1,0                        0,45                        0,029565217391304348                        0,053043478260869574                        11,129174717214044                        1,6187536331930679                        -27,828842                        -27,828842                        -27,828842                        765,1568998109642                        994820,1300405114                        46072,330976042445                        994820,1300405114                        46072,33097604253                        600,648166351607
+1,0                        0,45                        0,029565217391304348                        0,05695652173913044                        11,139369214194                        1,6188872895648494                        -27,244261                        -27,244261                        -27,244261                        801,9735349716448                        1021979,6249251062                        46350,87422381499                        1021979,6249251062                        46350,87422381508                        629,5492249527412
+1,0                        0,45                        0,029565217391304348                        0,06086956521739131                        11,148657003361148                        1,6190094168719107                        -26,689919                        -26,689919                        -26,689919                        838,7901701323256                        1049139,1198097016                        46670,44470490959                        1049139,1198097016                        46670,444704909576                        658,4502835538756
+1,0                        0,45                        0,029565217391304348                        0,06478260869565218                        11,157144218985348                        1,6191213152435118                        -26,163183                        -26,163183                        -26,163183                        875,6068052930059                        1076298,6146942966                        47033,861084210825                        1076298,6146942966                        47033,86108421085                        687,3513421550097
+1,0                        0,45                        0,029565217391304348                        0,06869565217391305                        11,164918881087921                        1,6192240681459353                        -25,66174                        -25,66174                        -25,66174                        912,4234404536865                        1103458,1095788914                        47443,94202660311                        1103458,1095788914                        47443,94202660304                        716,2524007561439
+1,0                        0,45                        0,029565217391304348                        0,07260869565217391                        11,172052488933584                        1,6193185576476539                        -25,183554                        -25,183554                        -25,183554                        949,2400756143667                        1130617,6044634867                        47903,50619697133                        1130617,6044634867                        47903,50619697133                        745,1534593572778
+1,0                        0,45                        0,029565217391304348                        0,07652173913043478                        11,178607221383354                        1,619405555501743                        -24,726813                        -24,726813                        -24,726813                        986,0567107750468                        1157777,0993480822                        48415,37226020015                        1157777,0993480822                        48415,37226020019                        774,0545179584117
+1,0                        0,45                        0,029565217391304348                        0,08043478260869565                        11,184635388161924                        1,6194857129478073                        -24,289915                        -24,289915                        -24,289915                        1022,8733459357278                        1184936,5942326777                        48982,35888117432                        1184936,5942326777                        48982,358881174274                        802,9555765595463
+1,0                        0,45                        0,029565217391304348                        0,08434782608695653                        11,190182806204865                        1,6195596032450368                        -23,87143                        -23,87143                        -23,87143                        1059,6899810964082                        1212096,0891172725                        49607,28472477833                        1212096,0891172725                        49607,284724778256                        831,8566351606805
+1,0                        0,45                        0,029565217391304348                        0,08826086956521739                        11,195292058358108                        1,6196277634549938                        -23,470052                        -23,470052                        -23,470052                        1096,5066162570888                        1239255,5840018673                        50292,96845589721                        1239255,5840018673                        50292,968455897295                        860,7576937618147
+1,0                        0,45                        0,029565217391304348                        0,09217391304347826                        11,199997886312978                        1,619690631696322                        -23,084639                        -23,084639                        -23,084639                        1133,3232514177698                        1266415,078886463                        51042,22873941515                        1266415,078886463                        51042,228739415186                        889,6587523629493
+1,0                        0,45                        0,029565217391304348                        0,09608695652173914                        11,204332112888517                        1,619748611649064                        -22,714159                        -22,714159                        -22,714159                        1170,1398865784504                        1293574,573771058                        51857,884240217405                        1293574,573771058                        51857,88424021745                        918,5598109640835
+1,0                        0,45                        0,029565217391304348                        0,1                        11,20832385830915                        1,6198020746825574                        -22,35767                        -22,35767                        -22,35767                        1206,9565217391305                        1320734,0686556536                        52742,753623188466                        1320734,0686556536                        52742,7536231884                        947,4608695652174
+1,0                        0,45                        0,03347826086956522                        0,01                        11,077424542431043                        1,6180815525548724                        -35,321595                        -35,321595                        -35,321595                        394,60869565217376                        771640,7907728548                        50852,88405797092                        771640,7907728548                        50852,88405797094                        309,7678260869564
+1,0                        0,45                        0,03347826086956522                        0,01391304347826087                        11,181881209700387                        1,6194490725904165                        -33,816772                        -33,816772                        -33,816772                        431,11909262759934                        798128,1750446379                        50866,04919638895                        798128,1750446379                        50866,04919638891                        338,4284877126655
+1,0                        0,45                        0,03347826086956522                        0,01782608695652174                        11,241814715790326                        1,6202530580428993                        -32,645278                        -32,645278                        -32,645278                        467,6294896030241                        824615,5593164212                        50889,15289277355                        824615,5593164212                        50889,152892773585                        367,08914933837394
+1,0                        0,45                        0,03347826086956522                        0,021739130434782608                        11,280538731166093                        1,62077987510429                        -31,651078                        -31,651078                        -31,651078                        504,13988657844936                        851102,9435882036                        50924,990366553284                        851102,9435882036                        50924,990366553284                        395,74981096408277
+1,0                        0,45                        0,03347826086956522                        0,02565217391304348                        11,307462746438436                        1,621149516970799                        -30,770971                        -30,770971                        -30,770971                        540,6502835538753                        877590,3278599874                        50976,35683715615                        877590,3278599874                        50976,35683715615                        424,4104725897921
+1,0                        0,45                        0,03347826086956522                        0,029565217391304348                        11,322926123398682                        1,6213630494444764                        -29,993229                        -29,993229                        -29,993229                        577,1606805293003                        904077,7121317697                        51046,04752401064                        904077,7121317697                        51046,047524010675                        453,07113421550076
+1,0                        0,45                        0,03347826086956522                        0,03347826086956522                        11,334436721652574                        1,621522579967911                        -29,274955                        -29,274955                        -29,274955                        613,6710775047262                        930565,096403553                        51136,85764654454                        930565,096403553                        51136,85764654447                        481,73179584121004
+1,0                        0,45                        0,03347826086956522                        0,03739130434782609                        11,343406687147295                        1,6216472416252798                        -28,605183                        -28,605183                        -28,605183                        650,181474480151                        957052,4806753355                        51251,58242418617                        957052,4806753355                        51251,582424186214                        510,3924574669185
+1,0                        0,45                        0,03347826086956522                        0,04130434782608696                        11,350511580150826                        1,6217461956955865                        -27,977233                        -27,977233                        -27,977233                        686,6918714555762                        983539,8649471186                        51393,01707636366                        983539,8649471186                        51393,017076363685                        539,0531190926274
+1,0                        0,45                        0,03347826086956522                        0,04521739130434783                        11,356202209765206                        1,621825587713189                        -27,386045                        -27,386045                        -27,386045                        723,2022684310019                        1010027,2492189013                        51563,956822505344                        1010027,2492189013                        51563,95682250538                        567,7137807183365
+1,0                        0,45                        0,03347826086956522                        0,0491304347826087                        11,36078728226698                        1,6218896430571161                        -26,827595                        -26,827595                        -26,827595                        759,7126654064266                        1036514,6334906844                        51767,19688203905                        1036514,6334906844                        51767,196882039105                        596,374442344045
+1,0                        0,45                        0,03347826086956522                        0,053043478260869574                        11,364488432290436                        1,6219414064207067                        -26,298578                        -26,298578                        -26,298578                        796,2230623818529                        1063002,0177624675                        52005,532474393156                        1063002,0177624675                        52005,532474393156                        625,0351039697545
+1,0                        0,45                        0,03347826086956522                        0,05695652173913044                        11,367466346691694                        1,6219830915725109                        -25,796211                        -25,796211                        -25,796211                        832,7334593572775                        1089489,4020342496                        52281,75881899604                        1089489,4020342496                        52281,75881899604                        653,695765595463
+1,0                        0,45                        0,03347826086956522                        0,06086956521739131                        11,369840794840359                        1,6220163528226985                        -25,31811                        -25,31811                        -25,31811                        869,2438563327034                        1115976,786306033                        52598,67113527557                        1115976,786306033                        52598,67113527553                        682,3564272211722
+1,0                        0,45                        0,03347826086956522                        0,06478260869565218                        11,371706255739582                        1,6220424987864528                        -24,862204                        -24,862204                        -24,862204                        905,7542533081282                        1142464,1705778153                        52959,06464266005                        1142464,1705778153                        52959,06464266014                        711,0170888468807
+1,0                        0,45                        0,03347826086956522                        0,06869565217391305                        11,373133064709332                        1,6220625053515734                        -24,426687                        -24,426687                        -24,426687                        942,2646502835538                        1168951,5548495988                        53365,7345605778                        1168951,5548495988                        53365,734560577825                        739,6777504725898
+1,0                        0,45                        0,03347826086956522                        0,07260869565217391                        11,374182411556342                        1,6220772239749528                        -24,009953                        -24,009953                        -24,009953                        978,7750472589792                        1195438,9391213814                        53821,476108456816                        1195438,9391213814                        53821,4761084569                        768,3384120982986
+1,0                        0,45                        0,03347826086956522                        0,07652173913043478                        11,3749011527465                        1,6220873077138505                        -23,610588                        -23,610588                        -23,610588                        1015,2854442344045                        1221926,3233931647                        54329,08450572528                        1221926,3233931647                        54329,08450572535                        796,9990737240075
+1,0                        0,45                        0,03347826086956522                        0,08043478260869565                        11,375328152304048                        1,6220932993006727                        -23,227339                        -23,227339                        -23,227339                        1051,7958412098299                        1248413,7076649475                        54891,35497181155                        1248413,7076649475                        54891,354971811634                        825,6597353497164
+1,0                        0,45                        0,03347826086956522                        0,08434782608695653                        11,375495675537943                        1,6220956501424195                        -22,859101                        -22,859101                        -22,859101                        1088,3062381852546                        1274901,0919367303                        55511,082726143206                        1274901,0919367303                        55511,08272614323                        854,3203969754248
+1,0                        0,45                        0,03347826086956522                        0,08826086956521739                        11,375436608544685                        1,622094821247655                        -22,504818                        -22,504818                        -22,504818                        1124,81663516068                        1301388,476208513                        56191,062988149235                        1301388,476208513                        56191,0629881493                        882,9810586011338
+1,0                        0,45                        0,03347826086956522                        0,09217391304347826                        11,375171237790147                        1,6220910974241773                        -22,163642                        -22,163642                        -22,163642                        1161,3270321361053                        1327875,8604802964                        56934,09097725727                        1327875,8604802964                        56934,0909772573                        911,6417202268427
+1,0                        0,45                        0,03347826086956522                        0,09608695652173914                        11,374722732548227                        1,6220848043503944                        -21,83474                        -21,83474                        -21,83474                        1197,837429111531                        1354363,244752079                        57742,96191289575                        1354363,244752079                        57742,96191289573                        940,3023818525518
+1,0                        0,45                        0,03347826086956522                        0,1                        11,374109622024779                        1,6220762028643005                        -21,517382                        -21,517382                        -21,517382                        1234,3478260869563                        1380850,6290238623                        58620,47101449276                        1380850,6290238623                        58620,471014492716                        968,9630434782607
+1,0                        0,45                        0,03739130434782609                        0,01                        11,34757335251116                        1,6217052504944827                        -32,834609                        -32,834609                        -32,834609                        429,0434782608698                        845958,6676529414                        56795,753623188444                        845958,6676529414                        56795,753623188444                        336,7991304347828
+1,0                        0,45                        0,03739130434782609                        0,01391304347826087                        11,4537032630309                        1,6232043405578511                        -31,487917                        -31,487917                        -31,487917                        465,24763705104                        871785,1221896244                        56808,80833640053                        871785,1221896244                        56808,80833640045                        365,2193950850664
+1,0                        0,45                        0,03739130434782609                        0,01782608695652174                        11,510429838167681                        1,6240223203190265                        -30,460696                        -30,460696                        -30,460696                        501,45179584120956                        897611,5767263074                        56831,718245956305                        897611,5767263074                        56831,718245956356                        393,63965973534954
+1,0                        0,45                        0,03739130434782609                        0,021739130434782608                        11,543879959933795                        1,6245100122105292                        -29,598436                        -29,598436                        -29,598436                        537,6559546313795                        923438,0312629908                        56867,25512582742                        923438,0312629908                        56867,25512582744                        422,0599243856329
+1,0                        0,45                        0,03739130434782609                        0,02565217391304348                        11,564596993004333                        1,6248140288798438                        -28,839291                        -28,839291                        -28,839291                        573,86011342155                        949264,4857996751                        56918,190749985304                        949264,4857996751                        56918,190749985326                        450,4801890359167
+1,0                        0,45                        0,03739130434782609                        0,029565217391304348                        11,576463118528125                        1,624988834958627                        -28,158018                        -28,158018                        -28,158018                        610,0642722117203                        975090,9403363576                        56987,296892402046                        975090,9403363576                        56987,296892401995                        478,9004536862005
+1,0                        0,45                        0,03739130434782609                        0,03347826086956522                        11,580695994054956                        1,6250513100167905                        -27,543472                        -27,543472                        -27,543472                        646,2684310018906                        1000917,3948730417                        57077,345327048984                        1000917,3948730417                        57077,34532704907                        507,3207183364841
+1,0                        0,45                        0,03739130434782609                        0,03739130434782609                        11,582520644142354                        1,6250782600744649                        -26,969385                        -26,969385                        -26,969385                        682,4725897920607                        1026743,8494097245                        57191,10782789758                        1026743,8494097245                        57191,107827897664                        535,7409829867677
+1,0                        0,45                        0,03739130434782609                        0,04130434782608696                        11,582669244440622                        1,6250804554070069                        -26,429892                        -26,429892                        -26,429892                        718,6767485822311                        1052570,3039464075                        57331,35616891969                        1052570,3039464075                        57331,35616891975                        564,1612476370514
+1,0                        0,45                        0,03739130434782609                        0,04521739130434783                        11,581619741002685                        1,6250649523048046                        -25,92064                        -25,92064                        -25,92064                        754,880907372401                        1078396,7584830916                        57500,86212408725                        1078396,7584830916                        57500,86212408731                        592,5815122873347
+1,0                        0,45                        0,03739130434782609                        0,0491304347826087                        11,579692015023035                        1,6250364861821474                        -25,438226                        -25,438226                        -25,438226                        791,0850661625709                        1104223,2130197745                        57702,39746737155                        1104223,2130197745                        57702,397467371615                        621,0017769376182
+1,0                        0,45                        0,03739130434782609                        0,053043478260869574                        11,5771106253071                        1,6249983877971164                        -24,979897                        -24,979897                        -24,979897                        827,2892249527414                        1130049,667556458                        57938,73397274388                        1130049,667556458                        57938,733972743954                        649,422041587902
+1,0                        0,45                        0,03739130434782609                        0,05695652173913044                        11,574033784729814                        1,62495300733107                        -24,543361                        -24,543361                        -24,543361                        863,4933837429112                        1155876,1220931408                        58212,64341417683                        1155876,1220931408                        58212,64341417682                        677,8423062381853
+1,0                        0,45                        0,03739130434782609                        0,06086956521739131                        11,570578033837478                        1,6249020775102347                        -24,126669                        -24,126669                        -24,126669                        899,6975425330813                        1181702,5766298245                        58526,89756564169                        1181702,5766298245                        58526,897565641666                        706,2625708884689
+1,0                        0,45                        0,03739130434782609                        0,06478260869565218                        11,56682967684536                        1,6248468822993267                        -23,728139                        -23,728139                        -23,728139                        935,9017013232512                        1207529,0311665079                        58884,26820110947                        1207529,0311665079                        58884,26820110943                        734,6828355387522
+1,0                        0,45                        0,03739130434782609                        0,06869565217391305                        11,56285233902336                        1,6247883687907603                        -23,346311                        -23,346311                        -23,346311                        972,105860113421                        1233355,4857031908                        59287,52709455223                        1233355,4857031908                        59287,527094552264                        763,1031001890356
+1,0                        0,45                        0,03739130434782609                        0,07260869565217391                        11,558698656140468                        1,6247273197976704                        -22,979885                        -22,979885                        -22,979885                        1008,3100189035916                        1259181,9402398744                        59739,446019942035                        1259181,9402398744                        59739,44601994196                        791,5233648393195
+1,0                        0,45                        0,03739130434782609                        0,07652173913043478                        11,554405577940733                        1,6246642853047017                        -22,627733                        -22,627733                        -22,627733                        1044,5141776937621                        1285008,394776558                        60242,79675125038                        1285008,394776558                        60242,796751250324                        819,9436294896033
+1,0                        0,45                        0,03739130434782609                        0,08043478260869565                        11,550004470644941                        1,6245997314877052                        -22,288846                        -22,288846                        -22,288846                        1080,718336483932                        1310834,849313241                        60800,35106244864                        1310834,849313241                        60800,351062448644                        848,3638941398866
+1,0                        0,45                        0,03739130434782609                        0,08434782608695653                        11,545520575129554                        1,624534033054298                        -21,962319                        -21,962319                        -21,962319                        1116,9224952741024                        1336661,3038499246                        61414,88072750854                        1336661,3038499246                        61414,88072750854                        876,7841587901703
+1,0                        0,45                        0,03739130434782609                        0,08826086956521739                        11,540972213337735                        1,6244674620150434                        -21,647378                        -21,647378                        -21,647378                        1153,126654064272                        1362487,7583866075                        62089,15752040165                        1362487,7583866075                        62089,15752040165                        905,2044234404536
+1,0                        0,45                        0,03739130434782609                        0,09217391304347826                        11,536378502446356                        1,62440030089429                        -21,343272                        -21,343272                        -21,343272                        1189,3308128544427                        1388314,2129232911                        62825,953215099566                        1388314,2129232911                        62825,953215099595                        933,6246880907375
+1,0                        0,45                        0,03739130434782609                        0,09608695652173914                        11,53175242375593                        1,624332741460463                        -21,049366                        -21,049366                        -21,049366                        1225,5349716446126                        1414140,667459974                        63628,03958557422                        1414140,667459974                        63628,03958557417                        962,0449527410209
+1,0                        0,45                        0,03739130434782609                        0,1                        11,527105233085441                        1,6242649495005095                        -20,765082                        -20,765082                        -20,765082                        1261,739130434783                        1439967,1219966582                        64498,188405797155                        1439967,1219966582                        64498,1884057972                        990,4652173913047
+1,0                        0,45                        0,04130434782608696                        0,01                        11,580844956120773                        1,6250535097519254                        -30,778125                        -30,778125                        -30,778125                        463,47826086956536                        919029,8621955556                        62738,623188405705                        919029,8621955556                        62738,62318840577                        363,8304347826088
+1,0                        0,45                        0,04130434782608696                        0,01391304347826087                        11,690667457402823                        1,6266959783189403                        -29,550513                        -29,550513                        -29,550513                        499,37618147448063                        944206,4740930261                        62751,56747641223                        944206,4740930261                        62751,567476412165                        392,0103024574673
+1,0                        0,45                        0,04130434782608696                        0,01782608695652174                        11,74616020661105                        1,6275413883566723                        -28,632956                        -28,632956                        -28,632956                        535,2741020793945                        969383,0859904967                        62774,283599139075                        969383,0859904967                        62774,283599139126                        420,19017013232474
+1,0                        0,45                        0,04130434782608696                        0,021739130434782608                        11,77619425205596                        1,6280031974710076                        -27,871849                        -27,871849                        -27,871849                        571,1720226843095                        994559,6978879672                        62809,519885101494                        994559,6978879672                        62809,519885101414                        448,37003780718294
+1,0                        0,45                        0,04130434782608696                        0,02565217391304348                        11,79243298095141                        1,628254118897833                        -27,206182                        -27,206182                        -27,206182                        607,0699432892251                        1019736,3097854372                        62860,02466281439                        1019736,3097854372                        62860,02466281432                        476,5499054820417
+1,0                        0,45                        0,04130434782608696                        0,029565217391304348                        11,800481595544715                        1,6283788051253942                        -26,606374                        -26,606374                        -26,606374                        642,9678638941398                        1044912,9216829079                        62928,546260793206                        1044912,9216829079                        62928,54626079314                        504,72977315689974
+1,0                        0,45                        0,04130434782608696                        0,03347826086956522                        11,800880315501402                        1,6283849874297023                        -26,065501                        -26,065501                        -26,065501                        678,8657844990548                        1070089,5335803784                        63017,83300755317                        1070089,5335803784                        63017,83300755315                        532,909640831758
+1,0                        0,45                        0,04130434782608696                        0,03739130434782609                        11,79694378324753                        1,6283239726471042                        -25,566975                        -25,566975                        -25,566975                        714,7637051039695                        1095266,1454778486                        63130,63323160883                        1095266,1454778486                        63130,63323160877                        561,0895085066161
+1,0                        0,45                        0,04130434782608696                        0,04130434782608696                        11,791421258225819                        1,6282384605798668                        -25,097783                        -25,097783                        -25,097783                        750,6616257088851                        1120442,7573753188                        63269,69526147593                        1120442,7573753188                        63269,695261475994                        589,2693761814747
+1,0                        0,45                        0,04130434782608696                        0,04521739130434783                        11,784825137950143                        1,6281364550029795                        -24,654044                        -24,654044                        -24,654044                        786,5595463137994                        1145619,3692727888                        63437,767425669146                        1145619,3692727888                        63437,76742566923                        617,4492438563325
+1,0                        0,45                        0,04130434782608696                        0,0491304347826087                        11,777495307102123                        1,6280232696604917                        -24,232777                        -24,232777                        -24,232777                        822,4574669187149                        1170795,9811702599                        63637,598052703914                        1170795,9811702599                        63637,59805270396                        645,6291115311911
+1,0                        0,45                        0,04130434782608696                        0,053043478260869574                        11,769665263088323                        1,62790255440492                        -23,831613                        -23,831613                        -23,831613                        858,3553875236299                        1195972,5930677303                        63871,93547109487                        1195972,5930677303                        63871,93547109493                        673,8089792060495
+1,0                        0,45                        0,04130434782608696                        0,05695652173913044                        11,761502109799286                        1,6277769177532526                        -23,448597                        -23,448597                        -23,448597                        894,2533081285441                        1221149,2049651998                        64143,52800935751                        1221149,2049651998                        64143,5280093576                        701,9888468809071
+1,0                        0,45                        0,04130434782608696                        0,06086956521739131                        11,753121443966519                        1,6276481613693254                        -23,082086                        -23,082086                        -23,082086                        930,1512287334593                        1246325,8168626705                        64455,12399600745                        1246325,8168626705                        64455,12399600745                        730,1687145557655
+1,0                        0,45                        0,04130434782608696                        0,06478260869565218                        11,744606681058178                        1,6275175818669556                        -22,730676                        -22,730676                        -22,730676                        966,0491493383744                        1271502,4287601407                        64809,47175955867                        1271502,4287601407                        64809,47175955872                        758,3485822306238
+1,0                        0,45                        0,04130434782608696                        0,06869565217391305                        11,736020450443398                        1,627386148939959                        -22,393146                        -22,393146                        -22,393146                        1001,9470699432891                        1296679,040657611                        65209,31962852689                        1296679,040657611                        65209,31962852687                        786,5284499054819
+1,0                        0,45                        0,04130434782608696                        0,07260869565217391                        11,727411052608991                        1,6272546065742954                        -22,068417                        -22,068417                        -22,068417                        1037,8449905482041                        1321855,6525550818                        65657,41593142766                        1321855,6525550818                        65657,4159314277                        814,7083175803402
+1,0                        0,45                        0,04130434782608696                        0,07652173913043478                        11,718808517577713                        1,6271234149084404                        -21,755571                        -21,755571                        -21,755571                        1073,7429111531187                        1347032,2644525517                        66156,50899677558                        1347032,2644525517                        66156,50899677566                        842,8881852551983
+1,0                        0,45                        0,04130434782608696                        0,08043478260869565                        11,71023999003423                        1,6269929867719004                        -21,453775                        -21,453775                        -21,453775                        1109,6408317580344                        1372208,8763500222                        66709,34715308585                        1372208,8763500222                        66709,34715308584                        871,068052930057
+1,0                        0,45                        0,04130434782608696                        0,08434782608695653                        11,70172490664729                        1,6268636148920046                        -21,162294                        -21,162294                        -21,162294                        1145,5387523629486                        1397385,4882474928                        67318,67872887352                        1397385,4882474928                        67318,67872887352                        899,2479206049146
+1,0                        0,45                        0,04130434782608696                        0,08826086956521739                        11,69327635996143                        1,6267354936706955                        -20,880502                        -20,880502                        -20,880502                        1181,4366729678636                        1422562,1001449628                        67987,25205265377                        1422562,1001449628                        67987,25205265383                        927,4277882797729
+1,0                        0,45                        0,04130434782608696                        0,09217391304347826                        11,684908736804264                        1,6266088356156712                        -20,607772                        -20,607772                        -20,607772                        1217,334593572779                        1447738,7120424337                        68717,81545294184                        1447738,7120424337                        68717,81545294188                        955,6076559546317
+1,0                        0,45                        0,04130434782608696                        0,09608695652173914                        11,676629440008728                        1,6264837462248636                        -20,343591                        -20,343591                        -20,343591                        1253,2325141776935                        1472915,3239399036                        69513,11725825262                        1472915,3239399036                        69513,11725825262                        983,7875236294893
+1,0                        0,45                        0,04130434782608696                        0,1                        11,668444071383394                        1,6263603030758595                        -20,087507                        -20,087507                        -20,087507                        1289,1304347826087                        1498091,9358373743                        70375,90579710148                        1498091,9358373743                        70375,90579710151                        1011,9673913043479
+1,0                        0,45                        0,04521739130434783                        0,01                        11,78289260741686                        1,6281065963219683                        -29,048923                        -29,048923                        -29,048923                        497,9130434782614                        990864,9196460376                        68681,49275362334                        990864,9196460376                        68681,49275362327                        390,8617391304352
+1,0                        0,45                        0,04521739130434783                        0,01391304347826087                        11,897893774535373                        1,6299044356366743                        -27,913237                        -27,913237                        -27,913237                        533,5047258979213                        1015402,6822183549                        68694,32661642396                        1015402,6822183549                        68694,32661642389                        418,8012098298682
+1,0                        0,45                        0,04521739130434783                        0,01782608695652174                        11,95366295703577                        1,6307914267213597                        -27,080993                        -27,080993                        -27,080993                        569,0964083175803                        1039940,4447906726                        68716,84895232186                        1039940,4447906726                        68716,8489523219                        446,7406805293005
+1,0                        0,45                        0,04521739130434783                        0,021739130434782608                        11,981733236849964                        1,6312415459645067                        -26,399146                        -26,399146                        -26,399146                        604,6880907372396                        1064478,2073629913                        68751,78464437532                        1064478,2073629913                        68751,7846443754                        474,68015122873305
+1,0                        0,45                        0,04521739130434783                        0,02565217391304348                        11,994864743877107                        1,6314529514991478                        -25,807217                        -25,807217                        -25,807217                        640,2797731568998                        1089015,9699353091                        68801,85857564362                        1089015,9699353091                        68801,85857564367                        502,6196219281663
+1,0                        0,45                        0,04521739130434783                        0,029565217391304348                        11,9991941068772                        1,6315227666878076                        -25,276117                        -25,276117                        -25,276117                        675,8714555765597                        1113553,7325076272                        68869,79562918471                        1113553,7325076272                        68869,79562918463                        530,5590926275993
+1,0                        0,45                        0,04521739130434783                        0,03347826086956522                        11,998021981292572                        1,6315038593377136                        -24,789836                        -24,789836                        -24,789836                        711,4631379962194                        1138091,495079945                        68958,3206880575                        1138091,495079945                        68958,32068805757                        558,4985633270322
+1,0                        0,45                        0,04521739130434783                        0,03739130434782609                        11,989675313540587                        1,6313693428344744                        -24,351227                        -24,351227                        -24,351227                        747,0548204158794                        1162629,2576522622                        69070,15863532029                        1162629,2576522622                        69070,15863532023                        586,4380340264653
+1,0                        0,45                        0,04521739130434783                        0,04130434782608696                        11,979536332115833                        1,6312062296702379                        -23,938818                        -23,938818                        -23,938818                        782,6465028355391                        1187167,0202245798                        69208,0343540321                        1187167,0202245798                        69208,03435403206                        614,3775047258981
+1,0                        0,45                        0,04521739130434783                        0,04521739130434783                        11,968377752410646                        1,6310270804683376                        -23,548268                        -23,548268                        -23,548268                        818,2381852551985                        1211704,7827968982                        69374,6727272512                        1211704,7827968982                        69374,67272725116                        642,3169754253307
+1,0                        0,45                        0,04521739130434783                        0,0491304347826087                        11,956569016875273                        1,6308379132488617                        -23,1769                        -23,1769                        -23,1769                        853,8298676748586                        1236242,5453692155                        69572,79863803621                        1236242,5453692155                        69572,7986380363                        670,256446124764
+1,0                        0,45                        0,04521739130434783                        0,053043478260869574                        11,944358054559352                        1,630642758521431                        -22,822608                        -22,822608                        -22,822608                        889,4215500945184                        1260780,307941534                        69805,13696944578                        1260780,307941534                        69805,13696944572                        698,195916824197
+1,0                        0,45                        0,04521739130434783                        0,05695652173913044                        11,931922650891154                        1,6304444948023455                        -22,483678                        -22,483678                        -22,483678                        925,0132325141777                        1285318,0705138515                        70074,41260453856                        1285318,0705138515                        70074,41260453856                        726,1353875236296
+1,0                        0,45                        0,04521739130434783                        0,06086956521739131                        11,919379798522808                        1,6302450083469082                        -22,158689                        -22,158689                        -22,158689                        960,6049149338377                        1309855,833086169                        70383,35042637316                        1309855,833086169                        70383,35042637325                        754,0748582230625
+1,0                        0,45                        0,04521739130434783                        0,06478260869565218                        11,906817464028455                        1,6300457074385597                        -21,846434                        -21,846434                        -21,846434                        996,1965973534974                        1334393,5956584867                        70734,67531800787                        1334393,5956584867                        70734,67531800784                        782,0143289224955
+1,0                        0,45                        0,04521739130434783                        0,06869565217391305                        11,894298990660037                        1,629847597349244                        -21,54587                        -21,54587                        -21,54587                        1031,7882797731568                        1358931,358230805                        71131,11216250168                        1358931,358230805                        71131,11216250165                        809,953799621928
+1,0                        0,45                        0,04521739130434783                        0,07260869565217391                        11,88186708482466                        1,629651347969045                        -21,256103                        -21,256103                        -21,256103                        1067,3799621928174                        1383469,1208031233                        71575,38584291328                        1383469,1208031233                        71575,38584291328                        837,8932703213616
+1,0                        0,45                        0,04521739130434783                        0,07652173913043478                        11,869556125338507                        1,6294574914882567                        -20,976331                        -20,976331                        -20,976331                        1102,9716446124764                        1408006,8833754407                        72070,22124230077                        1408006,8833754407                        72070,22124230082                        865,832741020794
+1,0                        0,45                        0,04521739130434783                        0,08043478260869565                        11,857387966251885                        1,6292663582534497                        -20,705865                        -20,705865                        -20,705865                        1138,5633270321364                        1432544,6459477586                        72618,3432437232                        1432544,6459477586                        72618,34324372318                        893,772211720227
+1,0                        0,45                        0,04521739130434783                        0,08434782608695653                        11,845378770487754                        1,6290781862236867                        -20,444098                        -20,444098                        -20,444098                        1174,1550094517959                        1457082,4085200764                        73222,47673023844                        1457082,4085200764                        73222,47673023849                        921,7116824196597
+1,0                        0,45                        0,04521739130434783                        0,08826086956521739                        11,833539798071966                        1,628893134438731                        -20,190492                        -20,190492                        -20,190492                        1209,7466918714556                        1481620,1710923943                        73885,34658490588                        1481620,1710923943                        73885,34658490584                        949,6511531190927
+1,0                        0,45                        0,04521739130434783                        0,09217391304347826                        11,821880202595853                        1,6287113275614267                        -19,944542                        -19,944542                        -19,944542                        1245,3383742911155                        1506157,9336647124                        74609,67769078392                        1506157,9336647124                        74609,67769078401                        977,5906238185257
+1,0                        0,45                        0,04521739130434783                        0,09608695652173914                        11,810403829264946                        1,6285328065732008                        -19,705836                        -19,705836                        -19,705836                        1280,9300567107753                        1530695,69623703                        75398,19493093107                        1530695,69623703                        75398,19493093107                        1005,5300945179587
+1,0                        0,45                        0,04521739130434783                        0,1                        11,799113670134627                        1,6283575988511432                        -19,47399                        -19,47399                        -19,47399                        1316,5217391304357                        1555233,4588093483                        76253,62318840578                        1555233,458809348                        76253,62318840573                        1033,469565217392
+1,0                        0,45                        0,0491304347826087                        0,01                        11,958251859556682                        1,6308648446954788                        -27,574384                        -27,574384                        -27,574384                        532,347826086956                        1061474,3852497188                        74624,36231884058                        1061474,3852497188                        74624,3623188406                        417,89304347826055
+1,0                        0,45                        0,0491304347826087                        0,01391304347826087                        12,079516061239383                        1,6328284018031518                        -26,511154                        -26,511154                        -26,511154                        567,6332703213611                        1085384,198029119                        74637,08575643548                        1085384,198029119                        74637,08575643542                        445,59211720226847
+1,0                        0,45                        0,0491304347826087                        0,01782608695652174                        12,136724736968446                        1,6337701655270112                        -25,746598                        -25,746598                        -25,746598                        602,9187145557653                        1109294,0108085189                        74659,41430550451                        1109294,0108085189                        74659,4143055045                        473,2911909262757
+1,0                        0,45                        0,0491304347826087                        0,021739130434782608                        12,163973726509969                        1,6342221444682465                        -25,128014                        -25,128014                        -25,128014                        638,2041587901696                        1133203,8235879187                        74694,04940364933                        1133203,8235879187                        74694,04940364938                        500,99026465028317
+1,0                        0,45                        0,0491304347826087                        0,02565217391304348                        12,175093322890076                        1,6344072114888069                        -24,595279                        -24,595279                        -24,595279                        673,4896030245746                        1157113,6363673185                        74743,69248847253                        1157113,6363673185                        74743,6924884725                        528,6893383742911
+1,0                        0,45                        0,0491304347826087                        0,029565217391304348                        12,176741449466997                        1,6344346725646337                        -24,119629                        -24,119629                        -24,119629                        708,7750472589796                        1181023,4491467183                        74811,04499757598                        1181023,4491467183                        74811,04499757595                        556,388412098299
+1,0                        0,45                        0,0491304347826087                        0,03347826086956522                        12,17250349191224                        1,6343640757784255                        -23,685359                        -23,685359                        -23,685359                        744,060491493384                        1204933,261926118                        74898,80836856185                        1204933,261926118                        74898,80836856182                        584,0874858223065
+1,0                        0,45                        0,0491304347826087                        0,03739130434782609                        12,163213826452635                        1,6342095104259498                        -23,287113                        -23,287113                        -23,287113                        779,3459357277882                        1228843,0747055172                        75009,68403903175                        1228843,0747055172                        75009,68403903168                        611,7865595463137
+1,0                        0,45                        0,0491304347826087                        0,04130434782608696                        12,149332671089756                        1,6339790216802572                        -22,921216                        -22,921216                        -22,921216                        814,6313799621933                        1252752,887484917                        75146,3734465883                        1252752,887484917                        75146,3734465883                        639,4856332703216
+1,0                        0,45                        0,0491304347826087                        0,04521739130434783                        12,134436458744712                        1,6337323094560579                        -22,574436                        -22,574436                        -22,574436                        849,9168241965976                        1276662,7002643172                        75311,57802883328                        1276662,7002643172                        75311,57802883326                        667,1847069943292
+1,0                        0,45                        0,0491304347826087                        0,0491304347826087                        12,118922783192435                        1,6334760680405505                        -22,244306                        -22,244306                        -22,244306                        885,2022684310019                        1300572,5130437163                        75507,9992233685                        1300572,5130437163                        75507,99922336846                        694,8837807183365
+1,0                        0,45                        0,0491304347826087                        0,053043478260869574                        12,103061347866038                        1,6332148213641067                        -21,928913                        -21,928913                        -21,928913                        920,4877126654069                        1324482,325823116                        75738,3384677966                        1324482,325823116                        75738,33846779652                        722,5828544423445
+1,0                        0,45                        0,0491304347826087                        0,05695652173913044                        12,087036300269943                        1,6329516417970404                        -21,626726                        -21,626726                        -21,626726                        955,7731568998114                        1348392,1386025161                        76005,29719971947                        1348392,1386025161                        76005,29719971951                        750,2819281663519
+1,0                        0,45                        0,0491304347826087                        0,06086956521739131                        12,070979542413754                        1,6326887129944458                        -21,33648                        -21,33648                        -21,33648                        991,0586011342152                        1372301,951381916                        76311,57685673877                        1372301,951381916                        76311,57685673886                        777,9810018903589
+1,0                        0,45                        0,0491304347826087                        0,06478260869565218                        12,054981690369866                        1,6324275203116174                        -21,057114                        -21,057114                        -21,057114                        1026,3440453686196                        1396211,7641613155                        76659,87887645705                        1396211,7641613155                        76659,87887645696                        805,6800756143665
+1,0                        0,45                        0,0491304347826087                        0,06869565217391305                        12,039108954920279                        1,6321691349263883                        -20,787717                        -20,787717                        -20,787717                        1061,6294896030242                        1420121,5769407153                        77052,90469647627                        1420121,5769407153                        77052,90469647627                        833,379149338374
+1,0                        0,45                        0,0491304347826087                        0,07260869565217391                        12,023405697813804                        1,6319142611714728                        -20,527514                        -20,527514                        -20,527514                        1096,914933837429                        1444031,3897201149                        77493,35575439858                        1444031,3897201149                        77493,35575439852                        861,0782230623818
+1,0                        0,45                        0,0491304347826087                        0,07652173913043478                        12,007904596180312                        1,631663406127837                        -20,275824                        -20,275824                        -20,275824                        1132,2003780718333                        1467941,2024995147                        77983,93348782578                        1467941,2024995147                        77983,9334878258                        888,777296786389
+1,0                        0,45                        0,0491304347826087                        0,08043478260869565                        11,992628001361888                        1,6314169044247786                        -20,032056                        -20,032056                        -20,032056                        1167,485822306238                        1491851,0152789145                        78527,33933436022                        1491851,0152789145                        78527,3393343603                        916,4763705103969
+1,0                        0,45                        0,0491304347826087                        0,08434782608695653                        11,977590819871644                        1,6311749670738938                        -19,795691                        -19,795691                        -19,795691                        1202,7712665406425                        1515760,8280583143                        79126,27473160365                        1515760,8280583143                        79126,27473160364                        944,1754442344044
+1,0                        0,45                        0,0491304347826087                        0,08826086956521739                        11,962803008394197                        1,630937723267458                        -19,566271                        -19,566271                        -19,566271                        1238,0567107750471                        1539670,6408377138                        79783,44111715794                        1539670,6408377136                        79783,44111715793                        971,874517958412
+1,0                        0,45                        0,0491304347826087                        0,09217391304347826                        11,94826992923481                        1,630705227267704                        -19,343405                        -19,343405                        -19,343405                        1273,342155009452                        1563580,4536171139                        80501,53992862612                        1563580,4536171139                        80501,53992862621                        999,5735916824199
+1,0                        0,45                        0,0491304347826087                        0,09608695652173914                        11,933996415515963                        1,6304775242601428                        -19,126691                        -19,126691                        -19,126691                        1308,6275992438564                        1587490,266396513                        81283,27260360942                        1587490,266396513                        81283,27260360944                        1027,2726654064272
+1,0                        0,45                        0,0491304347826087                        0,1                        11,919982100725203                        1,6302545763152168                        -18,915829                        -18,915829                        -18,915829                        1343,9130434782614                        1611400,0791759128                        82131,3405797101                        1611400,0791759128                        82131,34057971014                        1054,9717391304353
+1,0                        0,45                        0,053043478260869574                        0,01                        12,110611275291244                        1,6333390795170928                        -26,301886                        -26,301886                        -26,301886                        566,7826086956522                        1130868,8042519381                        80567,23188405798                        1130868,8042519381                        80567,23188405792                        444,924347826087
+1,0                        0,45                        0,053043478260869574                        0,01391304347826087                        12,238924302768927                        1,635476527522654                        -25,2968                        -25,2968                        -25,2968                        601,7618147448018                        1154161,472988828                        80579,84489644728                        1154161,472988828                        80579,84489644732                        472,3830245746694
+1,0                        0,45                        0,053043478260869574                        0,01782608695652174                        12,29846580487959                        1,6364845338540361                        -24,586858                        -24,586858                        -24,586858                        636,7410207939507                        1177454,141725718                        80601,97965868718                        1177454,141725718                        80601,9796586871                        499,8417013232513
+1,0                        0,45                        0,053043478260869574                        0,021739130434782608                        12,325795636683553                        1,6369505757794538                        -24,01958                        -24,01958                        -24,01958                        671,7202268430997                        1200746,8104626085                        80636,31416292331                        1200746,8104626085                        80636,31416292336                        527,3003780718333
+1,0                        0,45                        0,053043478260869574                        0,02565217391304348                        12,335784591333663                        1,6371214356366734                        -23,535087                        -23,535087                        -23,535087                        706,6994328922494                        1224039,4791994977                        80685,52640130166                        1224039,4791994977                        80685,52640130167                        554,7590548204158
+1,0                        0,45                        0,053043478260869574                        0,029565217391304348                        12,33559584514855                        1,637118204568659                        -23,104836                        -23,104836                        -23,104836                        741,6786389413985                        1247332,1479363877                        80752,29436596732                        1247332,1479363877                        80752,29436596727                        582,2177315689978
+1,0                        0,45                        0,053043478260869574                        0,03347826086956522                        12,329094883990413                        1,6370069781131023                        -22,713336                        -22,713336                        -22,713336                        776,6578449905484                        1270624,8166732779                        80839,29604906605                        1270624,8166732779                        80839,29604906608                        609,6764083175805
+1,0                        0,45                        0,053043478260869574                        0,03739130434782609                        12,318534369903313                        1,6368265481778193                        -22,351326                        -22,351326                        -22,351326                        811,6370510396971                        1293917,4854101671                        80949,20944274313                        1293917,4854101671                        80949,20944274313                        637,1350850661622
+1,0                        0,45                        0,053043478260869574                        0,04130434782608696                        12,302774056054085                        1,6365578606684237                        -22,02052                        -22,02052                        -22,02052                        846,6162570888472                        1317210,1541470573                        81084,7125391444                        1317210,1541470573                        81084,71253914437                        664,593761814745
+1,0                        0,45                        0,053043478260869574                        0,04521739130434783                        12,28483218632114                        1,6362528341429325                        -21,710182                        -21,710182                        -21,710182                        881,5954631379959                        1340502,8228839468                        81248,48333041517                        1340502,8228839468                        81248,48333041518                        692,0524385633267
+1,0                        0,45                        0,053043478260869574                        0,0491304347826087                        12,266267517495887                        1,635938180115396                        -21,414518                        -21,414518                        -21,414518                        916,574669187146                        1363795,4916208372                        81443,19980870087                        1363795,4916208372                        81443,1998087008                        719,5111153119096
+1,0                        0,45                        0,053043478260869574                        0,053043478260869574                        12,247371951856223                        1,6356189260934322                        -21,131759                        -21,131759                        -21,131759                        951,5538752362946                        1387088,1603577272                        81671,53996614744                        1387088,1603577272                        81671,5399661475                        746,9697920604913
+1,0                        0,45                        0,053043478260869574                        0,05695652173913044                        12,228344569215006                        1,6352984782919917                        -20,860507                        -20,860507                        -20,860507                        986,5330812854442                        1410380,8290946165                        81936,1817949001                        1410380,8290946165                        81936,18179490013                        774,4284688090737
+1,0                        0,45                        0,053043478260869574                        0,06086956521739131                        12,209328727899349                        1,6349792663521618                        -20,59961                        -20,59961                        -20,59961                        1021,5122873345932                        1433673,4978315064                        82239,80328710462                        1433673,4978315064                        82239,80328710465                        801,8871455576557
+1,0                        0,45                        0,053043478260869574                        0,06478260869565218                        12,190421233670707                        1,634662910956393                        -20,348123                        -20,348123                        -20,348123                        1056,4914933837426                        1456966,166568396                        82585,08243490632                        1456966,166568396                        82585,08243490625                        829,345822306238
+1,0                        0,45                        0,053043478260869574                        0,06869565217391305                        12,171690619139572                        1,634350540774853                        -20,105249                        -20,105249                        -20,105249                        1091,4706994328922                        1480258,835305286                        82974,6972304509                        1480258,835305286                        82974,69723045087                        856,8044990548203
+1,0                        0,45                        0,053043478260869574                        0,07260869565217391                        12,153187999244567                        1,6340429804330954                        -19,870283                        -19,870283                        -19,870283                        1126,4499054820415                        1503551,5040421763                        83411,32566588405                        1503551,5040421763                        83411,3256658841                        884,2631758034025
+1,0                        0,45                        0,053043478260869574                        0,07652173913043478                        12,134945107380034                        1,6337407229339753                        -19,642652                        -19,642652                        -19,642652                        1161,429111531191                        1526844,172779066                        83897,645733351                        1526844,1727790663                        83897,64573335105                        911,7218525519849
+1,0                        0,45                        0,053043478260869574                        0,08043478260869565                        12,116986971177758                        1,6334441440564456                        -19,42182                        -19,42182                        -19,42182                        1196,40831758034                        1550136,8415159555                        84436,33542499736                        1550136,8415159555                        84436,3354249973                        939,1805293005671
+1,0                        0,45                        0,053043478260869574                        0,08434782608695653                        12,099328543577647                        1,6331534489288724                        -19,20734                        -19,20734                        -19,20734                        1231,3875236294896                        1573429,510252846                        85030,07273296863                        1573429,510252846                        85030,07273296869                        966,6392060491494
+1,0                        0,45                        0,053043478260869574                        0,08826086956521739                        12,081980104260449                        1,6328687633065007                        -18,998797                        -18,998797                        -18,998797                        1266,3667296786384                        1596722,1789897352                        85681,53564941019                        1596722,1789897352                        85681,5356494102                        994,0978827977312
+1,0                        0,45                        0,053043478260869574                        0,09217391304347826                        12,064944126889548                        1,6325900837149119                        -18,795899                        -18,795899                        -18,795899                        1301,3459357277884                        1620014,8477266259                        86393,40216646853                        1620014,8477266259                        86393,4021664685                        1021,5565595463139
+1,0                        0,45                        0,053043478260869574                        0,09608695652173914                        12,04822364816549                        1,632317415774662                        -18,598328                        -18,598328                        -18,598328                        1336,3251417769372                        1643307,5164635153                        87168,35027628778                        1643307,5164635153                        87168,3502762878                        1049,0152362948957
+1,0                        0,45                        0,053043478260869574                        0,1                        12,031819860491902                        1,6320507350182598                        -18,40577                        -18,40577                        -18,40577                        1371,3043478260872                        1666600,1852004058                        88009,0579710144                        1666600,1852004058                        88009,05797101445                        1076,4739130434784
+1,0                        0,45                        0,05695652173913044                        0,01                        12,243012760008808                        1,635545419423487                        -25,192351                        -25,192351                        -25,192351                        601,2173913043486                        1199058,7218980298                        86510,10144927536                        1199058,7218980298                        86510,10144927543                        471,95565217391356
+1,0                        0,45                        0,05695652173913044                        0,01391304347826087                        12,378925956850717                        1,637862556950462                        -24,234651                        -24,234651                        -24,234651                        635,8903591682424                        1221744,9585609923                        86522,60403645886                        1221744,9585609923                        86522,60403645886                        499,1739319470703
+1,0                        0,45                        0,05695652173913044                        0,01782608695652174                        12,441487072956221                        1,6389464047369404                        -23,569425                        -23,569425                        -23,569425                        670,5633270321359                        1244431,1952239545                        86544,54501187                        1244431,1952239545                        86544,54501187004                        526,3922117202267
+1,0                        0,45                        0,05695652173913044                        0,021739130434782608                        12,46961397154779                        1,6394371664722915                        -23,044339                        -23,044339                        -23,044339                        705,2362948960298                        1267117,4318869167                        86578,5789221976                        1267117,4318869167                        86578,57892219769                        553,6104914933834
+1,0                        0,45                        0,05695652173913044                        0,02565217391304348                        12,479179102209628                        1,6396045466306184                        -22,599681                        -22,599681                        -22,599681                        739,9092627599242                        1289803,6685498792                        86627,36031413061                        1289803,6685498792                        86627,36031413067                        580,8287712665405
+1,0                        0,45                        0,05695652173913044                        0,029565217391304348                        12,477843195358291                        1,6395811548187138                        -22,207072                        -22,207072                        -22,207072                        774,5822306238189                        1312489,9052128412                        86693,54373435878                        1312489,9052128412                        86693,54373435877                        608,0470510396977
+1,0                        0,45                        0,05695652173913044                        0,03347826086956522                        12,469743572055162                        1,639439432704718                        -21,851171                        -21,851171                        -21,851171                        809,2551984877132                        1335176,1418758032                        86779,7837295704                        1335176,1418758032                        86779,78372957032                        635,2653308128548
+1,0                        0,45                        0,05695652173913044                        0,03739130434782609                        12,457295488399453                        1,639221968681376                        -21,522857                        -21,522857                        -21,522857                        843,9281663516068                        1357862,3785387648                        86888,7348464546                        1357862,3785387648                        86888,7348464546                        662,4836105860113
+1,0                        0,45                        0,05695652173913044                        0,04130434782608696                        12,441542654154649                        1,6389473724120884                        -21,217588                        -21,217588                        -21,217588                        878,6011342155011                        1380548,6152017273                        87023,05163170044                        1380548,6152017273                        87023,05163170044                        689,7018903591684
+1,0                        0,45                        0,05695652173913044                        0,04521739130434783                        12,421137091699357                        1,6385926739708132                        -20,93791                        -20,93791                        -20,93791                        913,274102079395                        1403234,8518646897                        87185,38863199705                        1403234,8518646897                        87185,3886319971                        716,9201701323251
+1,0                        0,45                        0,05695652173913044                        0,0491304347826087                        12,40007428042282                        1,6382277433898977                        -20,671347                        -20,671347                        -20,671347                        947,9470699432887                        1425921,088527652                        87378,40039403345                        1425921,088527652                        87378,4003940335                        744,1384499054817
+1,0                        0,45                        0,05695652173913044                        0,053043478260869574                        12,378671306194677                        1,6378581671893502                        -20,416231                        -20,416231                        -20,416231                        982,6200378071841                        1448607,3251906137                        87604,74146449832                        1448607,3251906137                        87604,7414644983                        771,3567296786395
+1,0                        0,45                        0,05695652173913044                        0,05695652173913044                        12,357145543264838                        1,6374877469993439                        -20,171253                        -20,171253                        -20,171253                        1017,2930056710778                        1471293,5618535765                        87867,06639008113                        1471293,5618535765                        87867,06639008109                        798,5750094517962
+1,0                        0,45                        0,05695652173913044                        0,06086956521739131                        12,335644868655406                        1,6371190437722598                        -19,935383                        -19,935383                        -19,935383                        1051,9659735349721                        1493979,798516538                        88168,0297174703                        1493979,798516538                        88168,02971747034                        825,7932892249531
+1,0                        0,45                        0,05695652173913044                        0,06478260869565218                        12,31427939941561                        1,636753939041215                        -19,707741                        -19,707741                        -19,707741                        1086,6389413988659                        1516666,0351795002                        88510,28599335573                        1516666,0351795002                        88510,2859933557                        853,0115689981097
+1,0                        0,45                        0,05695652173913044                        0,06869565217391305                        12,293123706807497                        1,6363936836716664                        -19,487606                        -19,487606                        -19,487606                        1121,3119092627596                        1539352,2718424625                        88896,48976442574                        1539352,2718424625                        88896,48976442566                        880,2298487712663
+1,0                        0,45                        0,05695652173913044                        0,07260869565217391                        12,272231922798696                        1,6360391644686973                        -19,274353                        -19,274353                        -19,274353                        1155,984877126654                        1562038,508505425                        89329,29557736946                        1562038,508505425                        89329,2955773695                        907,4481285444234
+1,0                        0,45                        0,05695652173913044                        0,07652173913043478                        12,251639447427083                        1,6356909392604404                        -19,06747                        -19,06747                        -19,06747                        1190,6578449905478                        1584724,7451683872                        89811,35797887617                        1584724,7451683872                        89811,35797887611                        934,6664083175801
+1,0                        0,45                        0,05695652173913044                        0,08043478260869565                        12,231372970348012                        1,6353494112018356                        -18,866482                        -18,866482                        -18,866482                        1225,330812854443                        1607410,9818313492                        90345,3315156344                        1607410,9818313492                        90345,3315156344                        961,8846880907377
+1,0                        0,45                        0,05695652173913044                        0,08434782608695653                        12,211448837380837                        1,6350148041088488                        -18,670992                        -18,670992                        -18,670992                        1260,0037807183367                        1630097,2184943117                        90933,8707343339                        1630097,2184943117                        90933,87073433393                        989,1029678638944
+1,0                        0,45                        0,05695652173913044                        0,08826086956521739                        12,19187653933347                        1,6346872238779933                        -18,480669                        -18,480669                        -18,480669                        1294,6767485822306                        1652783,4551572734                        91579,63018166272                        1652783,4551572734                        91579,63018166272                        1016,321247637051
+1,0                        0,45                        0,05695652173913044                        0,09217391304347826                        12,172661702253155                        1,6343667103360437                        -18,295209                        -18,295209                        -18,295209                        1329,3497164461248                        1675469,6918202362                        92285,26440431063                        1675469,6918202362                        92285,26440431054                        1043,539527410208
+1,0                        0,45                        0,05695652173913044                        0,09608695652173914                        12,153805764782053                        1,6340532330443023                        -18,114364                        -18,114364                        -18,114364                        1364,0226843100186                        1698155,9284831977                        93053,42794896619                        1698155,9284831977                        93053,42794896608                        1070,7578071833645
+1,0                        0,45                        0,05695652173913044                        0,1                        12,135309849392456                        1,6337467565455903                        -17,937847                        -17,937847                        -17,937847                        1398,695652173913                        1720842,1651461602                        93886,77536231867                        1720842,1651461602                        93886,77536231876                        1097,9760869565216
+1,0                        0,45                        0,06086956521739131                        0,01                        12,357988427346072                        1,6375022273685211                        -24,216149                        -24,216149                        -24,216149                        635,6521739130436                        1266054,68343333                        92452,9710144929                        1266054,68343333                        92452,97101449293                        498,9869565217392
+1,0                        0,45                        0,06086956521739131                        0,01391304347826087                        12,50187393185846                        1,6400026659190388                        -23,297599                        -23,297599                        -23,297599                        670,0189035916821                        1288145,1062091205                        92465,36317647043                        1288145,1062091205                        92465,3631764704                        525,9648393194705
+1,0                        0,45                        0,06086956521739131                        0,01782608695652174                        12,567974860542245                        1,6411700355053758                        -22,669458                        -22,669458                        -22,669458                        704,3856332703209                        1310235,5289849113                        92487,11036505259                        1310235,5289849113                        92487,11036505263                        552,9427221172019
+1,0                        0,45                        0,06086956521739131                        0,021739130434782608                        12,597466610087896                        1,6416945824078997                        -22,179495                        -22,179495                        -22,179495                        738,7523629489598                        1332325,9517607023                        92520,84368147138                        1332325,9517607023                        92520,84368147132                        579,9206049149334
+1,0                        0,45                        0,06086956521739131                        0,02565217391304348                        12,607182783508726                        1,6418678931151323                        -21,768119                        -21,768119                        -21,768119                        773,1190926275993                        1354416,3745364926                        92569,19422695981                        1354416,3745364926                        92569,19422695985                        606,8984877126655
+1,0                        0,45                        0,06086956521739131                        0,029565217391304348                        12,605264876792758                        1,6418336633234134                        -21,407071                        -21,407071                        -21,407071                        807,485822306238                        1376506,7973122832                        92634,79310274999                        1376506,7973122832                        92634,79310274991                        633,8763705103968
+1,0                        0,45                        0,06086956521739131                        0,03347826086956522                        12,596114417911513                        1,6416704823568637                        -21,081117                        -21,081117                        -21,081117                        841,852551984877                        1398597,2200880735                        92720,27141007454                        1398597,2200880735                        92720,27141007458                        660,8542533081285
+1,0                        0,45                        0,06086956521739131                        0,03739130434782609                        12,582305845860574                        1,6414246457467556                        -20,781245                        -20,781245                        -20,781245                        876,2192816635156                        1420687,6428638638                        92828,2602501659                        1420687,6428638638                        92828,26025016587                        687,8321361058597
+1,0                        0,45                        0,06086956521739131                        0,04130434782608696                        12,565434498150793                        1,6411249585344572                        -20,501719                        -20,501719                        -20,501719                        910,5860113421552                        1442778,0656396544                        92961,39072425662                        1442778,0656396544                        92961,39072425668                        714,8100189035918
+1,0                        0,45                        0,06086956521739131                        0,04521739130434783                        12,544710969953545                        1,6407578677813996                        -20,243582                        -20,243582                        -20,243582                        944,9527410207942                        1464868,4884154447                        93122,29393357919                        1464868,4884154447                        93122,2939335792                        741,7879017013234
+1,0                        0,45                        0,06086956521739131                        0,0491304347826087                        12,521624633006045                        1,6403502583087126                        -20,001805                        -20,001805                        -20,001805                        979,3194706994328                        1486958,9111912358                        93313,60097936568                        1486958,9111912358                        93313,60097936566                        768,7657844990547
+1,0                        0,45                        0,06086956521739131                        0,053043478260869574                        12,498165189423887                        1,6399375118220323                        -19,770306                        -19,770306                        -19,770306                        1013,6862003780718                        1509049,3339670268                        93537,94296284918                        1509049,3339670268                        93537,94296284925                        795,7436672967864
+1,0                        0,45                        0,06086956521739131                        0,05695652173913044                        12,474566525013234                        1,6395238004372985                        -19,547862                        -19,547862                        -19,547862                        1048,0529300567107                        1531139,7567428162                        93797,95098526186                        1531139,7567428162                        93797,95098526186                        822,7215500945179
+1,0                        0,45                        0,06086956521739131                        0,06086956521739131                        12,450993278482272                        1,6391120307424538                        -19,333496                        -19,333496                        -19,333496                        1082,41965973535                        1553230,1795186074                        94096,25614783625                        1553230,1795186074                        94096,25614783622                        849,6994328922498
+1,0                        0,45                        0,06086956521739131                        0,06478260869565218                        12,427562819247907                        1,6387042464543025                        -19,1264                        -19,1264                        -19,1264                        1116,786389413989                        1575320,6022943978                        94435,48955180492                        1575320,6022943978                        94435,489551805                        876,6773156899812
+1,0                        0,45                        0,06086956521739131                        0,06869565217391305                        12,404355859252979                        1,6383018268503322                        -18,925924                        -18,925924                        -18,925924                        1151,153119092627                        1597411,0250701883                        94818,2822984003                        1597411,0250701883                        94818,28229840027                        903,6551984877123
+1,0                        0,45                        0,06086956521739131                        0,07260869565217391                        12,381433022388412                        1,6379057842227012                        -18,731485                        -18,731485                        -18,731485                        1185,5198487712664                        1619501,4478459787                        95247,265488855                        1619501,4478459787                        95247,26548885499                        930,6330812854442
+1,0                        0,45                        0,06086956521739131                        0,07652173913043478                        12,358834778417727                        1,6375167692848316                        -18,542602                        -18,542602                        -18,542602                        1219,8865784499053                        1641591,870621769                        95725,0702244013                        1641591,870621769                        95725,07022440126                        957,6109640831756
+1,0                        0,45                        0,06086956521739131                        0,08043478260869565                        12,336586352982554                        1,6371351617730663                        -18,358909                        -18,358909                        -18,358909                        1254,2533081285449                        1663682,29339756                        96254,3276062716                        1663682,29339756                        96254,32760627175                        984,5888468809077
+1,0                        0,45                        0,06086956521739131                        0,08434782608695653                        12,314708982362127                        1,6367612673696836                        -18,180014                        -18,180014                        -18,180014                        1288,6200378071835                        1685772,7161733503                        96837,66873569884                        1685772,7161733503                        96837,66873569872                        1011,566729678639
+1,0                        0,45                        0,06086956521739131                        0,08826086956521739                        12,293214008266911                        1,6363952187096487                        -18,005612                        -18,005612                        -18,005612                        1322,9867674858217                        1707863,138949141                        97477,72471391494                        1707863,138949141                        97477,7247139149                        1038,54461247637
+1,0                        0,45                        0,06086956521739131                        0,09217391304347826                        12,27210664631834                        1,6360370423504977                        -17,835467                        -17,835467                        -17,835467                        1357,3534971644613                        1729953,561724932                        98177,12664215283                        1729953,561724932                        98177,126642153                        1065,522495274102
+1,0                        0,45                        0,06086956521739131                        0,09608695652173914                        12,251391139912252                        1,635686747690779                        -17,669303                        -17,669303                        -17,669303                        1391,7202268431004                        1752043,9845007223                        98938,50562164465                        1752043,9845007223                        98938,5056216447                        1092,5003780718337
+1,0                        0,45                        0,06086956521739131                        0,1                        12,231065021760305                        1,6353442307889543                        -17,506979                        -17,506979                        -17,506979                        1426,086956521739                        1774134,407276513                        99764,49275362308                        1774134,407276513                        99764,49275362308                        1119,4782608695652
+1,0                        0,45                        0,06478260869565218                        0,01                        12,457679668948636                        1,6392286739345232                        -23,350361                        -23,350361                        -23,350361                        670,0869565217396                        1331867,2341031753                        98395,84057971014                        1331867,2341031753                        98395,84057971009                        526,0182608695656
+1,0                        0,45                        0,06478260869565218                        0,01391304347826087                        12,609768303735109                        1,6419140532349934                        -22,464551                        -22,464551                        -22,464551                        704,1474480151237                        1353372,3673967246                        98408,12231648224                        1353372,3673967246                        98408,12231648229                        552,7557466918721
+1,0                        0,45                        0,06478260869565218                        0,01782608695652174                        12,679801857310844                        1,6431709419228462                        -21,867518                        -21,867518                        -21,867518                        738,2079395085067                        1374877,5006902732                        98429,67571823526                        1374877,5006902732                        98429,67571823523                        579,4932325141777
+1,0                        0,45                        0,06478260869565218                        0,021739130434782608                        12,711103705242783                        1,6437367666410596                        -21,407115                        -21,407115                        -21,407115                        772,2684310018899                        1396382,6339838218                        98463,10844074536                        1396382,6339838218                        98463,1084407453                        606,2307183364835
+1,0                        0,45                        0,06478260869565218                        0,02565217391304348                        12,721435179805367                        1,6439240665338921                        -21,023836                        -21,023836                        -21,023836                        806,3289224952745                        1417887,767277371                        98511,02813978902                        1417887,767277371                        98511,02813978902                        632,9682041587905
+1,0                        0,45                        0,06478260869565218                        0,029565217391304348                        12,719397823104947                        1,643887109880402                        -20,689516                        -20,689516                        -20,689516                        840,3894139886578                        1439392,9005709197                        98576,04247114123                        1439392,9005709197                        98576,04247114123                        659,7056899810964
+1,0                        0,45                        0,06478260869565218                        0,03347826086956522                        12,709652697321086                        1,6437104828016331                        -20,389                        -20,389                        -20,389                        874,4499054820419                        1460898,033864469                        98660,75909057895                        1460898,033864469                        98660,759090579                        686,4431758034029
+1,0                        0,45                        0,06478260869565218                        0,03739130434782609                        12,694928191716677                        1,6434440613985142                        -20,113354                        -20,113354                        -20,113354                        908,5103969754255                        1482403,1671580174                        98767,78565387728                        1482403,1671580172                        98767,78565387723                        713,180661625709
+1,0                        0,45                        0,06478260869565218                        0,04130434782608696                        12,676917402789693                        1,6431189265833137                        -19,856921                        -19,856921                        -19,856921                        942,5708884688091                        1503908,300451566                        98899,72981681269                        1503908,300451566                        98899,72981681275                        739,9181474480151
+1,0                        0,45                        0,06478260869565218                        0,04521739130434783                        12,656720925569347                        1,6427553185052335                        -19,615905                        -19,615905                        -19,615905                        976,6313799621933                        1525413,4337451148                        99059,19923516118                        1525413,4337451148                        99059,19923516114                        766,6556332703217
+1,0                        0,45                        0,06478260869565218                        0,0491304347826087                        12,6320305169027                        1,6423122239092516                        -19,39538                        -19,39538                        -19,39538                        1010,6918714555771                        1546918,567038664                        99248,80156469828                        1546918,567038664                        99248,80156469834                        793,393119092628
+1,0                        0,45                        0,06478260869565218                        0,053043478260869574                        12,606902188690512                        1,6418628846097387                        -19,184225                        -19,184225                        -19,184225                        1044,752362948961                        1568423,7003322132                        99471,14446120014                        1568423,7003322132                        99471,14446120022                        820,1306049149345
+1,0                        0,45                        0,06478260869565218                        0,05695652173913044                        12,581606178497296                        1,6414122026858788                        -18,981216                        -18,981216                        -18,981216                        1078,8128544423444                        1589928,8336257613                        99728,8355804427                        1589928,8336257613                        99728,83558044265                        846,8680907372403
+1,0                        0,45                        0,06478260869565218                        0,06086956521739131                        12,556315223794943                        1,640963282986                        -18,785473                        -18,785473                        -18,785473                        1112,873345935728                        1611433,9669193102                        100024,48257820224                        1611433,9669193102                        100024,48257820225                        873,6055765595464
+1,0                        0,45                        0,06478260869565218                        0,06478260869565218                        12,53116021015427                        1,640518446129098                        -18,596211                        -18,596211                        -18,596211                        1146,9338374291115                        1632939,1002128595                        100360,69311025416                        1632939,1002128595                        100360,6931102542                        900,3430623818525
+1,0                        0,45                        0,06478260869565218                        0,06869565217391305                        12,50622968868442                        1,6400792334826964                        -18,412829                        -18,412829                        -18,412829                        1180,9943289224952                        1654444,233506408                        100740,07483237491                        1654444,233506408                        100740,07483237487                        927,0805482041588
+1,0                        0,45                        0,06478260869565218                        0,07260869565217391                        12,481587851156366                        1,639646736093285                        -18,234811                        -18,234811                        -18,234811                        1215,054820415879                        1675949,3667999567                        101165,2354003406                        1675949,3667999567                        101165,23540034048                        953,8180340264649
+1,0                        0,45                        0,06478260869565218                        0,07652173913043478                        12,45728103975081                        1,6392217165112544                        -18,061705                        -18,061705                        -18,061705                        1249,1153119092628                        1697454,500093505                        101638,78246992647                        1697454,500093505                        101638,78246992643                        980,5555198487713
+1,0                        0,45                        0,06478260869565218                        0,08043478260869565                        12,43333871342966                        1,6388046316663976                        -17,893174                        -17,893174                        -17,893174                        1283,1758034026466                        1718959,6333870543                        102163,32369690898                        1718959,6333870543                        102163,32369690911                        1007,2930056710776
+1,0                        0,45                        0,06478260869565218                        0,08434782608695653                        12,409784461641786                        1,6383958293563043                        -17,728857                        -17,728857                        -17,728857                        1317,2362948960306                        1740464,766680603                        102741,46673706407                        1740464,766680603                        102741,46673706421                        1034,030491493384
+1,0                        0,45                        0,06478260869565218                        0,08826086956521739                        12,386631342242552                        1,6379954698479755                        -17,568486                        -17,568486                        -17,568486                        1351,2967863894141                        1761969,8999741522                        103375,81924616739                        1761969,8999741522                        103375,81924616743                        1060,76797731569
+1,0                        0,45                        0,06478260869565218                        0,09217391304347826                        12,363887706684318                        1,637603629551997                        -17,411808                        -17,411808                        -17,411808                        1385,3572778827977                        1783475,0332677008                        104068,98887999497                        1783475,0332677008                        104068,98887999511                        1087,5054631379962
+1,0                        0,45                        0,06478260869565218                        0,09608695652173914                        12,341555283164624                        1,6372202697626088                        -17,258672                        -17,258672                        -17,258672                        1419,417769376182                        1804980,1665612499                        104823,58329432327                        1804980,1665612499                        104823,58329432333                        1114,2429489603028
+1,0                        0,45                        0,06478260869565218                        0,1                        12,319634774472162                        1,6368453343585718                        -17,108902                        -17,108902                        -17,108902                        1453,4782608695657                        1826485,2998547985                        105642,21014492749                        1826485,2998547985                        105642,21014492739                        1140,980434782609
+1,0                        0,45                        0,06869565217391305                        0,01                        12,543899082174981                        1,6407435092685687                        -22,577037                        -22,577037                        -22,577037                        704,5217391304345                        1396506,9191528996                        104338,71014492749                        1396506,9191528996                        104338,71014492758                        553,0495652173911
+1,0                        0,45                        0,06869565217391305                        0,01391304347826087                        12,704307591566161                        1,6436137064100107                        -21,718912                        -21,718912                        -21,718912                        738,2759924385634                        1417437,193587311                        104350,88145649385                        1417437,193587311                        104350,88145649384                        579,5466540642723
+1,0                        0,45                        0,06869565217391305                        0,01782608695652174                        12,77855859519271                        1,6449644912773485                        -21,148244                        -21,148244                        -21,148244                        772,0302457466915                        1438367,468021722                        104372,24107141797                        1438367,468021722                        104372,24107141802                        606,0437429111529
+1,0                        0,45                        0,06869565217391305                        0,021739130434782608                        12,81202094094025                        1,6455777287459468                        -20,71296                        -20,71296                        -20,71296                        805,7844990548199                        1459297,742456133                        104405,37320001962                        1459297,742456133                        104405,37320001962                        632,5408317580336
+1,0                        0,45                        0,06869565217391305                        0,02565217391304348                        12,823340507593155                        1,6457857975943369                        -20,353626                        -20,353626                        -20,353626                        839,5387523629488                        1480228,016890544                        104452,86205261787                        1480228,016890544                        104452,86205261784                        659,0379206049148
+1,0                        0,45                        0,06869565217391305                        0,029565217391304348                        12,821565795849464                        1,6457531552252702                        -20,042141                        -20,042141                        -20,042141                        873,2930056710777                        1501158,2913249547                        104517,29183953266                        1501158,2913249547                        104517,29183953264                        685,535009451796
+1,0                        0,45                        0,06869565217391305                        0,03347826086956522                        12,81160513745973                        1,6455700917109277                        -19,763416                        -19,763416                        -19,763416                        907,0472589792062                        1522088,5657593657                        104601,24677108308                        1522088,5657593657                        104601,24677108308                        712,0320982986768
+1,0                        0,45                        0,06869565217391305                        0,03739130434782609                        12,796335261343732                        1,645289925716554                        -19,508584                        -19,508584                        -19,508584                        940,8015122873342                        1543018,8401937764                        104707,31105758854                        1543018,8401937764                        104707,31105758852                        738,5291871455573
+1,0                        0,45                        0,06869565217391305                        0,04130434782608696                        12,777547233398561                        1,6449459999744414                        -19,272041                        -19,272041                        -19,272041                        974,5557655954632                        1563949,1146281874                        104838,06890936875                        1563949,1146281874                        104838,06890936873                        765,0262759924385
+1,0                        0,45                        0,06869565217391305                        0,04521739130434783                        12,75640595202159                        1,6445600438379773                        -19,050043                        -19,050043                        -19,050043                        1008,3100189035915                        1584879,3890625983                        104996,10453674302                        1584879,3890625983                        104996,10453674306                        791,5233648393194
+1,0                        0,45                        0,06869565217391305                        0,0491304347826087                        12,732275374546122                        1,6441208779696297                        -18,843436                        -18,843436                        -18,843436                        1042,06427221172                        1605809,6634970095                        105184,00215003066                        1605809,6634970095                        105184,00215003068                        818,0204536862001
+1,0                        0,45                        0,06869565217391305                        0,053043478260869574                        12,705812864896895                        1,6436409529938405                        -18,649928                        -18,649928                        -18,649928                        1075,818525519849                        1626739,9379314207                        105404,34595955072                        1626739,9379314207                        105404,34595955076                        844,5175425330813
+1,0                        0,45                        0,06869565217391305                        0,05695652173913044                        12,679137388420349                        1,6431589576835608                        -18,463846                        -18,463846                        -18,463846                        1109,5727788279771                        1647670,2123658315                        105659,72017562349                        1647670,2123658315                        105659,72017562353                        871,0146313799621
+1,0                        0,45                        0,06869565217391305                        0,06086956521739131                        12,652439046673212                        1,642678363593094                        -18,28433                        -18,28433                        -18,28433                        1143,3270321361058                        1668600,4868002424                        105952,70900856808                        1668600,4868002424                        105952,70900856795                        897,5117202268431
+1,0                        0,45                        0,06869565217391305                        0,06478260869565218                        12,625856400495286                        1,642201668387752                        -18,110657                        -18,110657                        -18,110657                        1177,0812854442343                        1689530,7612346532                        106285,89666870346                        1689530,7612346532                        106285,89666870359                        924,0088090737238
+1,0                        0,45                        0,06869565217391305                        0,06869565217391305                        12,599489259953007                        1,641730640874646                        -17,942223                        -17,942223                        -17,942223                        1210,8355387523625                        1710461,0356690646                        106661,86736634966                        1710461,0356690646                        106661,86736634948                        950,5058979206046
+1,0                        0,45                        0,06869565217391305                        0,07260869565217391                        12,573403238931832                        1,6412664150496818                        -17,77862                        -17,77862                        -17,77862                        1244,5897920604914                        1731391,3101034758                        107083,20531182588                        1731391,3101034758                        107083,20531182605                        977,0029867674858
+1,0                        0,45                        0,06869565217391305                        0,07652173913043478                        12,547652670451509                        1,6408099073332656                        -17,619381                        -17,619381                        -17,619381                        1278,3440453686196                        1752321,5845378863                        107552,49471545148                        1752321,5845378863                        107552,49471545158                        1003,5000756143663
+1,0                        0,45                        0,06869565217391305                        0,08043478260869565                        12,522270792547104                        1,640361647601085                        -17,464206                        -17,464206                        -17,464206                        1312,0982986767485                        1773251,8589722975                        108072,31978754608                        1773251,8589722975                        108072,31978754612                        1029,9971644612476
+1,0                        0,45                        0,06869565217391305                        0,08434782608695653                        12,497284062891753                        1,6399220378550994                        -17,312758                        -17,312758                        -17,312758                        1345,8525519848768                        1794182,1334067082                        108645,26473842902                        1794182,1334067082                        108645,26473842902                        1056,4942533081282
+1,0                        0,45                        0,06869565217391305                        0,08826086956521739                        12,472707166947178                        1,6394912673392141                        -17,16482                        -17,16482                        -17,16482                        1379,6068052930052                        1815112,4078411192                        109273,91377841948                        1815112,4078411192                        109273,9137784196                        1082,991342155009
+1,0                        0,45                        0,06869565217391305                        0,09217391304347826                        12,448550781719229                        1,6390694518917484                        -17,020154                        -17,020154                        -17,020154                        1413,3610586011341                        1836042,6822755304                        109960,85111783711                        1836042,6822755304                        109960,85111783724                        1109,4884310018904
+1,0                        0,45                        0,06869565217391305                        0,09608695652173914                        12,424818749724736                        1,6386565862960918                        -16,878619                        -16,878619                        -16,878619                        1447,1153119092626                        1856972,9567099412                        110708,66096700156                        1856972,9567099412                        110708,6609670016                        1135,985519848771
+1,0                        0,45                        0,06869565217391305                        0,1                        12,40151418974041                        1,6382526522908925                        -16,740007                        -16,740007                        -16,740007                        1480,8695652173915                        1877903,2311443526                        111519,92753623181                        1877903,2311443526                        111519,9275362317                        1162,4826086956523
+1,0                        0,45                        0,07260869565217391                        0,01                        12,618196593201752                        1,6420646465290085                        -21,881889                        -21,881889                        -21,881889                        738,9565217391306                        1459984,2838278392                        110281,57971014487                        1459984,2838278392                        110281,57971014483                        580,0808695652175
+1,0                        0,45                        0,07260869565217391                        0,01391304347826087                        12,786956598106789                        1,6451181346636339                        -21,047404                        -21,047404                        -21,047404                        772,4045368620033                        1480350,0362443905                        110293,64059650546                        1480350,0362443905                        110293,64059650555                        606,3375614366727
+1,0                        0,45                        0,07260869565217391                        0,01782608695652174                        12,865624804375964                        1,646565809846036                        -20,499297                        -20,499297                        -20,499297                        805,8525519848765                        1500715,7886609412                        110314,80642460061                        1500715,7886609414                        110314,8064246007                        632,594253308128
+1,0                        0,45                        0,07260869565217391                        0,021739130434782608                        12,90151788246675                        1,6472313267128857                        -20,085549                        -20,085549                        -20,085549                        839,30056710775                        1521081,5410774925                        110347,63795929342                        1521081,5410774925                        110347,63795929342                        658,8509451795837
+1,0                        0,45                        0,07260869565217391                        0,02565217391304348                        12,914126823072413                        1,6474658529529493                        -19,746786                        -19,746786                        -19,746786                        872,7485822306237                        1541447,2934940434                        110394,69596544685                        1541447,2934940436                        110394,69596544694                        685,1076370510397
+1,0                        0,45                        0,07260869565217391                        0,029565217391304348                        12,912926328600262                        1,6474435073534308                        -19,454971                        -19,454971                        -19,454971                        906,1965973534967                        1561813,045910594                        110458,54120792389                        1561813,045910594                        110458,54120792396                        711,3643289224949
+1,0                        0,45                        0,07260869565217391                        0,03347826086956522                        12,90306185323924                        1,6472600240781858                        -19,195074                        -19,195074                        -19,195074                        939,6446124763708                        1582178,7983271447                        110541,73445158746                        1582178,7983271447                        110541,7344515875                        737,6210207939511
+1,0                        0,45                        0,07260869565217391                        0,03739130434782609                        12,887558838705843                        1,6469721338412766                        -18,95826                        -18,95826                        -18,95826                        973,0926275992431                        1602544,550743696                        110646,83646129988                        1602544,550743696                        110646,83646129988                        763,8777126654059
+1,0                        0,45                        0,07260869565217391                        0,04130434782608696                        12,868302058610286                        1,6466153431495183                        -18,73896                        -18,73896                        -18,73896                        1006,5406427221171                        1622910,3031602465                        110776,40800192497                        1622910,3031602465                        110776,40800192488                        790,1344045368619
+1,0                        0,45                        0,07260869565217391                        0,04521739130434783                        12,846514189160311                        1,646212739524005                        -18,53351                        -18,53351                        -18,53351                        1039,9886578449907                        1643276,055576797                        110933,00983832491                        1643276,055576797                        110933,0098383249                        816,3910964083177
+1,0                        0,45                        0,07260869565217391                        0,0491304347826087                        12,823026779395809                        1,6457800266128546                        -18,339305                        -18,339305                        -18,339305                        1073,4366729678638                        1663641,8079933485                        111119,20273536291                        1663641,8079933485                        111119,20273536294                        842,6477882797732
+1,0                        0,45                        0,07260869565217391                        0,053043478260869574                        12,795717444383476                        1,6452786023402355                        -18,160745                        -18,160745                        -18,160745                        1106,8846880907374                        1684007,5604098993                        111337,54745790173                        1684007,5604098993                        111337,54745790182                        868,9044801512289
+1,0                        0,45                        0,07260869565217391                        0,05695652173913044                        12,76794303403747                        1,6447705274899858                        -17,98947                        -17,98947                        -17,98947                        1140,3327032136106                        1704373,3128264497                        111590,60477080422                        1704373,3128264497                        111590,60477080422                        895,1611720226842
+1,0                        0,45                        0,07260869565217391                        0,06086956521739131                        12,740106757670482                        1,64426324590341                        -17,824184                        -17,824184                        -17,824184                        1173,780718336484                        1724739,0652430006                        111880,93543893361                        1724739,0652430006                        111880,93543893356                        921,4178638941398
+1,0                        0,45                        0,07260869565217391                        0,06478260869565218                        12,712355912230054                        1,643759453635116                        -17,66422                        -17,66422                        -17,66422                        1207,2287334593573                        1745104,8176595513                        112211,10022715265                        1745104,8176595513                        112211,10022715252                        947,6745557655955
+1,0                        0,45                        0,07260869565217391                        0,06869565217391305                        12,68479914961026                        1,6432611081761261                        -17,509001                        -17,509001                        -17,509001                        1240,67674858223                        1765470,570076102                        112583,65990032423                        1765470,570076102                        112583,6599003241                        973,9312476370505
+1,0                        0,45                        0,07260869565217391                        0,07260869565217391                        12,657511453046341                        1,6427695311846469                        -17,358111                        -17,358111                        -17,358111                        1274,124763705104                        1785836,322492653                        113001,17522331128                        1785836,322492653                        113001,17522331128                        1000,1879395085066
+1,0                        0,45                        0,07260869565217391                        0,07652173913043478                        12,63054965098161                        1,6422856981264926                        -17,211149                        -17,211149                        -17,211149                        1307,5727788279773                        1806202,0749092037                        113466,20696097659                        1806202,0749092037                        113466,20696097675                        1026,4446313799622
+1,0                        0,45                        0,07260869565217391                        0,08043478260869565                        12,603954464366987                        1,6418102812644277                        -17,06777                        -17,06777                        -17,06777                        1341,0207939508502                        1826567,827325754                        113981,31587818339                        1826567,827325754                        113981,31587818348                        1052,7013232514175
+1,0                        0,45                        0,07260869565217391                        0,08434782608695653                        12,57775044193802                        1,6413436542572624                        -16,927784                        -16,927784                        -16,927784                        1374,4688090737238                        1846933,5797423054                        114549,06273979414                        1846933,5797423054                        114549,06273979416                        1078,9580151228733
+1,0                        0,45                        0,07260869565217391                        0,08826086956521739                        12,551959251047162                        1,6408861331860238                        -16,790891                        -16,790891                        -16,790891                        1407,9168241965972                        1867299,332158856                        115172,00831067168                        1867299,332158856                        115172,00831067178                        1105,214706994329
+1,0                        0,45                        0,07260869565217391                        0,09217391304347826                        12,526591754410102                        1,6404378379337963                        -16,656932                        -16,656932                        -16,656932                        1441,3648393194705                        1887665,0845754072                        115852,71335567925                        1887665,0845754072                        115852,71335567936                        1131,4713988657843
+1,0                        0,45                        0,07260869565217391                        0,09608695652173914                        12,501654905578379                        1,6399988171086186                        -16,525746                        -16,525746                        -16,525746                        1474,8128544423441                        1908030,836991958                        116593,73863967993                        1908030,836991958                        116593,73863967988                        1157,72809073724
+1,0                        0,45                        0,07260869565217391                        0,1                        12,477153078910014                        1,6395690727162069                        -16,397139                        -16,397139                        -16,397139                        1508,2608695652173                        1928396,589408509                        117397,64492753608                        1928396,589408509                        117397,64492753602                        1183,9847826086955
+1,0                        0,45                        0,07652173913043478                        0,01                        12,681908453674938                        1,643208943539558                        -21,253413                        -21,253413                        -21,253413                        773,3913043478265                        1522309,8733733322                        116224,44927536248                        1522309,8733733322                        116224,4492753625                        607,1121739130438
+1,0                        0,45                        0,07652173913043478                        0,01391304347826087                        12,8589798184046                        1,6464429425259557                        -20,439305                        -20,439305                        -20,439305                        806,5330812854447                        1542121,3468314745                        116236,39973651714                        1542121,3468314745                        116236,39973651718                        633,1284688090741
+1,0                        0,45                        0,07652173913043478                        0,01782608695652174                        12,942199432305319                        1,6479893680426234                        -19,910658                        -19,910658                        -19,910658                        839,6748582230623                        1561932,8202896167                        116257,37177778342                        1561932,8202896167                        116257,37177778338                        659,144763705104
+1,0                        0,45                        0,07652173913043478                        0,021739130434782608                        12,980728167509426                        1,6487109205970443                        -19,515526                        -19,515526                        -19,515526                        872,81663516068                        1581744,293747759                        116289,90271856758                        1581744,293747759                        116289,90271856758                        685,1610586011338
+1,0                        0,45                        0,07652173913043478                        0,02565217391304348                        12,994863373250803                        1,6489765169969581                        -19,19459                        -19,19459                        -19,19459                        905,9584120982992                        1601555,7672059012                        116336,52987827612                        1601555,7672059012                        116336,5298782762                        711,1773534971649
+1,0                        0,45                        0,07652173913043478                        0,029565217391304348                        12,994491902455021                        1,6489695311709556                        -18,91984                        -18,91984                        -18,91984                        939,100189035917                        1621367,240664044                        116399,79057631534                        1621367,240664044                        116399,79057631528                        737,1936483931948
+1,0                        0,45                        0,07652173913043478                        0,03347826086956522                        12,984985972793364                        1,6487908741414155                        -18,676316                        -18,676316                        -18,676316                        972,2419659735355                        1641178,7141221864                        116482,22213209176                        1641178,7141221864                        116482,22213209167                        763,2099432892253
+1,0                        0,45                        0,07652173913043478                        0,03739130434782609                        12,969511929912683                        1,6485005050536277                        -18,455202                        -18,455202                        -18,455202                        1005,3837429111528                        1660990,187580328                        116586,36186501138                        1660990,187580328                        116586,36186501133                        789,2262381852549
+1,0                        0,45                        0,07652173913043478                        0,04130434782608696                        12,950042509207044                        1,64813596569628                        -18,250986                        -18,250986                        -18,250986                        1038,5255198487712                        1680801,6610384702                        116714,74709448103                        1680801,6610384702                        116714,74709448112                        815,2425330812853
+1,0                        0,45                        0,07652173913043478                        0,04521739130434783                        12,927864981575436                        1,6477218157069333                        -18,06001                        -18,06001                        -18,06001                        1071,66729678639                        1700613,1344966125                        116869,91513990703                        1700613,1344966125                        116869,91513990691                        841,258827977316
+1,0                        0,45                        0,07652173913043478                        0,0491304347826087                        12,903850168179384                        1,6472746784803132                        -17,87973                        -17,87973                        -17,87973                        1104,8090737240082                        1720424,607954755                        117054,40332069536                        1720424,607954755                        117054,40332069536                        867,2751228733464
+1,0                        0,45                        0,07652173913043478                        0,053043478260869574                        12,877345763889956                        1,6467827938452937                        -17,711105                        -17,711105                        -17,711105                        1137,950850661626                        1740236,0814128972                        117270,74895625252                        1740236,0814128972                        117270,74895625244                        893,2914177693764
+1,0                        0,45                        0,07652173913043478                        0,05695652173913044                        12,848715121188647                        1,6462533566947077                        -17,552873                        -17,552873                        -17,552873                        1171,0926275992435                        1760047,5548710397                        117521,4893659852                        1760047,5548710397                        117521,48936598518                        919,3077126654063
+1,0                        0,45                        0,07652173913043478                        0,06086956521739131                        12,819975549273536                        1,6457239122944225                        -17,400148                        -17,400148                        -17,400148                        1204,2344045368627                        1779859,028329182                        117809,16186929969                        1779859,028329182                        117809,16186929953                        945,3240075614372
+1,0                        0,45                        0,07652173913043478                        0,06478260869565218                        12,79128521103796                        1,6451973958122725                        -17,252291                        -17,252291                        -17,252291                        1237,3761814744803                        1799670,501787324                        118136,30378560197                        1799670,501787324                        118136,30378560182                        971,340302457467
+1,0                        0,45                        0,07652173913043478                        0,06869565217391305                        12,762760246942614                        1,6446759312025174                        -17,108763                        -17,108763                        -17,108763                        1270,517958412098                        1819481,975245467                        118505,45243429877                        1819481,975245467                        118505,4524342987                        997,3565973534971
+1,0                        0,45                        0,07652173913043478                        0,07260869565217391                        12,734482844628422                        1,6441609923414189                        -16,969171                        -16,969171                        -16,969171                        1303,6597353497164                        1839293,4487036085                        118919,14513479672                        1839293,4487036085                        118919,14513479685                        1023,3728922495275
+1,0                        0,45                        0,07652173913043478                        0,07652173913043478                        12,70651592341268                        1,6436536808467515                        -16,833121                        -16,833121                        -16,833121                        1336,8015122873348                        1859104,9221617507                        119379,91920650183                        1859104,9221617507                        119379,9192065019                        1049,3891871455578
+1,0                        0,45                        0,07652173913043478                        0,08043478260869565                        12,678903512157397                        1,6431547398015895                        -16,700313                        -16,700313                        -16,700313                        1369,9432892249533                        1878916,3956198934                        119890,31196882053                        1878916,3956198934                        119890,31196882049                        1075,4054820415884
+1,0                        0,45                        0,07652173913043478                        0,08434782608695653                        12,651675048123089                        1,64266463777747                        -16,570555                        -16,570555                        -16,570555                        1403,085066162571                        1898727,869078036                        120452,86074115918                        1898727,869078036                        120452,86074115931                        1101,4217769376182
+1,0                        0,45                        0,07652173913043478                        0,08826086956521739                        12,624855153170252                        1,642183749036816                        -16,443552                        -16,443552                        -16,443552                        1436,2268431001887                        1918539,342536178                        121070,10284292397                        1918539,342536178                        121070,10284292397                        1127,438071833648
+1,0                        0,45                        0,07652173913043478                        0,09217391304347826                        12,598457888374195                        1,641712252932718                        -16,319134                        -16,319134                        -16,319134                        1469,368620037807                        1938350,8159943204                        121744,57559352138                        1938350,8159943204                        121744,57559352147                        1153,4543667296784
+1,0                        0,45                        0,07652173913043478                        0,09608695652173914                        12,572490791827551                        1,6412502093717276                        -16,197204                        -16,197204                        -16,197204                        1502,5103969754255                        1958162,2894524625                        122478,81631235847                        1958162,2894524625                        122478,81631235851                        1179,470661625709
+1,0                        0,45                        0,07652173913043478                        0,1                        12,546959061540026                        1,640797635129072                        -16,077622                        -16,077622                        -16,077622                        1535,6521739130442                        1977973,7629106052                        123275,36231884056                        1977973,7629106052                        123275,36231884068                        1205,4869565217396
+1,0                        0,45                        0,08043478260869565                        0,01                        12,736191815229827                        1,6441920563272632                        -20,682255                        -20,682255                        -20,682255                        807,8260869565216                        1583494,2330347116                        122167,31884057978                        1583494,2330347116                        122167,31884057974                        634,1434782608695
+1,0                        0,45                        0,08043478260869565                        0,01391304347826087                        12,921478832585905                        1,64760277597744                        -19,885861                        -19,885861                        -19,885861                        840,6616257088845                        1602761,57681207                        122179,15887652873                        1602761,57681207                        122179,15887652864                        659,9193761814743
+1,0                        0,45                        0,08043478260869565                        0,01782608695652174                        13,009326633511979                        1,6492487620540257                        -19,374134                        -19,374134                        -19,374134                        873,4971644612472                        1622028,92058943                        122199,93713096603                        1622028,92058943                        122199,93713096606                        685,695274102079
+1,0                        0,45                        0,08043478260869565                        0,021739130434782608                        13,05064335109179                        1,6500291593790168                        -18,995208                        -18,995208                        -18,995208                        906,3327032136101                        1641296,2643667893                        122232,16747784156                        1641296,2643667893                        122232,16747784156                        711,471172022684
+1,0                        0,45                        0,08043478260869565                        0,02565217391304348                        13,066494599081373                        1,650329609286524                        -18,689814                        -18,689814                        -18,689814                        939,1682419659736                        1660563,6081441485                        122278,36379110502                        1660563,6081441485                        122278,36379110493                        737,2470699432893
+1,0                        0,45                        0,08043478260869565                        0,029565217391304348                        13,067155917256368                        1,6503421567101635                        -18,430001                        -18,430001                        -18,430001                        972,0037807183371                        1679830,9519215077                        122341,03994470673                        1679830,9519215077                        122341,03994470669                        763,0229678638946
+1,0                        0,45                        0,08043478260869565                        0,03347826086956522                        13,058224425243118                        1,6501727813610636                        -18,200809                        -18,200809                        -18,200809                        1004,839319470699                        1699098,2956988676                        122422,70981259592                        1699098,2956988676                        122422,709812596                        788,7988657844987
+1,0                        0,45                        0,08043478260869565                        0,03739130434782609                        13,043000224466564                        1,6498844962012382                        -17,993449                        -17,993449                        -17,993449                        1037,6748582230618                        1718365,6394762264                        122525,88726872284                        1718365,6394762264                        122525,8872687228                        814,5747637051035
+1,0                        0,45                        0,08043478260869565                        0,04130434782608696                        13,023538356237431                        1,6495167480544835                        -17,802489                        -17,802489                        -17,802489                        1070,510396975425                        1737632,9832535856                        122653,0861870371                        1737632,9832535856                        122653,08618703701                        840,3506616257087
+1,0                        0,45                        0,08043478260869565                        0,04521739130434783                        13,001187953393806                        1,6490955057284082                        -17,624266                        -17,624266                        -17,624266                        1103,345935727788                        1756900,3270309449                        122806,82044148874                        1756900,3270309449                        122806,82044148866                        866,1265595463136
+1,0                        0,45                        0,08043478260869565                        0,0491304347826087                        12,97686149109658                        1,648638348655373                        -17,456258                        -17,456258                        -17,456258                        1136,181474480151                        1776167,6708083043                        122989,60390602773                        1776167,6708083043                        122989,6039060277                        891,9024574669186
+1,0                        0,45                        0,08043478260869565                        0,053043478260869574                        12,951193077720978                        1,6481574836422475                        -17,296677                        -17,296677                        -17,296677                        1169,0170132325145                        1795435,0145856633                        123203,95045460341                        1795435,0145856633                        123203,95045460341                        917,6783553875239
+1,0                        0,45                        0,08043478260869565                        0,05695652173913044                        12,92207414384516                        1,6476138686430395                        -17,149655                        -17,149655                        -17,149655                        1201,8525519848772                        1814702,358363023                        123452,37396116601                        1814702,358363023                        123452,37396116614                        943,4542533081287
+1,0                        0,45                        0,08043478260869565                        0,06086956521739131                        12,89263697985995                        1,6470663710066575                        -17,008078                        -17,008078                        -17,008078                        1234,6880907372397                        1833969,7021403818                        123737,38829966544                        1833969,7021403818                        123737,38829966549                        969,2301512287331
+1,0                        0,45                        0,08043478260869565                        0,06478260869565218                        12,863206933344294                        1,6465210904582064                        -16,870981                        -16,870981                        -16,870981                        1267,5236294896024                        1853237,045917741                        124061,50734405145                        1853237,045917741                        124061,50734405145                        995,006049149338
+1,0                        0,45                        0,08043478260869565                        0,06869565217391305                        12,83390839047366                        1,645980332952112                        -16,737848                        -16,737848                        -16,737848                        1300,3591682419656                        1872504,3896951003                        124427,24496827353                        1872504,3896951003                        124427,24496827366                        1020,7819470699429
+1,0                        0,45                        0,08043478260869565                        0,07260869565217391                        12,804830407369                        1,6454457206059927                        -16,60831                        -16,60831                        -16,60831                        1333,194706994329                        1891771,7334724595                        124837,11504628212                        1891771,7334724595                        124837,11504628208                        1046,5578449905483
+1,0                        0,45                        0,08043478260869565                        0,07652173913043478                        12,776039868847109                        1,6449184446803966                        -16,482032                        -16,482032                        -16,482032                        1366,0302457466917                        1911039,077249819                        125293,63145202691                        1911039,077249819                        125293,63145202705                        1072,333742911153
+1,0                        0,45                        0,08043478260869565                        0,08043478260869565                        12,747587641190444                        1,644399385554148                        -16,35867                        -16,35867                        -16,35867                        1398,865784499055                        1930306,4210271782                        125799,30805945763                        1930306,4210271782                        125799,3080594575                        1098,1096408317583
+1,0                        0,45                        0,08043478260869565                        0,08434782608695653                        12,719506663908899                        1,6438890839349696                        -16,23806                        -16,23806                        -16,23806                        1431,701323251418                        1949573,7648045374                        126356,65874252423                        1949573,7648045374                        126356,6587425241                        1123,8855387523631
+1,0                        0,45                        0,08043478260869565                        0,08826086956521739                        12,691823742743384                        1,6433879604040778                        -16,119945                        -16,119945                        -16,119945                        1464,53686200378                        1968841,1085818966                        126968,19737517617                        1968841,1085818966                        126968,19737517614                        1149,6614366729673
+1,0                        0,45                        0,08043478260869565                        0,09217391304347826                        12,664555140455805                        1,6428962383604477                        -16,004194                        -16,004194                        -16,004194                        1497,3724007561434                        1988108,4523592566                        127636,43783136368                        1988108,4523592566                        127636,4378313636                        1175,4373345935726
+1,0                        0,45                        0,08043478260869565                        0,09608695652173914                        12,63771254269461                        1,6424140547793844                        -15,890649                        -15,890649                        -15,890649                        1530,2079395085063                        2007375,7961366153                        128363,89398503678                        2007375,7961366153                        128363,89398503678                        1201,2132325141774
+1,0                        0,45                        0,08043478260869565                        0,1                        12,611302674468277                        1,641941455047061                        -15,779188                        -15,779188                        -15,779188                        1563,04347826087                        2026643,139913975                        129153,07971014472                        2026643,139913975                        129153,07971014464                        1226,9891304347827
+1,0                        0,45                        0,08434782608695653                        0,01                        12,782055342273015                        1,6450284438361014                        -20,160723                        -20,160723                        -20,160723                        842,2608695652182                        1643547,9080573134                        128110,1884057974                        1643547,9080573134                        128110,18840579734                        661,1747826086962
+1,0                        0,45                        0,08434782608695653                        0,01391304347826087                        12,975418506548133                        1,6486112749327833                        -19,379847                        -19,379847                        -19,379847                        874,7901701323252                        1662281,1776496891                        128121,91801654034                        1662281,1776496891                        128121,91801654035                        686,7102835538752
+1,0                        0,45                        0,08434782608695653                        0,01782608695652174                        13,06792521076342                        1,650356754053496                        -18,882944                        -18,882944                        -18,882944                        907,319470699433                        1681014,4472420653                        128142,50248414879                        1681014,4472420653                        128142,50248414883                        712,2457844990549
+1,0                        0,45                        0,08434782608695653                        0,021739130434782608                        13,112137473196572                        1,6511979595653172                        -18,518224                        -18,518224                        -18,518224                        939,8487712665401                        1699747,716834441                        128174,43223711559                        1699747,716834441                        128174,43223711554                        737,7812854442341
+1,0                        0,45                        0,08434782608695653                        0,02565217391304348                        13,129850105588474                        1,651536218912836                        -18,22648                        -18,22648                        -18,22648                        972,3780718336487                        1718480,9864268173                        128220,19770393433                        1718480,9864268173                        128220,1977039342                        763,3167863894142
+1,0                        0,45                        0,08434782608695653                        0,029565217391304348                        13,131713332674563                        1,6515718424137733                        -17,979782                        -17,979782                        -17,979782                        1004,907372400756                        1737214,256019192                        128282,28931309794                        1737214,256019192                        128282,28931309783                        788,8522873345934
+1,0                        0,45                        0,08434782608695653                        0,03347826086956522                        13,123534141523562                        1,651415520903297                        -17,763212                        -17,763212                        -17,763212                        1037,4366729678645                        1755947,5256115682                        128363,19749310036                        1755947,5256115682                        128363,19749310044                        814,3877882797736
+1,0                        0,45                        0,08434782608695653                        0,03739130434782609                        13,108738686760608                        1,6511331341677022                        -17,568037                        -17,568037                        -17,568037                        1069,9659735349715                        1774680,795203943                        128465,41267243425                        1774680,795203943                        128465,41267243425                        839,9232892249526
+1,0                        0,45                        0,08434782608695653                        0,04130434782608696                        13,089470300783628                        1,650766123847886                        -17,388794                        -17,388794                        -17,388794                        1102,4952741020795                        1793414,0647963192                        128591,42527959337                        1793414,0647963192                        128591,42527959326                        865,4587901701324
+1,0                        0,45                        0,08434782608695653                        0,04521739130434783                        13,067132802974358                        1,6503417181377515                        -17,221862                        -17,221862                        -17,221862                        1135,0245746691874                        1812147,3343886952                        128743,72574307084                        1812147,3343886952                        128743,72574307075                        890,994291115312
+1,0                        0,45                        0,08434782608695653                        0,0491304347826087                        13,04267899059344                        1,649878419093925                        -17,064732                        -17,064732                        -17,064732                        1167,5538752362952                        1830880,6039810705                        128924,80449136019                        1830880,6039810705                        128924,80449136005                        916,5297920604918
+1,0                        0,45                        0,08434782608695653                        0,053043478260869574                        13,01677024693767                        1,6493890652440748                        -16,915676                        -16,915676                        -16,915676                        1200,083175803403                        1849613,8735734462                        129137,15195295433                        1849613,8735734462                        129137,15195295439                        942,0652930056714
+1,0                        0,45                        0,08434782608695653                        0,05695652173913044                        12,988581107434129                        1,6488584171473202                        -16,776029                        -16,776029                        -16,776029                        1232,6124763705109                        1868347,1431658217                        129383,25855634682                        1868347,1431658217                        129383,25855634674                        967,6007939508511
+1,0                        0,45                        0,08434782608695653                        0,06086956521739131                        12,958627064034594                        1,6482965897267636                        -16,644376                        -16,644376                        -16,644376                        1265,1417769376185                        1887080,4127581972                        129665,61473003143                        1887080,4127581972                        129665,61473003145                        993,1362948960306
+1,0                        0,45                        0,08434782608695653                        0,06478260869565218                        12,928632543879543                        1,6477361298479967                        -16,516892                        -16,516892                        -16,516892                        1297,6710775047256                        1905813,6823505731                        129986,71090250075                        1905813,6823505731                        129986,71090250075                        1018,6717958412096
+1,0                        0,45                        0,08434782608695653                        0,06869565217391305                        12,89872891736102                        1,6471795034852537                        -16,393117                        -16,393117                        -16,393117                        1330,200378071834                        1924546,9519429484                        130349,03750224828                        1924546,9519429484                        130349,03750224828                        1044,2072967863896
+1,0                        0,45                        0,08434782608695653                        0,07260869565217391                        12,869015781804476                        1,6466285510531016                        -16,272611                        -16,272611                        -16,272611                        1362,7296786389416                        1943280,2215353241                        130755,08495776764                        1943280,2215353241                        130755,08495776767                        1069,742797731569
+1,0                        0,45                        0,08434782608695653                        0,07652173913043478                        12,839564611997725                        1,6460845658155665                        -16,155074                        -16,155074                        -16,155074                        1395,2589792060494                        1962013,4911277003                        131207,343697552                        1962013,4911277003                        131207,34369755187                        1095,2782986767488
+1,0                        0,45                        0,08434782608695653                        0,08043478260869565                        12,810429676891086                        1,6455485044038274                        -16,040208                        -16,040208                        -16,040208                        1427,788279773157                        1980746,7607200765                        131708,30415009483                        1980746,7607200765                        131708,30415009486                        1120,8137996219282
+1,0                        0,45                        0,08434782608695653                        0,08434782608695653                        12,781650051050867                        1,6450210298482593                        -15,927786                        -15,927786                        -15,927786                        1460,317580340265                        1999480,030312451                        132260,4567438892                        1999480,030312451                        132260,45674388926                        1146,3493005671082
+1,0                        0,45                        0,08434782608695653                        0,08826086956521739                        12,753251342908206                        1,6445025486072367                        -15,81773                        -15,81773                        -15,81773                        1492,8468809073722                        2018213,2999048273                        132866,29190742844                        2018213,2999048273                        132866,29190742833                        1171,8848015122871
+1,0                        0,45                        0,08434782608695653                        0,09217391304347826                        12,725256509198193                        1,6439934117601547                        -15,70977                        -15,70977                        -15,70977                        1525,37618147448                        2036946,5694972035                        133528,30006920607                        2036946,5694972035                        133528,30006920607                        1197,420302457467
+1,0                        0,45                        0,08434782608695653                        0,09608695652173914                        12,697678827853672                        1,6434937890047228                        -15,603784                        -15,603784                        -15,603784                        1557,9054820415881                        2055679,8390895783                        134248,97165771518                        2055679,8390895783                        134248,97165771507                        1222,9558034026466
+1,0                        0,45                        0,08434782608695653                        0,1                        12,670525999804989                        1,643003746030469                        -15,499709                        -15,499709                        -15,499709                        1590,434782608696                        2074413,1086819544                        135030,7971014493                        2074413,1086819544                        135030,7971014493                        1248,4913043478264
+1,0                        0,45                        0,08826086956521739                        0,01                        12,820381649419055                        1,6457313794513202                        -19,68245                        -19,68245                        -19,68245                        876,695652173913                        1702481,4436864739                        134053,05797101447                        1702481,4436864739                        134053,0579710144                        688,2060869565217
+1,0                        0,45                        0,08826086956521739                        0,01391304347826087                        13,021644996507284                        1,6494810184021282                        -18,915282                        -18,915282                        -18,915282                        908,9187145557659                        1720690,6008078386                        134064,67715655206                        1720690,6008078386                        134064,67715655206                        713,5011909262762
+1,0                        0,45                        0,08826086956521739                        0,01782608695652174                        13,11880455552897                        1,6513251977606282                        -18,431447                        -18,431447                        -18,431447                        941,1417769376179                        1738899,757929204                        134085,06783733147                        1738899,757929204                        134085,06783733136                        738,7962948960301
+1,0                        0,45                        0,08826086956521739                        0,021739130434782608                        13,165982742778644                        1,6522284442849866                        -18,079262                        -18,079262                        -18,079262                        973,3648393194702                        1757108,9150505697                        134116,69699638974                        1757108,9150505697                        134116,69699638986                        764,0913988657841
+1,0                        0,45                        0,08826086956521739                        0,02565217391304348                        13,185667893226556                        1,6526068039177755                        -17,79957                        -17,79957                        -17,79957                        1005,5879017013231                        1775318,072171935                        134162,03161676324                        1775318,072171935                        134162,03161676318                        789,3865028355386
+1,0                        0,45                        0,08826086956521739                        0,029565217391304348                        13,188865649380187                        1,6526683483193845                        -17,564473                        -17,564473                        -17,564473                        1037,8109640831758                        1793527,2292933012                        134223,53868148933                        1793527,2292933012                        134223,53868148933                        814,6816068052931
+1,0                        0,45                        0,08826086956521739                        0,03347826086956522                        13,181583647561203                        1,6525282312086658                        -17,359091                        -17,359091                        -17,359091                        1070,0340264650283                        1811736,3864146662                        134303,68517360455                        1811736,3864146662                        134303,68517360452                        839,9767107750472
+1,0                        0,45                        0,08826086956521739                        0,03739130434782609                        13,16737192825125                        1,6522551167668516                        -17,174704                        -17,174704                        -17,174704                        1102,2570888468804                        1829945,543536031                        134404,93807614563                        1829945,543536031                        134404,9380761457                        865,2718147448011
+1,0                        0,45                        0,08826086956521739                        0,04130434782608696                        13,148453465572576                        1,6518922529230993                        -17,005872                        -17,005872                        -17,005872                        1134,4801512287331                        1848154,7006573963                        134529,76437214934                        1848154,7006573963                        134529,7643721495                        890,5669187145555
+1,0                        0,45                        0,08826086956521739                        0,04521739130434783                        13,126286775286536                        1,651468112599072                        -16,848985                        -16,848985                        -16,848985                        1166,7032136105863                        1866363,857778762                        134680,6310446528                        1866363,857778762                        134680,63104465287                        915,8620226843103
+1,0                        0,45                        0,08826086956521739                        0,0491304347826087                        13,101860110638869                        1,6510020188376617                        -16,701613                        -16,701613                        -16,701613                        1198,9262759924393                        1884573,0149001274                        134860,0050766924                        1884573,0149001274                        134860,00507669238                        941,1571266540648
+1,0                        0,45                        0,08826086956521739                        0,053043478260869574                        13,075867678050244                        1,6505075418606612                        -16,561961                        -16,561961                        -16,561961                        1231,1493383742916                        1902782,172021493                        135070,35345130507                        1902782,172021493                        135070,353451305                        966,4522306238189
+1,0                        0,45                        0,08826086956521739                        0,05695652173913044                        13,04873898296293                        1,6499931023437497                        -16,428805                        -16,428805                        -16,428805                        1263,3724007561439                        1920991,329142858                        135314,14315152768                        1920991,329142858                        135314,1431515277                        991,747334593573
+1,0                        0,45                        0,08826086956521739                        0,06086956521739131                        13,018425901858132                        1,6494202899143375                        -16,306039                        -16,306039                        -16,306039                        1295,5954631379966                        1939200,4862642232                        135593,84116039722                        1939200,4862642232                        135593,84116039707                        1017,0424385633272
+1,0                        0,45                        0,08826086956521739                        0,06478260869565218                        12,988020722733873                        1,648847887014636                        -16,187196                        -16,187196                        -16,187196                        1327,818525519849                        1957409,6433855884                        135911,91446094975                        1957409,6433855884                        135911,9144609497                        1042,3375425330812
+1,0                        0,45                        0,08826086956521739                        0,06869565217391305                        12,957664650599074                        1,648278573502179                        -16,071795                        -16,071795                        -16,071795                        1360,0415879017012                        1975618,8005069543                        136270,83003622273                        1975618,8005069543                        136270,83003622288                        1067,6326465028353
+1,0                        0,45                        0,08826086956521739                        0,07260869565217391                        12,927463547116096                        1,647714329982312                        -15,959418                        -15,959418                        -15,959418                        1392,264650283554                        1993827,9576283195                        136673,05486925298                        1993827,9576283195                        136673,0548692529                        1092,9277504725899
+1,0                        0,45                        0,08826086956521739                        0,07652173913043478                        12,897494856311596                        1,6471565787114801                        -15,849767                        -15,849767                        -15,849767                        1424,487712665406                        2012037,1147496847                        137121,05594307726                        2012037,1147496847                        137121,05594307737                        1118,2228544423438
+1,0                        0,45                        0,08826086956521739                        0,08043478260869565                        12,867816720501363                        1,646606362362554                        -15,742582                        -15,742582                        -15,742582                        1456,7107750472587                        2030246,2718710501                        137617,30024073197                        2030246,2718710501                        137617,30024073189                        1143,517958412098
+1,0                        0,45                        0,08826086956521739                        0,08434782608695653                        12,838471686046573                        1,646064419284378                        -15,637672                        -15,637672                        -15,637672                        1488,933837429111                        2048455,4289924155                        138164,2547452542                        2048455,4289924155                        138164,25474525406                        1168,8130623818522
+1,0                        0,45                        0,08826086956521739                        0,08826086956521739                        12,809490962236513                        1,6455312673704119                        -15,534883                        -15,534883                        -15,534883                        1521,1568998109635                        2066664,5861137805                        138764,38643968067                        2066664,5861137805                        138764,3864396805                        1194,1081663516063
+1,0                        0,45                        0,08826086956521739                        0,09217391304347826                        12,780898977837612                        1,6450072915504086                        -15,433997                        -15,433997                        -15,433997                        1553,3799621928163                        2084873,7432351464                        139420,16230704807                        2084873,7432351464                        139420,1623070482                        1219,4032703213609
+1,0                        0,45                        0,08826086956521739                        0,09608695652173914                        12,75271148142078                        1,6444927116965697                        -15,334899                        -15,334899                        -15,334899                        1585,6030245746695                        2103082,9003565116                        140134,04933039352                        2103082,9003565116                        140134,04933039367                        1244,6983742911154
+1,0                        0,45                        0,08826086956521739                        0,1                        12,724939673219568                        1,643987660777003                        -15,237456                        -15,237456                        -15,237456                        1617,8260869565224                        2121292,057477877                        140908,5144927536                        2121292,057477877                        140908,5144927536                        1269,9934782608702
+1,0                        0,45                        0,09217391304347826                        0,01                        12,851946351002752                        1,64631300889328                        -19,242124                        -19,242124                        -19,242124                        911,1304347826091                        1760305,3851675286                        139995,92753623187                        1760305,3851675286                        139995,9275362319                        715,2373913043481
+1,0                        0,45                        0,09217391304347826                        0,01391304347826087                        13,060906429941246                        1,6502236231591672                        -18,487151                        -18,487151                        -18,487151                        943,0472589792056                        1778000,2977500313                        140007,43629656354                        1778000,2977500313                        140007,43629656345                        740,2920982986765
+1,0                        0,45                        0,09217391304347826                        0,01782608695652174                        13,162682108204852                        1,6521650891702329                        -18,014905                        -18,014905                        -18,014905                        974,9640831758029                        1795695,2103325333                        140027,63319051408                        1795695,2103325333                        140027,6331905141                        765,3468052930052
+1,0                        0,45                        0,09217391304347826                        0,021739130434782608                        13,212865649558923                        1,653130981431651                        -17,673854                        -17,673854                        -17,673854                        1006,8809073724003                        1813390,122915036                        140058,9617556637                        1813390,122915036                        140058,96175566386                        790,4015122873342
+1,0                        0,45                        0,09217391304347826                        0,02565217391304348                        13,234605046328014                        1,6535511399525624                        -17,404849                        -17,404849                        -17,404849                        1038,797731568998                        1831085,0354975378                        140103,86552959247                        1831085,0354975378                        140103,86552959256                        815,4562192816635
+1,0                        0,45                        0,09217391304347826                        0,029565217391304348                        13,239241563609918                        1,653640885089303                        -17,180064                        -17,180064                        -17,180064                        1070,714555765595                        1848779,9480800405                        140164,78804988065                        1848779,9480800405                        140164,78804988047                        840,510926275992
+1,0                        0,45                        0,09217391304347826                        0,03347826086956522                        13,232974581490192                        1,6535195916793413                        -16,984653                        -16,984653                        -16,984653                        1102,6313799621928                        1866474,8606625425                        140244,17285410888                        1866474,8606625425                        140244,17285410894                        865,5656332703214
+1,0                        0,45                        0,09217391304347826                        0,03739130434782609                        13,219473063254837                        1,653258572795217                        -16,809886                        -16,809886                        -16,809886                        1134,54820415879                        1884169,7732450445                        140344,46347985693                        1884169,7732450445                        140344,46347985681                        890,6203402646503
+1,0                        0,45                        0,09217391304347826                        0,04130434782608696                        13,201036892153263                        1,6529028058507027                        -16,65033                        -16,65033                        -16,65033                        1166,4650283553872                        1901864,685827546                        140468,10346470552                        1901864,685827546                        140468,1034647054                        915,6750472589789
+1,0                        0,45                        0,09217391304347826                        0,04521739130434783                        13,17917353976364                        1,6524818830346133                        -16,502458                        -16,502458                        -16,502458                        1198,3818525519846                        1919559,5984100488                        140617,53634623476                        1919559,5984100488                        140617,5363462346                        940,7297542533079
+1,0                        0,45                        0,09217391304347826                        0,0491304347826087                        13,154911200557196                        1,652016024499609                        -16,363796                        -16,363796                        -16,363796                        1230,298676748582                        1937254,5109925512                        140795,2056620249                        1937254,5109925512                        140795,20566202473                        965,784461247637
+1,0                        0,45                        0,09217391304347826                        0,053043478260869574                        13,128970811298705                        1,6515194101954895                        -16,232563                        -16,232563                        -16,232563                        1262,2155009451799                        1954949,4235750535                        141003,5549496558                        1954949,4235750535                        141003,55494965598                        990,8391682419663
+1,0                        0,45                        0,09217391304347826                        0,05695652173913044                        13,101868391143883                        1,6510021766109306                        -16,107474                        -16,107474                        -16,107474                        1294,1323251417766                        1972644,3361575555                        141245,02774670848                        1972644,3361575555                        141245,0277467083                        1015,8938752362947
+1,0                        0,45                        0,09217391304347826                        0,06086956521739131                        13,072468167686438                        1,6504429843919284                        -15,990519                        -15,990519                        -15,990519                        1326,0491493383745                        1990339,2487400577                        141522,06759076304                        1990339,2487400577                        141522,06759076304                        1040,948582230624
+1,0                        0,45                        0,09217391304347826                        0,06478260869565218                        13,041788681820057                        1,6498615774672398                        -15,879457                        -15,879457                        -15,879457                        1357,9659735349712                        2008034,161322559                        141837,1180193993                        2008034,161322559                        141837,11801939932                        1066,0032892249524
+1,0                        0,45                        0,09217391304347826                        0,06869565217391305                        13,011114960175833                        1,649282458072355                        -15,771563                        -15,771563                        -15,771563                        1389,8827977315684                        2025729,073905062                        142192,62257019742                        2025729,073905062                        142192,6225701975                        1091,0579962192812
+1,0                        0,45                        0,09217391304347826                        0,07260869565217391                        12,980556263632286                        1,6487076934619422                        -15,666534                        -15,666534                        -15,666534                        1421,7996219281665                        2043423,986487564                        142591,02478073863                        2043423,986487564                        142591,02478073846                        1116,1127032136108
+1,0                        0,45                        0,09217391304347826                        0,07652173913043478                        12,950197428681642                        1,6481388628193079                        -15,564026                        -15,564026                        -15,564026                        1453,7164461247637                        2061118,8990700666                        143034,76818860232                        2061118,8990700666                        143034,76818860217                        1141,1674102079396
+1,0                        0,45                        0,09217391304347826                        0,08043478260869565                        12,920100512923046                        1,6475770964615162                        -15,463817                        -15,463817                        -15,463817                        1485,633270321361                        2078813,8116525689                        143526,2963313691                        2078813,8116525689                        143526,29633136923                        1166,2221172022682
+1,0                        0,45                        0,09217391304347826                        0,08434782608695653                        12,890312963351246                        1,6470232355642944                        -15,365686                        -15,365686                        -15,365686                        1517,550094517958                        2096508,7242350709                        144068,05274661919                        2096508,7242350709                        144068,05274661919                        1191,276824196597
+1,0                        0,45                        0,09217391304347826                        0,08826086956521739                        12,860868944756582                        1,6464778620081617                        -15,269503                        -15,269503                        -15,269503                        1549,4669187145557                        2114203,636817573                        144662,48097193285                        2114203,636817573                        144662,48097193267                        1216,3315311909262
+1,0                        0,45                        0,09217391304347826                        0,09217391304347826                        12,831796109138319                        1,6459414278730737                        -15,175034                        -15,175034                        -15,175034                        1581,3837429111527                        2131898,5494000753                        145312,02454489016                        2131898,5494000753                        145312,0245448903                        1241,3862381852548
+1,0                        0,45                        0,09217391304347826                        0,09608695652173914                        12,803111752391818                        1,64541418735073                        -15,082217                        -15,082217                        -15,082217                        1613,30056710775                        2149593,4619825776                        146019,127003072                        2149593,4619825776                        146019,12700307195                        1266,4409451795839
+1,0                        0,45                        0,09217391304347826                        0,1                        12,774828434323535                        1,6448963032056185                        -14,990978                        -14,990978                        -14,990978                        1645,2173913043482                        2167288,3745650803                        146786,2318840578                        2167288,3745650803                        146786,23188405792                        1291,4956521739134
+1,0                        0,45                        0,09608695652173914                        0,01                        12,877435947304113                        1,6467844646519132                        -18,835242                        -18,835242                        -18,835242                        945,565217391304                        1817030,2777458152                        145938,79710144925                        1817030,2777458152                        145938,7971014494                        742,2686956521736
+1,0                        0,45                        0,09608695652173914                        0,01391304347826087                        13,093868164872234                        1,6508498165726044                        -18,091183                        -18,091183                        -18,091183                        977,1758034026471                        1834220,7199397755                        145950,19543657545                        1834220,7199397755                        145950,1954365755                        767,083005671078
+1,0                        0,45                        0,09608695652173914                        0,01782608695652174                        13,20019508886922                        1,6528865793867007                        -17,629327                        -17,629327                        -17,629327                        1008,7863894139887                        1851411,1621337356                        145970,19854369693                        1851411,1621337356                        145970,1985436969                        791,8973156899812
+1,0                        0,45                        0,09608695652173914                        0,021739130434782608                        13,253400071898204                        1,653915231898992                        -17,298177                        -17,298177                        -17,298177                        1040,3969754253303                        1868601,604327696                        146001,2265149377                        1868601,604327696                        146001,22651493782                        816,7116257088843
+1,0                        0,45                        0,09608695652173914                        0,02565217391304348                        13,277247955418721                        1,6543783208214142                        -17,038738                        -17,038738                        -17,038738                        1072,0075614366735                        1885792,046521656                        146045,6994424215                        1885792,046521656                        146045,69944242155                        841,5259357277887
+1,0                        0,45                        0,09608695652173914                        0,029565217391304348                        13,283402255702354                        1,6544980292998934                        -16,823185                        -16,823185                        -16,823185                        1103,6181474480152                        1902982,4887156163                        146106,03741827208                        1902982,4887156163                        146106,03741827197                        866,340245746692
+1,0                        0,45                        0,09608695652173914                        0,03347826086956522                        13,27824622029851                        1,6543977326581252                        -16,636673                        -16,636673                        -16,636673                        1135,2287334593575                        1920172,9309095764                        146184,66053461318                        1920172,9309095764                        146184,660534613                        891,1545557655957
+1,0                        0,45                        0,09608695652173914                        0,03739130434782609                        13,26555932729322                        1,6541511904441504                        -16,470515                        -16,470515                        -16,470515                        1166,8393194706998                        1937363,3731035357                        146283,98888356844                        1937363,3731035357                        146283,9888835686                        915,9688657844994
+1,0                        0,45                        0,09608695652173914                        0,04130434782608696                        13,24771372683705                        1,6538049957317231                        -16,319313                        -16,319313                        -16,319313                        1198,4499054820417                        1954553,8152974967                        146406,44255726176                        1954553,8152974967                        146406,44255726165                        940,7831758034026
+1,0                        0,45                        0,09608695652173914                        0,04521739130434783                        13,226268089717445                        1,6533898877310904                        -16,179526                        -16,179526                        -16,179526                        1230,0604914933838                        1971744,2574914566                        146554,44164781692                        1971744,2574914566                        146554,44164781706                        965,5974858223063
+1,0                        0,45                        0,09608695652173914                        0,0491304347826087                        13,202286003877674                        1,6529268864280795                        -16,048687                        -16,048687                        -16,048687                        1261,671077504726                        1988934,6996854167                        146730,40624735726                        1988934,6996854167                        146730,4062473574                        990,4117958412099
+1,0                        0,45                        0,09608695652173914                        0,053043478260869574                        13,176512953180007                        1,6524307330398418                        -15,925064                        -15,925064                        -15,925064                        1293,2816635160689                        2006125,1418793772                        146936,7564480068                        2006125,1418793772                        146936,75644800696                        1015,226105860114
+1,0                        0,45                        0,09608695652173914                        0,05695652173913044                        13,149485145679446                        1,6519120202240156                        -15,807369                        -15,807369                        -15,807369                        1324,8922495274105                        2023315,584073337                        147175,91234188946                        2023315,584073337                        147175,91234188929                        1040,0404158790172
+1,0                        0,45                        0,09608695652173914                        0,06086956521739131                        13,12115430396129                        1,6513700656773365                        -15,69547                        -15,69547                        -15,69547                        1356,5028355387524                        2040506,0262672969                        147450,29402112865                        2040506,0262672969                        147450,29402112865                        1064,8547258979206
+1,0                        0,45                        0,09608695652173914                        0,06478260869565218                        13,090320320295698                        1,650782296537856                        -15,591439                        -15,591439                        -15,591439                        1388,1134215500952                        2057696,4684612572                        147762,32157784855                        2057696,4684612572                        147762,3215778486                        1089,6690359168247
+1,0                        0,45                        0,09608695652173914                        0,06869565217391305                        13,059443440001644                        1,6501958877304579                        -15,490449                        -15,490449                        -15,490449                        1419,7240075614368                        2074886,9106552172                        148114,41510417213                        2074886,9106552172                        148114,4151041721                        1114,4833459357278
+1,0                        0,45                        0,09608695652173914                        0,07260869565217391                        13,028643764325567                        1,6496131339172964                        -15,392051                        -15,392051                        -15,392051                        1451,3345935727789                        2092077,3528491776                        148508,99469222408                        2092077,3528491776                        148508,99469222405                        1139,2976559546314
+1,0                        0,45                        0,09608695652173914                        0,07652173913043478                        12,998009016025597                        1,649035686458948                        -15,295996                        -15,295996                        -15,295996                        1482,9451795841214                        2109267,795043138                        148948,48043412756                        2109267,795043138                        148948,48043412768                        1164,1119659735352
+1,0                        0,45                        0,09608695652173914                        0,08043478260869565                        12,967604135782075                        1,648464744524052                        -15,202152                        -15,202152                        -15,202152                        1514,5557655954635                        2126458,2372370977                        149435,29242200623                        2126458,2372370977                        149435,29242200626                        1188,9262759924388
+1,0                        0,45                        0,09608695652173914                        0,08434782608695653                        12,937482778572324                        1,647901277788993                        -15,110203                        -15,110203                        -15,110203                        1546,1663516068052                        2143648,6794310575                        149971,85074798448                        2143648,6794310575                        149971,85074798434                        1213,7405860113422
+1,0                        0,45                        0,09608695652173914                        0,08826086956521739                        12,907682620626208                        1,647345943201004                        -15,020012                        -15,020012                        -15,020012                        1577,7769376181468                        2160839,1216250183                        150560,57550418505                        2160839,1216250183                        150560,5755041852                        1238,5548960302453
+1,0                        0,45                        0,09608695652173914                        0,09217391304347826                        12,878231906834996                        1,6467992120565076                        -14,931463                        -14,931463                        -14,931463                        1609,3875236294903                        2178029,563818978                        151203,88678273265                        2178029,563818978                        151203,88678273276                        1263,3692060491499
+1,0                        0,45                        0,09608695652173914                        0,09608695652173914                        12,849152500448008                        1,6462614297291576                        -14,844393                        -14,844393                        -14,844393                        1640,998109640832                        2195220,0060129385                        151904,20467575054                        2195220,0060129385                        151904,20467575057                        1288,183516068053
+1,0                        0,45                        0,09608695652173914                        0,1                        12,820458470046493                        1,6457327920343032                        -14,75877                        -14,75877                        -14,75877                        1672,608695652174                        2212410,4482068988                        152663,94927536225                        2212410,4482068988                        152663,94927536225                        1312,9978260869566
+1,0                        0,45                        0,1                        0,01                        12,89745663185754                        1,6471558686859558                        -18,458022                        -18,458022                        -18,458022                        980,0000000000002                        1872666,6666666663                        151881,66666666657                        1872666,6666666663                        151881,66666666654                        769,3000000000002
+1,0                        0,45                        0,1                        0,01391304347826087                        13,121118138040256                        1,6513693750023197                        -17,723813                        -17,723813                        -17,723813                        1011,3043478260869                        1889362,3188405796                        151892,95457658704                        1889362,3188405796                        151892,95457658722                        793,8739130434782
+1,0                        0,45                        0,1                        0,01782608695652174                        13,231914701222701                        1,6534990869323885                        -17,271261                        -17,271261                        -17,271261                        1042,6086956521735                        1906057,9710144922                        151912,7638968797                        1906057,9710144922                        151912,76389687965                        818,4478260869562
+1,0                        0,45                        0,1                        0,021739130434782608                        13,288131101869281                        1,6545900669973097                        -16,949053                        -16,949053                        -16,949053                        1073,9130434782603                        1922753,6231884058                        151943,49127421156                        1922753,6231884058                        151943,49127421147                        843,0217391304344
+1,0                        0,45                        0,1                        0,02565217391304348                        13,314122207022203                        1,6550967989056036                        -16,698193                        -16,698193                        -16,698193                        1105,2173913043478                        1939449,2753623184                        151987,5333552505                        1939449,2753623184                        151987,53335525055                        867,595652173913
+1,0                        0,45                        0,1                        0,029565217391304348                        13,32185505331212                        1,65524784322117                        -16,490893                        -16,490893                        -16,490893                        1136,5217391304352                        1956144,9275362317                        152047,28678666346                        1956144,9275362317                        152047,28678666346                        892,1695652173917
+1,0                        0,45                        0,1                        0,03347826086956522                        13,317884247732705                        1,6551702660682184                        -16,312383                        -16,312383                        -16,312383                        1167,8260869565222                        1972840,5797101445                        152125,1482151175                        1972840,5797101445                        152125,14821511743                        916,7434782608699
+1,0                        0,45                        0,1                        0,03739130434782609                        13,306095842805238                        1,6549401579156229                        -16,153994                        -16,153994                        -16,153994                        1199,1304347826087                        1989536,2318840579                        152223,51428727995                        1989536,2318840579                        152223,51428728006                        941,3173913043479
+1,0                        0,45                        0,1                        0,04130434782608696                        13,288932054829491                        1,6546056607873907                        -16,010326                        -16,010326                        -16,010326                        1230,4347826086955                        2006231,8840579705                        152344,78164981795                        2006231,8840579705                        152344,7816498179                        965,891304347826
+1,0                        0,45                        0,1                        0,04521739130434783                        13,267999724649668                        1,654198586972213                        -15,877836                        -15,877836                        -15,877836                        1261,7391304347823                        2022927,536231884                        152491,34694939875                        2022927,536231884                        152491,3469493988                        990,465217391304
+1,0                        0,45                        0,1                        0,0491304347826087                        13,244396691353115                        1,6537407240662714                        -15,754046                        -15,754046                        -15,754046                        1293,0434782608697                        2039623,1884057974                        152665,60683268972                        2039623,1884057974                        152665,60683268975                        1015,0391304347827
+1,0                        0,45                        0,1                        0,053043478260869574                        13,21889132506614                        1,653247335357908                        -15,637296                        -15,637296                        -15,637296                        1324,3478260869563                        2056318,84057971                        152869,95794635767                        2056318,84057971                        152869,95794635758                        1039,6130434782606
+1,0                        0,45                        0,1                        0,05695652173913044                        13,192038738658194                        1,6527294405095132                        -15,526305                        -15,526305                        -15,526305                        1355,652173913043                        2073014,492753623                        153106,79693707018                        2073014,492753623                        153106,79693707023                        1064,186956521739
+1,0                        0,45                        0,1                        0,06086956521739131                        13,164247380106064                        1,652195131249568                        -15,420075                        -15,420075                        -15,420075                        1386,9565217391303                        2089710,1449275357                        153378,52045149435                        2089710,1449275357                        153378,52045149426                        1088,7608695652173
+1,0                        0,45                        0,1                        0,06478260869565218                        13,133961482123683                        1,6516148357938685                        -15,321333                        -15,321333                        -15,321333                        1418,260869565217                        2106405,7971014488                        153687,5251362975                        2106405,7971014488                        153687,52513629757                        1113,3347826086954
+1,0                        0,45                        0,1                        0,06869565217391305                        13,102987905357825                        1,6510235088039045                        -15,226534                        -15,226534                        -15,226534                        1449,565217391304                        2123101,4492753623                        154036,20763814676                        2123101,4492753623                        154036,2076381467                        1137,9086956521737
+1,0                        0,45                        0,1                        0,07260869565217391                        13,072047719215082                        1,6504350018244587                        -15,134249                        -15,134249                        -15,134249                        1480,8695652173915                        2139797,101449275                        154426,9646037095                        2139797,101449275                        154426,9646037096                        1162,4826086956523
+1,0                        0,45                        0,1                        0,07652173913043478                        13,041235561103347                        1,649851115220681                        -15,044179                        -15,044179                        -15,044179                        1512,173913043478                        2156492,7536231885                        154862,19267965268                        2156492,7536231885                        154862,19267965286                        1187,0565217391302
+1,0                        0,45                        0,1                        0,08043478260869565                        13,010622644560106                        1,6492731810158412                        -14,95612                        -14,95612                        -14,95612                        1543,4782608695655                        2173188,4057971016                        155344,28851264346                        2173188,4057971016                        155344,2885126436                        1211,630434782609
+1,0                        0,45                        0,1                        0,08434782608695653                        12,980264882005432                        1,6487022235411863                        -14,869823                        -14,869823                        -14,869823                        1574,7826086956522                        2189884,057971014                        155875,6487493495                        2189884,057971014                        155875,6487493495                        1236,204347826087
+1,0                        0,45                        0,1                        0,08826086956521739                        12,950204428684287                        1,648138993726523                        -14,785089                        -14,785089                        -14,785089                        1606,0869565217392                        2206579,7101449273                        156458,67003643722                        2206579,7101449273                        156458,6700364374                        1260,7782608695652
+1,0                        0,45                        0,1                        0,09217391304347826                        12,92047049923387                        1,647583989242188                        -14,701911                        -14,701911                        -14,701911                        1637,3913043478258                        2223275,3623188403                        157095,74902057482                        2223275,3623188403                        157095,74902057488                        1285,3521739130433
+1,0                        0,45                        0,1                        0,09608695652173914                        12,891087533052225                        1,6470376106985392                        -14,62013                        -14,62013                        -14,62013                        1668,6956521739128                        2239971,0144927534                        157789,28234842874                        2239971,0144927534                        157789,28234842885                        1309,9260869565214
+1,0                        0,45                        0,1                        0,1                        12,862072641484486                        1,6465001162107773                        -14,539666                        -14,539666                        -14,539666                        1699,9999999999998                        2256666,6666666665                        158541,66666666654                        2256666,6666666665                        158541,66666666654                        1334,4999999999998

BIN
analisis de resultados/superficies_respuesta.png


+ 175 - 0
analisis de resultados/visualizacion_pareto_avanzada.py

@@ -0,0 +1,175 @@
+import numpy as np
+import matplotlib.pyplot as plt
+from mpl_toolkits.mplot3d import Axes3D
+import warnings
+warnings.filterwarnings('ignore')
+
+# Leer el archivo manualmente
+data = []
+with open('resultados1.txt', 'r', encoding='utf-8') as f:
+    header = f.readline().strip().split('\t')
+    for line in f:
+        values = line.strip().split()
+        if len(values) >= 15:
+            data.append(values)
+
+# Convertir datos
+def convert_value(x):
+    try:
+        return float(x.replace(',', '.').strip())
+    except:
+        return np.nan
+
+tf = np.array([convert_value(row[2]) for row in data])
+tw = np.array([convert_value(row[3]) for row in data])
+flecha = np.array([convert_value(row[8]) for row in data])
+
+# Filtrar NaN
+valid = ~(np.isnan(tf) | np.isnan(tw) | np.isnan(flecha))
+tf = tf[valid]
+tw = tw[valid]
+flecha = flecha[valid]
+
+# Crear figura con 4 subplots
+fig = plt.figure(figsize=(18, 14))
+
+# Colores basados en la deflexión
+colors = plt.cm.RdYlGn_r((np.abs(flecha) - np.abs(flecha).min()) / (np.abs(flecha).max() - np.abs(flecha).min()))
+
+# 1. Vista 3D principal
+ax1 = fig.add_subplot(2, 2, 1, projection='3d')
+scatter1 = ax1.scatter(tf, tw, flecha, c=np.abs(flecha), cmap='RdYlGn_r', 
+                       s=100, alpha=0.6, edgecolors='black', linewidth=0.5)
+ax1.set_xlabel('tf (ala)', fontweight='bold')
+ax1.set_ylabel('tw (alma)', fontweight='bold')
+ax1.set_zlabel('Flecha', fontweight='bold')
+ax1.set_title('Vista 3D Principal - Coloreado por |Deflexión|', fontweight='bold', fontsize=11)
+ax1.view_init(elev=20, azim=45)
+cbar1 = plt.colorbar(scatter1, ax=ax1, pad=0.1, shrink=0.8)
+cbar1.set_label('|Deflexión|', fontweight='bold')
+
+# 2. Vista 3D desde otro ángulo
+ax2 = fig.add_subplot(2, 2, 2, projection='3d')
+scatter2 = ax2.scatter(tf, tw, flecha, c=np.abs(flecha), cmap='RdYlGn_r',
+                       s=100, alpha=0.6, edgecolors='black', linewidth=0.5)
+ax2.set_xlabel('tf (ala)', fontweight='bold')
+ax2.set_ylabel('tw (alma)', fontweight='bold')
+ax2.set_zlabel('Flecha', fontweight='bold')
+ax2.set_title('Vista 3D Alternativa - Ángulo 225°', fontweight='bold', fontsize=11)
+ax2.view_init(elev=10, azim=225)
+
+# 3. Proyección 2D: tf vs tw (coloreado por flecha)
+ax3 = fig.add_subplot(2, 2, 3)
+scatter3 = ax3.scatter(tf, tw, c=np.abs(flecha), cmap='RdYlGn_r', 
+                       s=150, alpha=0.7, edgecolors='black', linewidth=0.5)
+ax3.set_xlabel('tf - Espesor ala (mm)', fontweight='bold', fontsize=11)
+ax3.set_ylabel('tw - Espesor alma (mm)', fontweight='bold', fontsize=11)
+ax3.set_title('Proyección 2D: tf vs tw', fontweight='bold', fontsize=11)
+ax3.grid(True, alpha=0.3)
+cbar3 = plt.colorbar(scatter3, ax=ax3)
+cbar3.set_label('|Deflexión| (mm)', fontweight='bold')
+
+# 4. Gráfico de contorno 3D: Deflexión vs tf y tw
+ax4 = fig.add_subplot(2, 2, 4)
+
+# Crear grid para contorno
+tf_unique = np.sort(np.unique(tf))
+tw_unique = np.sort(np.unique(tw))
+
+# Crear matriz de valores Z (flecha)
+Z = np.full((len(tw_unique), len(tf_unique)), np.nan)
+for i, t_f in enumerate(tf_unique):
+    for j, t_w in enumerate(tw_unique):
+        mask = (tf == t_f) & (tw == t_w)
+        if np.any(mask):
+            Z[j, i] = np.abs(flecha[mask][0])
+
+# Graficar contorno
+X_grid, Y_grid = np.meshgrid(tf_unique, tw_unique)
+contour = ax4.contourf(X_grid, Y_grid, Z, levels=20, cmap='RdYlGn_r')
+contour_lines = ax4.contour(X_grid, Y_grid, Z, levels=10, colors='black', alpha=0.3, linewidths=0.5)
+ax4.clabel(contour_lines, inline=True, fontsize=8)
+
+ax4.set_xlabel('tf - Espesor ala (mm)', fontweight='bold', fontsize=11)
+ax4.set_ylabel('tw - Espesor alma (mm)', fontweight='bold', fontsize=11)
+ax4.set_title('Mapa de Contorno: |Deflexión|', fontweight='bold', fontsize=11)
+cbar4 = plt.colorbar(contour, ax=ax4)
+cbar4.set_label('|Deflexión| (mm)', fontweight='bold')
+
+plt.suptitle('Análisis Completo de la Frontera de Pareto - Sección de Viga', 
+             fontsize=14, fontweight='bold', y=0.995)
+plt.tight_layout(rect=[0, 0, 1, 0.99])
+plt.savefig('analisis_completo_pareto.png', dpi=300, bbox_inches='tight')
+print("✓ Visualización completa guardada como 'analisis_completo_pareto.png'")
+
+# Crear gráfico de superficies de respuesta
+fig2 = plt.figure(figsize=(16, 12))
+
+# 1. Superficie 3D de deflexión
+ax5 = fig2.add_subplot(2, 2, 1, projection='3d')
+surf1 = ax5.plot_surface(X_grid, Y_grid, Z, cmap='RdYlGn_r', alpha=0.8, 
+                         edgecolor='none', antialiased=True)
+ax5.scatter(tf, tw, np.abs(flecha), c='black', s=20, alpha=0.3)
+ax5.set_xlabel('tf (mm)', fontweight='bold')
+ax5.set_ylabel('tw (mm)', fontweight='bold')
+ax5.set_zlabel('|Deflexión| (mm)', fontweight='bold')
+ax5.set_title('Superficie de Respuesta: |Deflexión|', fontweight='bold', fontsize=11)
+ax5.view_init(elev=25, azim=45)
+cbar5 = plt.colorbar(surf1, ax=ax5, pad=0.1, shrink=0.8)
+cbar5.set_label('|Deflexión| (mm)', fontweight='bold')
+
+# 2. Superficie 3D desde otro ángulo
+ax6 = fig2.add_subplot(2, 2, 2, projection='3d')
+surf2 = ax6.plot_surface(X_grid, Y_grid, Z, cmap='RdYlGn_r', alpha=0.8,
+                         edgecolor='none', antialiased=True)
+ax6.set_xlabel('tf (mm)', fontweight='bold')
+ax6.set_ylabel('tw (mm)', fontweight='bold')
+ax6.set_zlabel('|Deflexión| (mm)', fontweight='bold')
+ax6.set_title('Superficie de Respuesta - Vista Lateral', fontweight='bold', fontsize=11)
+ax6.view_init(elev=10, azim=120)
+
+# 3. Gráfico de dispersión con líneas de iso-deflexión
+ax7 = fig2.add_subplot(2, 2, 3)
+scatter7 = ax7.scatter(tf, tw, s=200, c=np.abs(flecha), cmap='RdYlGn_r',
+                       alpha=0.7, edgecolors='black', linewidth=1)
+contour7 = ax7.contour(X_grid, Y_grid, Z, levels=15, colors='gray', alpha=0.4, linewidths=0.8)
+ax7.clabel(contour7, inline=True, fontsize=7)
+ax7.set_xlabel('tf - Espesor ala (mm)', fontweight='bold', fontsize=11)
+ax7.set_ylabel('tw - Espesor alma (mm)', fontweight='bold', fontsize=11)
+ax7.set_title('Puntos de Diseño con Líneas de Iso-Deflexión', fontweight='bold', fontsize=11)
+ax7.grid(True, alpha=0.3)
+cbar7 = plt.colorbar(scatter7, ax=ax7)
+cbar7.set_label('|Deflexión| (mm)', fontweight='bold')
+
+# 4. Gráfico de efectos principales
+ax8 = fig2.add_subplot(2, 2, 4)
+tf_effect = [np.abs(flecha[tf == t_f]).mean() for t_f in tf_unique]
+tw_effect = [np.abs(flecha[tw == t_w]).mean() for t_w in tw_unique]
+
+ax8_2 = ax8.twinx()
+ax8.plot(tf_unique, tf_effect, 'b-o', linewidth=2, markersize=6, label='Efecto de tf')
+ax8_2.plot(tw_unique, tw_effect, 'r-s', linewidth=2, markersize=6, label='Efecto de tw')
+ax8.set_xlabel('Valor del parámetro (mm)', fontweight='bold', fontsize=11)
+ax8.set_ylabel('Deflexión media (tf)', color='b', fontweight='bold')
+ax8_2.set_ylabel('Deflexión media (tw)', color='r', fontweight='bold')
+ax8.set_title('Gráficos de Efectos Principales', fontweight='bold', fontsize=11)
+ax8.grid(True, alpha=0.3)
+ax8.tick_params(axis='y', labelcolor='b')
+ax8_2.tick_params(axis='y', labelcolor='r')
+lines1, labels1 = ax8.get_legend_handles_labels()
+lines2, labels2 = ax8_2.get_legend_handles_labels()
+ax8.legend(lines1 + lines2, labels1 + labels2, loc='upper left')
+
+plt.suptitle('Superficies de Respuesta y Análisis de Sensibilidad', 
+             fontsize=14, fontweight='bold', y=0.995)
+plt.tight_layout(rect=[0, 0, 1, 0.99])
+plt.savefig('superficies_respuesta.png', dpi=300, bbox_inches='tight')
+print("✓ Superficies de respuesta guardadas como 'superficies_respuesta.png'")
+
+print("\n✓ Análisis completado exitosamente")
+print(f"  - {len(tf)} puntos analizados")
+print(f"  - Valores tf: {tf.min():.4f} a {tf.max():.4f} mm")
+print(f"  - Valores tw: {tw.min():.4f} a {tw.max():.4f} mm")
+print(f"  - Deflexión: {np.abs(flecha).min():.2f} a {np.abs(flecha).max():.2f} mm")
+
+plt.show()

+ 218 - 0
analisis de resultados/visualizacion_restriccion_detallada.py

@@ -0,0 +1,218 @@
+import numpy as np
+import matplotlib.pyplot as plt
+from mpl_toolkits.mplot3d import Axes3D
+from scipy.spatial import ConvexHull
+import warnings
+warnings.filterwarnings('ignore')
+
+# Leer el archivo manualmente
+data = []
+with open('resultados1.txt', 'r', encoding='utf-8') as f:
+    header = f.readline().strip().split('\t')
+    for line in f:
+        values = line.strip().split()
+        if len(values) >= 15:
+            data.append(values)
+
+# Convertir datos
+def convert_value(x):
+    try:
+        return float(x.replace(',', '.').strip())
+    except:
+        return np.nan
+
+tf = np.array([convert_value(row[2]) for row in data])
+tw = np.array([convert_value(row[3]) for row in data])
+flecha = np.array([convert_value(row[8]) for row in data])
+
+# Filtrar NaN
+valid = ~(np.isnan(tf) | np.isnan(tw) | np.isnan(flecha))
+tf = tf[valid]
+tw = tw[valid]
+flecha = flecha[valid]
+
+# RESTRICCIÓN DE DISEÑO
+LIMITE_FLECHA = -25.0
+
+# Separar válidos e inválidos
+valid_idx = flecha >= LIMITE_FLECHA
+invalid_idx = flecha < LIMITE_FLECHA
+
+tf_valid = tf[valid_idx]
+tw_valid = tw[valid_idx]
+flecha_valid = flecha[valid_idx]
+
+tf_invalid = tf[invalid_idx]
+tw_invalid = tw[invalid_idx]
+flecha_invalid = flecha[invalid_idx]
+
+print("="*80)
+print("VISUALIZACIÓN 3D CON PLANO DE RESTRICCIÓN DE DISEÑO")
+print("="*80)
+print(f"\nRestriction: Flecha_Media >= {LIMITE_FLECHA} mm")
+print(f"Valid points: {len(tf_valid)} ({100*len(tf_valid)/len(tf):.1f}%)")
+print(f"Invalid points: {len(tf_invalid)} ({100*len(tf_invalid)/len(tf):.1f}%)")
+
+# Crear figura con múltiples vistas
+fig = plt.figure(figsize=(20, 14))
+
+# Definir plano de restricción
+xx = np.linspace(tf.min(), tf.max(), 30)
+yy = np.linspace(tw.min(), tw.max(), 30)
+XX, YY = np.meshgrid(xx, yy)
+ZZ = np.full_like(XX, LIMITE_FLECHA)
+
+# Vista 1: Ángulo 45°
+ax1 = fig.add_subplot(2, 3, 1, projection='3d')
+ax1.plot_surface(XX, YY, ZZ, alpha=0.25, color='orange', label='Plano de restricción')
+ax1.plot_wireframe(XX, YY, ZZ, color='darkorange', alpha=0.4, linewidth=0.5)
+ax1.scatter(tf_invalid, tw_invalid, flecha_invalid, c='red', marker='x', s=80, alpha=0.4, label='Inválidos')
+ax1.scatter(tf_valid, tw_valid, flecha_valid, c='lightgreen', marker='o', s=60, alpha=0.6, edgecolors='darkgreen', linewidth=0.3, label='Válidos')
+ax1.set_xlabel('tf (mm)', fontweight='bold')
+ax1.set_ylabel('tw (mm)', fontweight='bold')
+ax1.set_zlabel('Flecha (mm)', fontweight='bold')
+ax1.set_title('Vista 45°', fontweight='bold', fontsize=11)
+ax1.view_init(elev=20, azim=45)
+ax1.legend(fontsize=9, loc='upper left')
+
+# Vista 2: Ángulo 135°
+ax2 = fig.add_subplot(2, 3, 2, projection='3d')
+ax2.plot_surface(XX, YY, ZZ, alpha=0.25, color='orange')
+ax2.plot_wireframe(XX, YY, ZZ, color='darkorange', alpha=0.4, linewidth=0.5)
+ax2.scatter(tf_invalid, tw_invalid, flecha_invalid, c='red', marker='x', s=80, alpha=0.4)
+ax2.scatter(tf_valid, tw_valid, flecha_valid, c='lightgreen', marker='o', s=60, alpha=0.6, edgecolors='darkgreen', linewidth=0.3)
+ax2.set_xlabel('tf (mm)', fontweight='bold')
+ax2.set_ylabel('tw (mm)', fontweight='bold')
+ax2.set_zlabel('Flecha (mm)', fontweight='bold')
+ax2.set_title('Vista 135°', fontweight='bold', fontsize=11)
+ax2.view_init(elev=20, azim=135)
+
+# Vista 3: Vista desde arriba (proyección 2D)
+ax3 = fig.add_subplot(2, 3, 3, projection='3d')
+ax3.plot_surface(XX, YY, ZZ, alpha=0.25, color='orange')
+ax3.plot_wireframe(XX, YY, ZZ, color='darkorange', alpha=0.4, linewidth=0.5)
+ax3.scatter(tf_invalid, tw_invalid, flecha_invalid, c='red', marker='x', s=80, alpha=0.4)
+ax3.scatter(tf_valid, tw_valid, flecha_valid, c='lightgreen', marker='o', s=60, alpha=0.6, edgecolors='darkgreen', linewidth=0.3)
+ax3.set_xlabel('tf (mm)', fontweight='bold')
+ax3.set_ylabel('tw (mm)', fontweight='bold')
+ax3.set_zlabel('Flecha (mm)', fontweight='bold')
+ax3.set_title('Vista Cenital (Desde arriba)', fontweight='bold', fontsize=11)
+ax3.view_init(elev=85, azim=45)
+
+# Vista 4: Proyección tf vs Flecha
+ax4 = fig.add_subplot(2, 3, 4)
+ax4.axhline(y=LIMITE_FLECHA, color='orange', linewidth=3, linestyle='--', label=f'Plano restricción (z={LIMITE_FLECHA})')
+ax4.axhspan(flecha_invalid.min() if len(flecha_invalid) > 0 else -100, LIMITE_FLECHA, alpha=0.2, color='red', label='Región inválida')
+ax4.axhspan(LIMITE_FLECHA, flecha_valid.max() if len(flecha_valid) > 0 else 0, alpha=0.2, color='green', label='Región válida')
+ax4.scatter(tf_invalid, flecha_invalid, c='red', marker='x', s=100, alpha=0.5, linewidth=2, label=f'Puntos inválidos ({len(tf_invalid)})')
+ax4.scatter(tf_valid, flecha_valid, c='lightgreen', marker='o', s=80, alpha=0.6, edgecolors='darkgreen', linewidth=0.5, label=f'Puntos válidos ({len(tf_valid)})')
+ax4.set_xlabel('tf - Espesor ala (mm)', fontweight='bold')
+ax4.set_ylabel('Flecha_Media (mm)', fontweight='bold')
+ax4.set_title('Proyección 2D: tf vs Flecha', fontweight='bold', fontsize=11)
+ax4.grid(True, alpha=0.3)
+ax4.legend(fontsize=9)
+ax4.set_xlim(tf.min()-0.01, tf.max()+0.01)
+
+# Vista 5: Proyección tw vs Flecha
+ax5 = fig.add_subplot(2, 3, 5)
+ax5.axhline(y=LIMITE_FLECHA, color='orange', linewidth=3, linestyle='--', label=f'Plano restricción (z={LIMITE_FLECHA})')
+ax5.axhspan(flecha_invalid.min() if len(flecha_invalid) > 0 else -100, LIMITE_FLECHA, alpha=0.2, color='red', label='Región inválida')
+ax5.axhspan(LIMITE_FLECHA, flecha_valid.max() if len(flecha_valid) > 0 else 0, alpha=0.2, color='green', label='Región válida')
+ax5.scatter(tw_invalid, flecha_invalid, c='red', marker='x', s=100, alpha=0.5, linewidth=2, label=f'Puntos inválidos ({len(tw_invalid)})')
+ax5.scatter(tw_valid, flecha_valid, c='lightgreen', marker='o', s=80, alpha=0.6, edgecolors='darkgreen', linewidth=0.5, label=f'Puntos válidos ({len(tw_valid)})')
+ax5.set_xlabel('tw - Espesor alma (mm)', fontweight='bold')
+ax5.set_ylabel('Flecha_Media (mm)', fontweight='bold')
+ax5.set_title('Proyección 2D: tw vs Flecha', fontweight='bold', fontsize=11)
+ax5.grid(True, alpha=0.3)
+ax5.legend(fontsize=9)
+ax5.set_xlim(tw.min()-0.01, tw.max()+0.01)
+
+# Vista 6: Proyección tf vs tw (plano horizontal)
+ax6 = fig.add_subplot(2, 3, 6)
+scatter_invalid_2d = ax6.scatter(tf_invalid, tw_invalid, c='red', marker='x', s=100, alpha=0.5, linewidth=2, label=f'Inválidos ({len(tf_invalid)})')
+scatter_valid_2d = ax6.scatter(tf_valid, tw_valid, c='lightgreen', marker='o', s=80, alpha=0.6, edgecolors='darkgreen', linewidth=0.5, label=f'Válidos ({len(tf_valid)})')
+ax6.set_xlabel('tf - Espesor ala (mm)', fontweight='bold')
+ax6.set_ylabel('tw - Espesor alma (mm)', fontweight='bold')
+ax6.set_title('Proyección 2D: tf vs tw', fontweight='bold', fontsize=11)
+ax6.grid(True, alpha=0.3)
+ax6.legend(fontsize=9)
+
+plt.suptitle(f'Análisis de Restricción de Diseño: Flecha_Media ≥ {LIMITE_FLECHA} mm', 
+             fontsize=14, fontweight='bold', y=0.995)
+plt.tight_layout(rect=[0, 0, 1, 0.99])
+plt.savefig('multiples_vistas_restriccion.png', dpi=300, bbox_inches='tight')
+print("\n✓ Visualización guardada como 'multiples_vistas_restriccion.png'")
+
+# Crear gráfico de comparación: válido vs inválido
+fig2, axes = plt.subplots(1, 3, figsize=(16, 5))
+
+# Histogramas de distribuciones
+axes[0].hist(flecha_invalid, bins=20, alpha=0.6, color='red', label='Inválidos', edgecolor='darkred')
+axes[0].hist(flecha_valid, bins=20, alpha=0.6, color='green', label='Válidos', edgecolor='darkgreen')
+axes[0].axvline(x=LIMITE_FLECHA, color='orange', linewidth=3, linestyle='--', label=f'Límite = {LIMITE_FLECHA} mm')
+axes[0].set_xlabel('Flecha_Media (mm)', fontweight='bold')
+axes[0].set_ylabel('Frecuencia', fontweight='bold')
+axes[0].set_title('Distribución de Deflexiones', fontweight='bold')
+axes[0].legend()
+axes[0].grid(True, alpha=0.3)
+
+# Comparación de ranges
+categories = ['tf (ala)', 'tw (alma)', 'Flecha']
+valid_min = [tf_valid.min(), tw_valid.min(), flecha_valid.min()]
+valid_max = [tf_valid.max(), tw_valid.max(), flecha_valid.max()]
+invalid_min = [tf_invalid.min(), tw_invalid.min(), flecha_invalid.min()]
+invalid_max = [tf_invalid.max(), tw_invalid.max(), flecha_invalid.max()]
+
+x = np.arange(len(categories))
+width = 0.2
+
+bars1 = axes[1].bar(x - width*1.5, valid_min, width, label='Válidos (mín)', color='lightgreen', edgecolor='darkgreen')
+bars2 = axes[1].bar(x - width/2, valid_max, width, label='Válidos (máx)', color='darkgreen', edgecolor='black')
+bars3 = axes[1].bar(x + width/2, invalid_min, width, label='Inválidos (mín)', color='lightcoral', edgecolor='darkred')
+bars4 = axes[1].bar(x + width*1.5, invalid_max, width, label='Inválidos (máx)', color='darkred', edgecolor='black')
+
+axes[1].set_ylabel('Valor', fontweight='bold')
+axes[1].set_title('Rango de Valores por Región', fontweight='bold')
+axes[1].set_xticks(x)
+axes[1].set_xticklabels(categories)
+axes[1].legend(fontsize=9)
+axes[1].grid(True, alpha=0.3, axis='y')
+
+# Estadísticas resumen
+axes[2].axis('off')
+stats_text = f"""RESUMEN DE RESTRICCIÓN DE DISEÑO
+
+Límite de Deflexión: Flecha_Media ≥ {LIMITE_FLECHA} mm
+
+PUNTOS VÁLIDOS (Flecha ≥ {LIMITE_FLECHA}):
+  • Cantidad: {len(tf_valid)} puntos ({100*len(tf_valid)/len(tf):.1f}%)
+  • tf range: [{tf_valid.min():.6f}, {tf_valid.max():.6f}] mm
+  • tw range: [{tw_valid.min():.6f}, {tw_valid.max():.6f}] mm
+  • Flecha range: [{flecha_valid.min():.2f}, {flecha_valid.max():.2f}] mm
+
+PUNTOS INVÁLIDOS (Flecha < {LIMITE_FLECHA}):
+  • Cantidad: {len(tf_invalid)} puntos ({100*len(tf_invalid)/len(tf):.1f}%)
+  • tf range: [{tf_invalid.min():.6f}, {tf_invalid.max():.6f}] mm
+  • tw range: [{tw_invalid.min():.6f}, {tw_invalid.max():.6f}] mm
+  • Flecha range: [{flecha_invalid.min():.2f}, {flecha_invalid.max():.2f}] mm
+
+TOTAL: {len(tf)} puntos
+"""
+axes[2].text(0.1, 0.95, stats_text, transform=axes[2].transAxes, fontsize=10,
+            verticalalignment='top', fontfamily='monospace',
+            bbox=dict(boxstyle='round', facecolor='wheat', alpha=0.8))
+
+plt.suptitle('Comparación de Regiones: Válida vs Inválida', fontsize=14, fontweight='bold')
+plt.tight_layout()
+plt.savefig('comparacion_regiones.png', dpi=300, bbox_inches='tight')
+print("✓ Comparación guardada como 'comparacion_regiones.png'")
+
+print("\n" + "="*80)
+print("ARCHIVOS GENERADOS:")
+print("="*80)
+print("  1. grafico_3d_pareto_con_restriccion.png - Vista 3D con plano de restricción")
+print("  2. multiples_vistas_restriccion.png - 6 vistas diferentes del problema")
+print("  3. comparacion_regiones.png - Análisis comparativo de regiones")
+print("="*80)
+
+plt.show()

+ 1 - 1
parametric_sweep.py

@@ -336,7 +336,7 @@ class ParametricSweep:
 
         # Calcular eficiencia para cada solución
         self.results_df['eficiencia'] = (
-            (self.results_df['ixg'] + self.results_df['iyg']) /
+            (self.results_df['ixg']) /
             (self.results_df['peso'] * 1000)
         )