Konstantin Ladutenko 3 gadi atpakaļ
vecāks
revīzija
ae14b80aef

+ 143 - 0
examples/TiO2-comsol-compare.py

@@ -0,0 +1,143 @@
+#!/usr/bin/env python3
+# -*- coding: UTF-8 -*-
+#
+#    Copyright (C) 2021  Konstantin Ladutenko <kostyfisik@gmail.com>
+#
+#    This file is part of python-scattnlay
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    The only additional remark is that we expect that all publications
+#    describing work using this software, or all commercial products
+#    using it, cite the following reference:
+#    [1] O. Pena and U. Pal, "Scattering of electromagnetic radiation by
+#        a multilayered sphere," Computer Physics Communications,
+#        vol. 180, Nov. 2009, pp. 2348-2354.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+from scattnlay import mie
+import matplotlib.pyplot as plt
+import numpy as np
+from optical_constants import read_refractive_index_from_yaml as get_index
+
+def gauss(x, mu, sigma):
+    return 1/(sigma * np.sqrt(2 * np.pi)) * np.exp( - (x - mu)**2 / (2 * sigma**2))
+
+from_WL = 300
+to_WL = 1100
+WL_points= 100
+WLs = np.linspace(from_WL, to_WL, WL_points)
+
+from_r = 40/2.
+to_r =80/2.
+r_points = 20
+all_r = np.linspace(from_r, to_r, r_points)
+r_mean = 58.3/2.
+# r_mean = 50/2.
+r_std = 6.3/2.
+r_weights = gauss(all_r, r_mean,r_std)/len(all_r)
+
+plt.plot(all_r, r_weights )
+plt.xlabel("R, nm")
+plt.ylabel("amount")
+
+index_SiO2 = get_index("refractiveindex_info/SiO2-Gao.yml", WLs, units='nm')
+# index_Au = get_index("refractiveindex_info/Au-McPeak.yml", WLs, units='nm')
+index_Au = get_index("refractiveindex_info/Au-Johnson.yml", WLs, units='nm')
+index_TiO2 = get_index("r"
+                       "efractiveindex_info/TiO2-Sarkar.yml", WLs, units='nm')
+
+index_SiO2 *= 0; index_SiO2 += 1.45
+index_TiO2[:,1] += 0.0j
+# index_Au[:,1] += 1.5j
+
+x = np.ones((3), dtype = np.float64)
+m = np.ones((3), dtype = np.complex128)
+
+core_r = 5
+inner_shell_h = 10+20
+outer_shell_h = 10
+host_media = 1.33
+
+Qext_core_shell = np.zeros(len(WLs))
+Qext_3l = np.zeros(len(WLs))
+
+for i in range(len(WLs)):
+    WL = WLs[i]
+    for j in range(len(all_r)):
+        # core_r = all_r[j]
+        # weight = r_weights[j]
+        weight = 1/len(r_weights)
+        # print(core_r)
+        x = host_media*2.0*np.pi/WL*np.array([core_r,
+                                   core_r+inner_shell_h,
+                                   core_r+inner_shell_h+outer_shell_h])
+        m = np.array([index_SiO2[i][1], index_Au[i][1],
+                      index_TiO2[i][1]]
+                     )/host_media
+        # print(x, m)
+        mie.SetLayersSize(x)
+        mie.SetLayersIndex(m)
+        mie.RunMieCalculation()
+        Qext_3l[i] += mie.GetQext()*weight
+
+        x = host_media*2.0*np.pi/WL*np.array([core_r,
+                          core_r+inner_shell_h])
+        m = np.array([index_SiO2[i][1], index_Au[i][1]])/host_media
+        mie.SetLayersSize(x)
+        mie.SetLayersIndex(m)
+        mie.RunMieCalculation()
+        Qext_core_shell[i] += mie.GetQext()*weight
+
+comsol_spectra = np.array([[0.420000000000000,2.35836000000000e-15],
+                  [0.440000000000000,2.27000000000000e-15],
+                  [0.460000000000000,2.21146900000000e-15],
+                  [0.480000000000000,2.21744500000000e-15],
+                  [0.500000000000000,2.49989500000000e-15],
+                  [0.520000000000000,3.36257000000000e-15],
+                  [0.540000000000000,3.88983000000000e-15],
+                  [0.560000000000000,4.03982000000000e-15],
+                  [0.580000000000000,3.23889000000000e-15],
+                  [0.600000000000000,3.01499000000000e-15],
+                  [0.620000000000000,2.13147000000000e-15],
+                  [0.640000000000000,9.02930000000000e-16],
+                  [0.660000000000000,4.49688000000000e-16],
+                  [0.680000000000000,2.93514000000000e-16],
+                  [0.700000000000000,2.19381000000000e-16],
+                  [0.720000000000000,1.85272000000000e-16],
+                  [0.740000000000000,1.74517000000000e-16],
+                  [0.760000000000000,1.54702000000000e-16],
+                  [0.780000000000000,1.51191000000000e-16],
+                  [0.800000000000000,1.58785200000000e-16],
+                  [0.820000000000000,1.74967600000000e-16 ]  ])
+
+fig, axs2 = plt.subplots(1,1)#, sharey=True, sharex=True)
+# axs2.plot(WLs, Qext_3l, color="purple")
+axs2.plot(WLs, Qext_core_shell, color="lime", label="Mie, layered")
+axs2.plot(comsol_spectra[:,0]*1000, comsol_spectra[:,1]/np.pi/(35e-9**2)*3, color="black", label="Comsol, \nSiO2 with Au NP coating")
+axs2.legend()
+axs2.set_xlabel("WL, nm")
+axs2.set_ylabel("Extinction, a.u.")
+# axs2 = axs.twinx()
+# axs2.plot(np.array(core_r_vec)*2,an_vec[:,0],"b.",lw=0.8, markersize=1.9,label="$a_0$")
+# axs2.plot(np.array(core_r_vec)*2,bn_vec[:,0],"b-", markersize=1.9,label="$b_0$")
+# axs2.plot(np.array(core_r_vec)*2,an_vec[:,1],"g.",lw=0.8, markersize=1.9,label="$a_1$")
+# axs2.plot(np.array(core_r_vec)*2,bn_vec[:,1],"g-", markersize=1.9,label="$b_1$")
+# axs2.legend(loc="upper right")
+# axs2.tick_params('y', colors='black')
+# axs2.set_ylim(0,1)
+# axs2.set_ylabel("Mie",color="black")
+plt.savefig("spectra.pdf",pad_inches=0.02, bbox_inches='tight')
+plt.show()
+plt.clf()
+plt.close()

+ 159 - 0
examples/calc-size-averaged-Qext.py

@@ -0,0 +1,159 @@
+#!/usr/bin/env python3
+# -*- coding: UTF-8 -*-
+#
+#    Copyright (C) 2021  Konstantin Ladutenko <kostyfisik@gmail.com>
+#
+#    This file is part of python-scattnlay
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    The only additional remark is that we expect that all publications
+#    describing work using this software, or all commercial products
+#    using it, cite the following reference:
+#    [1] O. Pena and U. Pal, "Scattering of electromagnetic radiation by
+#        a multilayered sphere," Computer Physics Communications,
+#        vol. 180, Nov. 2009, pp. 2348-2354.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+from scattnlay import mie
+import matplotlib.pyplot as plt
+import numpy as np
+from optical_constants import read_refractive_index_from_yaml as get_index
+
+def gauss(x, mu, sigma):
+    return 1/(sigma * np.sqrt(2 * np.pi)) * np.exp( - (x - mu)**2 / (2 * sigma**2))
+
+fill_factor = 0.8
+
+from_WL = 300
+to_WL = 1100
+WL_points= 100
+WLs = np.linspace(from_WL, to_WL, WL_points)
+
+r_points = 200
+
+from_r = 40/2.
+to_r =80/2.
+all_r = np.linspace(from_r, to_r, r_points)
+r_mean = 58.3/2.
+r_std = 6.3/2.
+
+
+# from_r = 1.
+# to_r =15.
+# all_r = np.linspace(from_r, to_r, r_points)
+# r_mean = 6
+# r_std = 2
+
+core_r = 30
+inner_shell_h = 8
+outer_shell_h = 10
+host_media = 1.33
+
+r_weights = gauss(all_r, r_mean,r_std)/len(all_r)
+
+plt.plot(all_r, r_weights )
+plt.xlabel("R, nm")
+plt.ylabel("amount")
+
+index_SiO2 = get_index("refractiveindex_info/SiO2-Gao.yml", WLs, units='nm')
+# index_Au = get_index("refractiveindex_info/Au-McPeak.yml", WLs, units='nm')
+index_Au = get_index("refractiveindex_info/Au-Johnson.yml", WLs, units='nm')
+index_TiO2 = get_index("refractiveindex_info/TiO2-Sarkar.yml", WLs, units='nm')
+
+# index_TiO2[:,1] += 0.5j
+# index_Au[:,1] = index_Au[:,1]* fill_factor + (1-fill_factor)
+
+print("Au index before correction, max = ", np.max(np.imag(index_Au[:,1])))
+# Taking into account gold free electrons damping
+# contributed by surface scattering and bulk dumping
+# See eq 1 in [1] -> doi: https://doi.org/10.1186/s11671-018-2670-7
+eps_exp = index_Au[:,1]**2
+c=299792458  # speed of light
+h= 4.135667516e-15  # eV*s, Planck constant
+w = h*c/(WLs*1e-9)  # eV, frequency
+w_p =8.55  # eV, gold plasmon frequency
+g_b = 18.4e-3  # eV, bulk dumping
+v_f = 1.4e6  # m/s, Fermi velocity of electrons in gold
+A = 1.33  # fit parameter for 16 nm gold shell, see Table 2 in [1]
+L_b = (4.*((core_r+inner_shell_h)**3 - core_r**3)/
+       (3.*((core_r+inner_shell_h)**2 + core_r**2)))
+# g_s = v_f/L_b  # eq 2 in [1]
+g_s = h*A*v_f/(inner_shell_h*1e-9)  # eq 4 in [1]
+# g_b *= 0.2
+# g_s *= 0.5
+eps_Au = (eps_exp
+          +
+          w_p**2 / ( w * (w + 1j*g_b) )
+          -
+          w_p**2 / ( w * (w + 1j*(g_b+g_s)) )
+          )
+# index_Au[:,1] = np.sqrt(eps_Au)
+index_Au[:,1] += 1.6j
+print(f"L_b={L_b}")
+# print(w)
+print(f"g_s={g_s}, g_b={g_b} ")
+print("Au index after, max = ", np.max(np.imag(index_Au[:,1])))
+x = np.ones((3), dtype = np.float64)
+m = np.ones((3), dtype = np.complex128)
+
+
+Qext_core_shell = np.zeros(len(WLs))
+Qext_3l = np.zeros(len(WLs))
+
+for i in range(len(WLs)):
+    WL = WLs[i]
+    for j in range(len(all_r)):
+        core_r = all_r[j]
+        # inner_shell_h = all_r[j]
+        weight = r_weights[j]
+        # print(core_r)
+        x = host_media*2.0*np.pi/WL*np.array([core_r,
+                                   core_r+inner_shell_h,
+                                   core_r+inner_shell_h+outer_shell_h])
+        m = np.array([index_SiO2[i][1], index_Au[i][1],
+                      index_TiO2[i][1]]
+                     )/host_media
+        # print(x, m)
+        mie.SetLayersSize(x)
+        mie.SetLayersIndex(m)
+        mie.RunMieCalculation()
+        Qext_3l[i] += mie.GetQext()*weight
+
+        x = host_media*2.0*np.pi/WL*np.array([core_r,
+                          core_r+inner_shell_h])
+        m = np.array([index_SiO2[i][1], index_Au[i][1]])/host_media
+        mie.SetLayersSize(x)
+        mie.SetLayersIndex(m)
+        mie.RunMieCalculation()
+        Qext_core_shell[i] += mie.GetQext()*weight
+
+
+fig, axs2 = plt.subplots(1,1)#, sharey=True, sharex=True)
+axs2.plot(WLs, Qext_3l, color="purple")
+axs2.plot(WLs, Qext_core_shell, color="lime")
+axs2.set_xlabel("WL, nm")
+axs2.set_ylabel("Extinction, a.u.")
+# axs2 = axs.twinx()
+# axs2.plot(np.array(core_r_vec)*2,an_vec[:,0],"b.",lw=0.8, markersize=1.9,label="$a_0$")
+# axs2.plot(np.array(core_r_vec)*2,bn_vec[:,0],"b-", markersize=1.9,label="$b_0$")
+# axs2.plot(np.array(core_r_vec)*2,an_vec[:,1],"g.",lw=0.8, markersize=1.9,label="$a_1$")
+# axs2.plot(np.array(core_r_vec)*2,bn_vec[:,1],"g-", markersize=1.9,label="$b_1$")
+# axs2.legend(loc="upper right")
+# axs2.tick_params('y', colors='black')
+# axs2.set_ylim(0,1)
+# axs2.set_ylabel("Mie",color="black")
+plt.savefig("spectra.pdf",pad_inches=0.02, bbox_inches='tight')
+plt.show()
+plt.clf()
+plt.close()

+ 0 - 0
examples/optical_constants.py


+ 58 - 0
examples/refractiveindex_info/Au-Johnson.yml

@@ -0,0 +1,58 @@
+# this file is part of refractiveindex.info database
+# refractiveindex.info database is in the public domain
+# copyright and related rights waived via CC0 1.0
+
+REFERENCES: "P. B. Johnson and R. W. Christy. Optical constants of the noble metals, <a href=\"https://doi.org/10.1103/PhysRevB.6.4370\"><i>Phys. Rev. B</i> <b>6</b>, 4370-4379 (1972)</a>"
+COMMENTS: "Room temperature"
+DATA:
+  - type: tabulated nk
+    data: |
+        0.1879 1.28 1.188
+        0.1916 1.32 1.203
+        0.1953 1.34 1.226
+        0.1993 1.33 1.251
+        0.2033 1.33 1.277
+        0.2073 1.30 1.304
+        0.2119 1.30 1.350
+        0.2164 1.30 1.387
+        0.2214 1.30 1.427
+        0.2262 1.31 1.460
+        0.2313 1.30 1.497
+        0.2371 1.32 1.536
+        0.2426 1.32 1.577
+        0.2490 1.33 1.631
+        0.2551 1.33 1.688
+        0.2616 1.35 1.749
+        0.2689 1.38 1.803
+        0.2761 1.43 1.847
+        0.2844 1.47 1.869
+        0.2924 1.49 1.878
+        0.3009 1.53 1.889
+        0.3107 1.53 1.893
+        0.3204 1.54 1.898
+        0.3315 1.48 1.883
+        0.3425 1.48 1.871
+        0.3542 1.50 1.866
+        0.3679 1.48 1.895
+        0.3815 1.46 1.933
+        0.3974 1.47 1.952
+        0.4133 1.46 1.958
+        0.4305 1.45 1.948
+        0.4509 1.38 1.914
+        0.4714 1.31 1.849
+        0.4959 1.04 1.833
+        0.5209 0.62 2.081
+        0.5486 0.43 2.455
+        0.5821 0.29 2.863
+        0.6168 0.21 3.272
+        0.6595 0.14 3.697
+        0.7045 0.13 4.103
+        0.7560 0.14 4.542
+        0.8211 0.16 5.083
+        0.8920 0.17 5.663
+        0.9840 0.22 6.350
+        1.0880 0.27 7.150
+        1.2160 0.35 8.145
+        1.3930 0.43 9.519
+        1.6100 0.56 11.21
+        1.9370 0.92 13.78

+ 150 - 0
examples/refractiveindex_info/Au-McPeak.yml

@@ -0,0 +1,150 @@
+# this file is part of refractiveindex.info database
+# refractiveindex.info database is in the public domain
+# copyright and related rights waived via CC0 1.0
+
+REFERENCES: "K. M. McPeak, S. V. Jayanti, S. J. P. Kress, S. Meyer, S. Iotti, A. Rossinelli, and D. J. Norris. Plasmonic films can easily be better: Rules and recipes, <a href=\"https://doi.org/10.1021/ph5004237\"><i>ACS Photonics</i> <b>2</b>, 326-333 (2015)</a>"
+COMMENTS: "Thermally evaporated Au at 10 Å/s with base pressure of 3e-8 Torr, template stripped from Si wafer"
+DATA:
+  - type: tabulated nk
+    data: |
+        0.3 1.699838715 1.973157788
+        0.31 1.746948702 1.974499878
+        0.32 1.782941044 1.959795593
+        0.33 1.804652963 1.931950392
+        0.34 1.804621334 1.896796816
+        0.35 1.763712432 1.870684779
+        0.36 1.713434851 1.887670254
+        0.37 1.689202065 1.922090949
+        0.38 1.678059067 1.948381952
+        0.39 1.672504217 1.966512231
+        0.4 1.665616091 1.973924254
+        0.41 1.653911114 1.975227068
+        0.42 1.63743714 1.970304643
+        0.43 1.612343317 1.959477219
+        0.44 1.581523054 1.940313163
+        0.45 1.538326354 1.910745397
+        0.46 1.475285274 1.872315849
+        0.47 1.386263242 1.827683172
+        0.48 1.252905499 1.782097694
+        0.49 1.064360219 1.76786953
+        0.5 0.848474841 1.828280492
+        0.51 0.661635502 1.964525779
+        0.52 0.52912664 2.129735899
+        0.53 0.438041087 2.294990195
+        0.54 0.372502061 2.451664289
+        0.55 0.323930966 2.597158307
+        0.56 0.284960267 2.738978341
+        0.57 0.254069233 2.871855006
+        0.58 0.228936734 2.999518633
+        0.59 0.207122197 3.1213458
+        0.6 0.188789629 3.241703491
+        0.61 0.172726107 3.356759495
+        0.62 0.160071695 3.465634566
+        0.63 0.14636792 3.577628204
+        0.64 0.135417727 3.685964997
+        0.65 0.125499436 3.792327795
+        0.66 0.117832095 3.896137113
+        0.67 0.111117685 3.999543366
+        0.68 0.105744888 4.102704228
+        0.69 0.101509306 4.205033191
+        0.7 0.098607898 4.305081128
+        0.71 0.097790271 4.403812319
+        0.72 0.098623269 4.499191766
+        0.73 0.096903666 4.59580138
+        0.74 0.099463321 4.687205239
+        0.75 0.098537395 4.78107829
+        0.76 0.099206649 4.872354868
+        0.77 0.101706737 4.958865219
+        0.78 0.101315225 5.051560628
+        0.79 0.103067755 5.148069829
+        0.8 0.10422723 5.223682926
+        0.81 0.105937788 5.313023886
+        0.82 0.104338656 5.407391844
+        0.83 0.104534544 5.49244276
+        0.84 0.107001078 5.577046641
+        0.85 0.111012574 5.659268839
+        0.86 0.11076329 5.749197205
+        0.87 0.112038779 5.830570529
+        0.88 0.114173034 5.912954886
+        0.89 0.116004573 5.992867182
+        0.9 0.116828465 6.081993825
+        0.91 0.116997234 6.163820922
+        0.92 0.11945701 6.241575921
+        0.93 0.120635837 6.328550624
+        0.94 0.122558964 6.410383818
+        0.95 0.124002721 6.491793025
+        0.96 0.123935366 6.573991175
+        0.97 0.126244253 6.662877577
+        0.98 0.127974627 6.73805443
+        0.99 0.129942772 6.819155749
+        1 0.132311724 6.904527963
+        1.01 0.133907614 6.978318655
+        1.02 0.135401137 7.061609835
+        1.03 0.138148809 7.141574413
+        1.04 0.137937636 7.222466808
+        1.05 0.139246667 7.302149658
+        1.06 0.134049061 7.406616579
+        1.07 0.135717763 7.48280825
+        1.08 0.140363062 7.556831465
+        1.09 0.138686104 7.637030433
+        1.1 0.138418628 7.719336741
+        1.11 0.139442944 7.79996438
+        1.12 0.141677831 7.874202982
+        1.13 0.141308241 7.960965269
+        1.14 0.140235564 8.050382973
+        1.15 0.142817756 8.114887363
+        1.16 0.146729336 8.201495565
+        1.17 0.152747848 8.26754691
+        1.18 0.149693183 8.350413645
+        1.19 0.147906483 8.443510901
+        1.2 0.149395088 8.515005513
+        1.21 0.151984867 8.589999965
+        1.22 0.153423422 8.666864413
+        1.23 0.153670698 8.744347585
+        1.24 0.157748208 8.81753279
+        1.25 0.159662147 8.900982642
+        1.26 0.165494236 8.987624177
+        1.27 0.159382324 9.068759713
+        1.28 0.163849184 9.146521008
+        1.29 0.166211578 9.226192405
+        1.3 0.166156462 9.303580384
+        1.31 0.170115488 9.372456417
+        1.32 0.169795214 9.445201449
+        1.33 0.174809869 9.530926424
+        1.34 0.176209118 9.61244244
+        1.35 0.179585571 9.687582308
+        1.36 0.177483381 9.769365402
+        1.37 0.184295562 9.839357949
+        1.38 0.186297714 9.916385775
+        1.39 0.190837556 9.992267959
+        1.4 0.191102283 10.07156989
+        1.41 0.194361931 10.14138928
+        1.42 0.205426553 10.22263176
+        1.43 0.208361137 10.32150252
+        1.44 0.206557078 10.37509835
+        1.45 0.208044 10.46581494
+        1.46 0.205758558 10.54050931
+        1.47 0.212405614 10.6421387
+        1.48 0.216697642 10.70593097
+        1.49 0.219902453 10.78046182
+        1.5 0.215398722 10.85893165
+        1.51 0.21956893 10.91137986
+        1.52 0.222004156 11.00587506
+        1.53 0.230589098 11.08617027
+        1.54 0.235210701 11.16849695
+        1.55 0.238229889 11.26307034
+        1.56 0.236761828 11.31706924
+        1.57 0.235275342 11.38092063
+        1.58 0.240819258 11.44281407
+        1.59 0.246290147 11.53172402
+        1.6 0.243652913 11.64299647
+        1.61 0.25211538 11.70912303
+        1.62 0.248830057 11.78354431
+        1.63 0.264448459 11.86507198
+        1.64 0.258451056 11.92798378
+        1.65 0.265882655 12.01168987
+        1.66 0.278561249 12.06969744
+        1.67 0.278188678 12.1875916
+        1.68 0.28090035 12.2404618
+        1.69 0.290244511 12.34683125
+        1.7 0.316481841 12.37053599

+ 509 - 0
examples/refractiveindex_info/SiO2-Gao.yml

@@ -0,0 +1,509 @@
+# this file is part of refractiveindex.info database
+# refractiveindex.info database is in the public domain
+# copyright and related rights waived via CC0 1.0
+
+REFERENCES: "L. Gao, F. Lemarchand, M. Lequime. Refractive index determination of SiO<sub>2</sub> layer in the UV/Vis/NIR range: spectrophotometric reverse engineering on single and bi-layer designs, <a href=\"https://doi.org/10.2971/jeos.2013.13010\"><i>J. Europ. Opt. Soc. Rap. Public.</i> <b>8</b>, 13010 (2013)</a> (Numerical data kindly provided by F. Lemarchand)"
+COMMENTS: "300-nm monolayer deposited on fused silica using the ion assistance electronic beam deposition technique."
+DATA:
+  - type: tabulated nk
+    data: |
+        0.252 1.523846 0.001211
+        0.254 1.522945 0.001171
+        0.256 1.522066 0.001131
+        0.258 1.521208 0.001093
+        0.260 1.520370 0.001055
+        0.262 1.519552 0.001019
+        0.264 1.518753 0.000983
+        0.266 1.517972 0.000949
+        0.268 1.517209 0.000915
+        0.270 1.516463 0.000882
+        0.272 1.515734 0.000850
+        0.274 1.515021 0.000819
+        0.276 1.514325 0.000789
+        0.278 1.513643 0.000759
+        0.280 1.512977 0.000730
+        0.282 1.512325 0.000702
+        0.284 1.511687 0.000675
+        0.286 1.511063 0.000649
+        0.288 1.510452 0.000623
+        0.290 1.509854 0.000598
+        0.292 1.509268 0.000574
+        0.294 1.508695 0.000550
+        0.296 1.508134 0.000527
+        0.298 1.507584 0.000505
+        0.300 1.507046 0.000483
+        0.302 1.506518 0.000462
+        0.304 1.506002 0.000441
+        0.306 1.505495 0.000421
+        0.308 1.504999 0.000402
+        0.310 1.504512 0.000383
+        0.312 1.504035 0.000365
+        0.314 1.503568 0.000348
+        0.316 1.503109 0.000331
+        0.318 1.502660 0.000314
+        0.320 1.502219 0.000298
+        0.322 1.501786 0.000283
+        0.324 1.501361 0.000268
+        0.326 1.500945 0.000253
+        0.328 1.500536 0.000240
+        0.330 1.500135 0.000226
+        0.332 1.499742 0.000213
+        0.334 1.499355 0.000200
+        0.336 1.498976 0.000188
+        0.338 1.498603 0.000177
+        0.340 1.498238 0.000166
+        0.342 1.497878 0.000155
+        0.344 1.497525 0.000144
+        0.346 1.497179 0.000135
+        0.348 1.496838 0.000125
+        0.350 1.496504 0.000116
+        0.352 1.496175 0.000107
+        0.354 1.495852 0.000099
+        0.356 1.495534 0.000091
+        0.358 1.495222 0.000083
+        0.360 1.494915 0.000076
+        0.362 1.494613 0.000069
+        0.364 1.494316 0.000063
+        0.366 1.494025 0.000057
+        0.368 1.493738 0.000051
+        0.370 1.493455 0.000045
+        0.372 1.493177 0.000040
+        0.374 1.492904 0.000036
+        0.376 1.492635 0.000031
+        0.378 1.492370 0.000027
+        0.380 1.492110 0.000023
+        0.382 1.491854 0.000020
+        0.384 1.491601 0.000016
+        0.386 1.491353 0.000014
+        0.388 1.491108 0.000011
+        0.390 1.490867 0.000009
+        0.392 1.490629 0.000007
+        0.394 1.490396 0.000005
+        0.396 1.490165 0.000003
+        0.398 1.489938 0.000002
+        0.400 1.489714 0.000001
+        0.402 1.489494 0.000001
+        0.404 1.489276 0.000000
+        0.406 1.489062 0.000000
+        0.408 1.488850 0.000000
+        0.410 1.488641 0.000000
+        0.412 1.488435 0.000000
+        0.414 1.488231 0.000000
+        0.416 1.488031 0.000000
+        0.418 1.487833 0.000000
+        0.420 1.487638 0.000000
+        0.422 1.487446 0.000000
+        0.424 1.487256 0.000000
+        0.426 1.487069 0.000000
+        0.428 1.486884 0.000000
+        0.430 1.486702 0.000000
+        0.432 1.486522 0.000000
+        0.434 1.486345 0.000000
+        0.436 1.486170 0.000000
+        0.438 1.485997 0.000000
+        0.440 1.485827 0.000000
+        0.442 1.485659 0.000000
+        0.444 1.485493 0.000000
+        0.446 1.485329 0.000000
+        0.448 1.485167 0.000000
+        0.450 1.485008 0.000000
+        0.452 1.484851 0.000000
+        0.454 1.484695 0.000000
+        0.456 1.484542 0.000000
+        0.458 1.484390 0.000000
+        0.460 1.484241 0.000000
+        0.462 1.484094 0.000000
+        0.464 1.483948 0.000000
+        0.466 1.483804 0.000000
+        0.468 1.483662 0.000000
+        0.470 1.483522 0.000000
+        0.472 1.483383 0.000000
+        0.474 1.483247 0.000000
+        0.476 1.483111 0.000000
+        0.478 1.482978 0.000000
+        0.480 1.482846 0.000000
+        0.482 1.482716 0.000000
+        0.484 1.482588 0.000000
+        0.486 1.482461 0.000000
+        0.488 1.482335 0.000000
+        0.490 1.482211 0.000000
+        0.492 1.482089 0.000000
+        0.494 1.481968 0.000000
+        0.496 1.481848 0.000000
+        0.498 1.481730 0.000000
+        0.500 1.481613 0.000000
+        0.502 1.481498 0.000000
+        0.504 1.481384 0.000000
+        0.506 1.481271 0.000000
+        0.508 1.481160 0.000000
+        0.510 1.481050 0.000000
+        0.512 1.480941 0.000000
+        0.514 1.480834 0.000000
+        0.516 1.480727 0.000000
+        0.518 1.480622 0.000000
+        0.520 1.480518 0.000000
+        0.522 1.480416 0.000000
+        0.524 1.480314 0.000000
+        0.526 1.480214 0.000000
+        0.528 1.480115 0.000000
+        0.530 1.480016 0.000000
+        0.532 1.479919 0.000000
+        0.534 1.479823 0.000000
+        0.536 1.479729 0.000000
+        0.538 1.479635 0.000000
+        0.540 1.479542 0.000000
+        0.542 1.479450 0.000000
+        0.544 1.479359 0.000000
+        0.546 1.479269 0.000000
+        0.548 1.479181 0.000000
+        0.550 1.479093 0.000000
+        0.552 1.479006 0.000000
+        0.554 1.478920 0.000000
+        0.556 1.478835 0.000000
+        0.558 1.478751 0.000000
+        0.560 1.478667 0.000000
+        0.562 1.478585 0.000000
+        0.564 1.478503 0.000000
+        0.566 1.478423 0.000000
+        0.568 1.478343 0.000000
+        0.570 1.478264 0.000000
+        0.572 1.478186 0.000000
+        0.574 1.478108 0.000000
+        0.576 1.478032 0.000000
+        0.578 1.477956 0.000000
+        0.580 1.477881 0.000000
+        0.582 1.477807 0.000000
+        0.584 1.477733 0.000000
+        0.586 1.477660 0.000000
+        0.588 1.477588 0.000000
+        0.590 1.477517 0.000000
+        0.592 1.477447 0.000000
+        0.594 1.477377 0.000000
+        0.596 1.477308 0.000000
+        0.598 1.477239 0.000000
+        0.600 1.477171 0.000000
+        0.602 1.477104 0.000000
+        0.604 1.477038 0.000000
+        0.606 1.476972 0.000000
+        0.608 1.476907 0.000000
+        0.610 1.476842 0.000000
+        0.612 1.476778 0.000000
+        0.614 1.476715 0.000000
+        0.616 1.476652 0.000000
+        0.618 1.476590 0.000000
+        0.620 1.476529 0.000000
+        0.622 1.476468 0.000000
+        0.624 1.476408 0.000000
+        0.626 1.476348 0.000000
+        0.628 1.476289 0.000000
+        0.630 1.476230 0.000000
+        0.632 1.476172 0.000000
+        0.634 1.476115 0.000000
+        0.636 1.476058 0.000000
+        0.638 1.476001 0.000000
+        0.640 1.475946 0.000000
+        0.642 1.475890 0.000000
+        0.644 1.475835 0.000000
+        0.646 1.475781 0.000000
+        0.648 1.475727 0.000000
+        0.650 1.475674 0.000000
+        0.652 1.475621 0.000000
+        0.654 1.475568 0.000000
+        0.656 1.475517 0.000000
+        0.658 1.475465 0.000000
+        0.660 1.475414 0.000000
+        0.662 1.475364 0.000000
+        0.664 1.475314 0.000000
+        0.666 1.475264 0.000000
+        0.668 1.475215 0.000000
+        0.670 1.475166 0.000000
+        0.672 1.475118 0.000000
+        0.674 1.475070 0.000000
+        0.676 1.475022 0.000000
+        0.678 1.474975 0.000000
+        0.680 1.474929 0.000000
+        0.682 1.474883 0.000000
+        0.684 1.474837 0.000000
+        0.686 1.474791 0.000000
+        0.688 1.474746 0.000000
+        0.690 1.474702 0.000000
+        0.692 1.474657 0.000000
+        0.694 1.474614 0.000000
+        0.696 1.474570 0.000000
+        0.698 1.474527 0.000000
+        0.700 1.474484 0.000000
+        0.702 1.474442 0.000000
+        0.704 1.474400 0.000000
+        0.706 1.474358 0.000000
+        0.708 1.474317 0.000000
+        0.710 1.474276 0.000000
+        0.712 1.474235 0.000000
+        0.714 1.474195 0.000000
+        0.716 1.474155 0.000000
+        0.718 1.474115 0.000000
+        0.720 1.474076 0.000000
+        0.722 1.474037 0.000000
+        0.724 1.473998 0.000000
+        0.726 1.473960 0.000000
+        0.728 1.473922 0.000000
+        0.730 1.473884 0.000000
+        0.732 1.473847 0.000000
+        0.734 1.473810 0.000000
+        0.736 1.473773 0.000000
+        0.738 1.473737 0.000000
+        0.740 1.473700 0.000000
+        0.742 1.473665 0.000000
+        0.744 1.473629 0.000000
+        0.746 1.473594 0.000000
+        0.748 1.473559 0.000000
+        0.750 1.473524 0.000000
+        0.752 1.473489 0.000000
+        0.754 1.473455 0.000000
+        0.756 1.473421 0.000000
+        0.758 1.473387 0.000000
+        0.760 1.473354 0.000000
+        0.762 1.473321 0.000000
+        0.764 1.473288 0.000000
+        0.766 1.473255 0.000000
+        0.768 1.473223 0.000000
+        0.770 1.473191 0.000000
+        0.772 1.473159 0.000000
+        0.774 1.473127 0.000000
+        0.776 1.473096 0.000000
+        0.778 1.473065 0.000000
+        0.780 1.473034 0.000000
+        0.782 1.473003 0.000000
+        0.784 1.472973 0.000000
+        0.786 1.472942 0.000000
+        0.788 1.472912 0.000000
+        0.790 1.472883 0.000000
+        0.792 1.472853 0.000000
+        0.794 1.472824 0.000000
+        0.796 1.472795 0.000000
+        0.798 1.472766 0.000000
+        0.800 1.472737 0.000000
+        0.802 1.472709 0.000000
+        0.804 1.472680 0.000000
+        0.806 1.472652 0.000000
+        0.808 1.472625 0.000000
+        0.810 1.472597 0.000000
+        0.812 1.472570 0.000000
+        0.814 1.472542 0.000000
+        0.816 1.472515 0.000000
+        0.818 1.472489 0.000000
+        0.820 1.472462 0.000000
+        0.822 1.472436 0.000000
+        0.824 1.472409 0.000000
+        0.826 1.472383 0.000000
+        0.828 1.472357 0.000000
+        0.830 1.472332 0.000000
+        0.832 1.472306 0.000000
+        0.834 1.472281 0.000000
+        0.836 1.472256 0.000000
+        0.838 1.472231 0.000000
+        0.840 1.472206 0.000000
+        0.842 1.472182 0.000000
+        0.844 1.472157 0.000000
+        0.846 1.472133 0.000000
+        0.848 1.472109 0.000000
+        0.850 1.472085 0.000000
+        0.852 1.472061 0.000000
+        0.854 1.472038 0.000000
+        0.856 1.472014 0.000000
+        0.858 1.471991 0.000000
+        0.860 1.471968 0.000000
+        0.862 1.471945 0.000000
+        0.864 1.471922 0.000000
+        0.866 1.471900 0.000000
+        0.868 1.471877 0.000000
+        0.870 1.471855 0.000000
+        0.872 1.471833 0.000000
+        0.874 1.471811 0.000000
+        0.876 1.471789 0.000000
+        0.878 1.471767 0.000000
+        0.880 1.471746 0.000000
+        0.882 1.471724 0.000000
+        0.884 1.471703 0.000000
+        0.886 1.471682 0.000000
+        0.888 1.471661 0.000000
+        0.890 1.471640 0.000000
+        0.892 1.471620 0.000000
+        0.894 1.471599 0.000000
+        0.896 1.471579 0.000000
+        0.898 1.471558 0.000000
+        0.900 1.471538 0.000000
+        0.902 1.471518 0.000000
+        0.904 1.471498 0.000000
+        0.906 1.471479 0.000000
+        0.908 1.471459 0.000000
+        0.910 1.471439 0.000000
+        0.912 1.471420 0.000000
+        0.914 1.471401 0.000000
+        0.916 1.471382 0.000000
+        0.918 1.471363 0.000000
+        0.920 1.471344 0.000000
+        0.922 1.471325 0.000000
+        0.924 1.471307 0.000000
+        0.926 1.471288 0.000000
+        0.928 1.471270 0.000000
+        0.930 1.471251 0.000000
+        0.932 1.471233 0.000000
+        0.934 1.471215 0.000000
+        0.936 1.471197 0.000000
+        0.938 1.471180 0.000000
+        0.940 1.471162 0.000000
+        0.942 1.471144 0.000000
+        0.944 1.471127 0.000000
+        0.946 1.471110 0.000000
+        0.948 1.471092 0.000000
+        0.950 1.471075 0.000000
+        0.952 1.471058 0.000000
+        0.954 1.471041 0.000000
+        0.956 1.471025 0.000000
+        0.958 1.471008 0.000000
+        0.960 1.470991 0.000000
+        0.962 1.470975 0.000000
+        0.964 1.470958 0.000000
+        0.966 1.470942 0.000000
+        0.968 1.470926 0.000000
+        0.970 1.470910 0.000000
+        0.972 1.470894 0.000000
+        0.974 1.470878 0.000000
+        0.976 1.470862 0.000000
+        0.978 1.470846 0.000000
+        0.980 1.470831 0.000000
+        0.982 1.470815 0.000000
+        0.984 1.470800 0.000000
+        0.986 1.470785 0.000000
+        0.988 1.470769 0.000000
+        0.990 1.470754 0.000000
+        0.992 1.470739 0.000000
+        0.994 1.470724 0.000000
+        0.996 1.470709 0.000000
+        0.998 1.470695 0.000000
+        1.000 1.470680 0.000000
+        1.002 1.470665 0.000000
+        1.004 1.470651 0.000000
+        1.006 1.470636 0.000000
+        1.008 1.470622 0.000000
+        1.010 1.470608 0.000000
+        1.012 1.470594 0.000000
+        1.014 1.470580 0.000000
+        1.016 1.470566 0.000000
+        1.018 1.470552 0.000000
+        1.020 1.470538 0.000000
+        1.022 1.470524 0.000000
+        1.024 1.470510 0.000000
+        1.026 1.470497 0.000000
+        1.028 1.470483 0.000000
+        1.030 1.470470 0.000000
+        1.032 1.470456 0.000000
+        1.034 1.470443 0.000000
+        1.036 1.470430 0.000000
+        1.038 1.470417 0.000000
+        1.040 1.470404 0.000000
+        1.042 1.470391 0.000000
+        1.044 1.470378 0.000000
+        1.046 1.470365 0.000000
+        1.048 1.470352 0.000000
+        1.050 1.470340 0.000000
+        1.052 1.470327 0.000000
+        1.054 1.470314 0.000000
+        1.056 1.470302 0.000000
+        1.058 1.470290 0.000000
+        1.060 1.470277 0.000000
+        1.062 1.470265 0.000000
+        1.064 1.470253 0.000000
+        1.066 1.470241 0.000000
+        1.068 1.470229 0.000000
+        1.070 1.470217 0.000000
+        1.072 1.470205 0.000000
+        1.074 1.470193 0.000000
+        1.076 1.470181 0.000000
+        1.078 1.470169 0.000000
+        1.080 1.470158 0.000000
+        1.082 1.470146 0.000000
+        1.084 1.470135 0.000000
+        1.086 1.470123 0.000000
+        1.088 1.470112 0.000000
+        1.090 1.470100 0.000000
+        1.092 1.470089 0.000000
+        1.094 1.470078 0.000000
+        1.096 1.470067 0.000000
+        1.098 1.470056 0.000000
+        1.100 1.470045 0.000000
+        1.102 1.470034 0.000000
+        1.104 1.470023 0.000000
+        1.106 1.470012 0.000000
+        1.108 1.470001 0.000000
+        1.110 1.469990 0.000000
+        1.112 1.469980 0.000000
+        1.114 1.469969 0.000000
+        1.116 1.469958 0.000000
+        1.118 1.469948 0.000000
+        1.120 1.469937 0.000000
+        1.122 1.469927 0.000000
+        1.124 1.469917 0.000000
+        1.126 1.469906 0.000000
+        1.128 1.469896 0.000000
+        1.130 1.469886 0.000000
+        1.132 1.469876 0.000000
+        1.134 1.469866 0.000000
+        1.136 1.469856 0.000000
+        1.138 1.469846 0.000000
+        1.140 1.469836 0.000000
+        1.142 1.469826 0.000000
+        1.144 1.469816 0.000000
+        1.146 1.469807 0.000000
+        1.148 1.469797 0.000000
+        1.150 1.469787 0.000000
+        1.152 1.469778 0.000000
+        1.154 1.469768 0.000000
+        1.156 1.469758 0.000000
+        1.158 1.469749 0.000000
+        1.160 1.469740 0.000000
+        1.162 1.469730 0.000000
+        1.164 1.469721 0.000000
+        1.166 1.469712 0.000000
+        1.168 1.469702 0.000000
+        1.170 1.469693 0.000000
+        1.172 1.469684 0.000000
+        1.174 1.469675 0.000000
+        1.176 1.469666 0.000000
+        1.178 1.469657 0.000000
+        1.180 1.469648 0.000000
+        1.182 1.469639 0.000000
+        1.184 1.469630 0.000000
+        1.186 1.469622 0.000000
+        1.188 1.469613 0.000000
+        1.190 1.469604 0.000000
+        1.192 1.469595 0.000000
+        1.194 1.469587 0.000000
+        1.196 1.469578 0.000000
+        1.198 1.469570 0.000000
+        1.200 1.469561 0.000000
+        1.202 1.469553 0.000000
+        1.204 1.469544 0.000000
+        1.206 1.469536 0.000000
+        1.208 1.469528 0.000000
+        1.210 1.469519 0.000000
+        1.212 1.469511 0.000000
+        1.214 1.469503 0.000000
+        1.216 1.469495 0.000000
+        1.218 1.469487 0.000000
+        1.220 1.469478 0.000000
+        1.222 1.469470 0.000000
+        1.224 1.469462 0.000000
+        1.226 1.469454 0.000000
+        1.228 1.469447 0.000000
+        1.230 1.469439 0.000000
+        1.232 1.469431 0.000000
+        1.234 1.469423 0.000000
+        1.236 1.469415 0.000000
+        1.238 1.469407 0.000000
+        1.240 1.469400 0.000000
+        1.242 1.469392 0.000000
+        1.244 1.469384 0.000000
+        1.246 1.469377 0.000000
+        1.248 1.469369 0.000000
+        1.250 1.469362 0.000000

+ 987 - 0
examples/refractiveindex_info/TiO2-Sarkar.yml

@@ -0,0 +1,987 @@
+# this file is part of refractiveindex.info database
+# refractiveindex.info database is in the public domain
+# copyright and related rights waived via CC0 1.0
+
+REFERENCES: "S. Sarkar, V. Gupta, M. Kumar, J. Schubert, P.T. Probst, J. Joseph, T.A.F. König, Hybridized guided-mode resonances via colloidal plasmonic self-assembled grating, <a href=\"https://doi.org/10.1021/acsami.8b20535\"><i>ACS Appl. Mater. Interfaces</i>, <b>11</b>, 13752-13760 (2019)</a><br>(Numerical data kindly provided by Dr. Tobias König)"
+COMMENTS: "Titanium(IV) oxide (Titanium dioxide, TiO<sub>2</sub>) thin film (thickness 200 nm) on glass substrate."
+DATA:
+  - type: tabulated nk
+    data: |
+        0.3000 2.809982 0.592784
+        0.3010 2.813419 0.577750
+        0.3020 2.816447 0.562667
+        0.3030 2.819065 0.547550
+        0.3040 2.821271 0.532415
+        0.3050 2.823066 0.517277
+        0.3060 2.824450 0.502151
+        0.3070 2.825424 0.487053
+        0.3080 2.825990 0.471999
+        0.3090 2.826151 0.457002
+        0.3100 2.825911 0.442080
+        0.3110 2.825273 0.427245
+        0.3120 2.824241 0.412513
+        0.3130 2.822823 0.397898
+        0.3140 2.821022 0.383415
+        0.3150 2.818847 0.369075
+        0.3160 2.816303 0.354894
+        0.3170 2.813400 0.340882
+        0.3180 2.810145 0.327054
+        0.3190 2.806546 0.313421
+        0.3200 2.802613 0.299994
+        0.3210 2.798357 0.286784
+        0.3220 2.793785 0.273802
+        0.3230 2.788909 0.261057
+        0.3240 2.783740 0.248560
+        0.3250 2.778289 0.236318
+        0.3260 2.772566 0.224341
+        0.3270 2.766583 0.212636
+        0.3280 2.760352 0.201211
+        0.3290 2.753886 0.190071
+        0.3300 2.747194 0.179225
+        0.3310 2.740291 0.168676
+        0.3320 2.733188 0.158431
+        0.3330 2.725897 0.148493
+        0.3340 2.718431 0.138869
+        0.3350 2.710803 0.129560
+        0.3360 2.703024 0.120570
+        0.3370 2.695107 0.111903
+        0.3380 2.687065 0.103560
+        0.3390 2.678910 0.095544
+        0.3400 2.670654 0.087855
+        0.3410 2.662310 0.080496
+        0.3420 2.653890 0.073466
+        0.3430 2.645406 0.066767
+        0.3440 2.636872 0.060398
+        0.3450 2.628298 0.054359
+        0.3460 2.619697 0.048650
+        0.3470 2.611082 0.043269
+        0.3480 2.602464 0.038216
+        0.3490 2.593856 0.033488
+        0.3500 2.585271 0.029085
+        0.3510 2.576720 0.025004
+        0.3520 2.568217 0.021243
+        0.3530 2.559774 0.017800
+        0.3540 2.551405 0.014672
+        0.3550 2.543123 0.011855
+        0.3560 2.534941 0.009348
+        0.3570 2.526875 0.007147
+        0.3580 2.518941 0.005249
+        0.3590 2.511155 0.003650
+        0.3600 2.503537 0.002345
+        0.3610 2.496109 0.001333
+        0.3620 2.488899 0.000607
+        0.3630 2.481942 0.000165
+        0.3640 2.475302 0.000001
+        0.3650 2.469105 0.000000
+        0.3660 2.463245 0.000000
+        0.3670 2.457644 0.000000
+        0.3680 2.452265 0.000000
+        0.3690 2.447081 0.000000
+        0.3700 2.442075 0.000000
+        0.3710 2.437230 0.000000
+        0.3720 2.432534 0.000000
+        0.3730 2.427977 0.000000
+        0.3740 2.423549 0.000000
+        0.3750 2.419242 0.000000
+        0.3760 2.415049 0.000000
+        0.3770 2.410964 0.000000
+        0.3780 2.406981 0.000000
+        0.3790 2.403094 0.000000
+        0.3800 2.399300 0.000000
+        0.3810 2.395594 0.000000
+        0.3820 2.391972 0.000000
+        0.3830 2.388430 0.000000
+        0.3840 2.384965 0.000000
+        0.3850 2.381574 0.000000
+        0.3860 2.378253 0.000000
+        0.3870 2.375001 0.000000
+        0.3880 2.371814 0.000000
+        0.3890 2.368690 0.000000
+        0.3900 2.365628 0.000000
+        0.3910 2.362623 0.000000
+        0.3920 2.359676 0.000000
+        0.3930 2.356783 0.000000
+        0.3940 2.353943 0.000000
+        0.3950 2.351155 0.000000
+        0.3960 2.348416 0.000000
+        0.3970 2.345725 0.000000
+        0.3980 2.343081 0.000000
+        0.3990 2.340482 0.000000
+        0.4000 2.337928 0.000000
+        0.4010 2.335415 0.000000
+        0.4020 2.332945 0.000000
+        0.4030 2.330514 0.000000
+        0.4040 2.328123 0.000000
+        0.4050 2.325770 0.000000
+        0.4060 2.323454 0.000000
+        0.4070 2.321174 0.000000
+        0.4080 2.318929 0.000000
+        0.4090 2.316718 0.000000
+        0.4100 2.314541 0.000000
+        0.4110 2.312397 0.000000
+        0.4120 2.310284 0.000000
+        0.4130 2.308202 0.000000
+        0.4140 2.306150 0.000000
+        0.4150 2.304128 0.000000
+        0.4160 2.302135 0.000000
+        0.4170 2.300170 0.000000
+        0.4180 2.298232 0.000000
+        0.4190 2.296322 0.000000
+        0.4200 2.294437 0.000000
+        0.4210 2.292579 0.000000
+        0.4220 2.290745 0.000000
+        0.4230 2.288936 0.000000
+        0.4240 2.287151 0.000000
+        0.4250 2.285390 0.000000
+        0.4260 2.283652 0.000000
+        0.4270 2.281936 0.000000
+        0.4280 2.280242 0.000000
+        0.4290 2.278570 0.000000
+        0.4300 2.276919 0.000000
+        0.4310 2.275290 0.000000
+        0.4320 2.273680 0.000000
+        0.4330 2.272090 0.000000
+        0.4340 2.270520 0.000000
+        0.4350 2.268969 0.000000
+        0.4360 2.267437 0.000000
+        0.4370 2.265924 0.000000
+        0.4380 2.264428 0.000000
+        0.4390 2.262951 0.000000
+        0.4400 2.261491 0.000000
+        0.4410 2.260048 0.000000
+        0.4420 2.258621 0.000000
+        0.4430 2.257212 0.000000
+        0.4440 2.255818 0.000000
+        0.4450 2.254441 0.000000
+        0.4460 2.253079 0.000000
+        0.4470 2.251733 0.000000
+        0.4480 2.250401 0.000000
+        0.4490 2.249085 0.000000
+        0.4500 2.247783 0.000000
+        0.4510 2.246495 0.000000
+        0.4520 2.245222 0.000000
+        0.4530 2.243962 0.000000
+        0.4540 2.242716 0.000000
+        0.4550 2.241484 0.000000
+        0.4560 2.240264 0.000000
+        0.4570 2.239058 0.000000
+        0.4580 2.237864 0.000000
+        0.4590 2.236683 0.000000
+        0.4600 2.235515 0.000000
+        0.4610 2.234358 0.000000
+        0.4620 2.233213 0.000000
+        0.4630 2.232080 0.000000
+        0.4640 2.230959 0.000000
+        0.4650 2.229850 0.000000
+        0.4660 2.228751 0.000000
+        0.4670 2.227664 0.000000
+        0.4680 2.226587 0.000000
+        0.4690 2.225521 0.000000
+        0.4700 2.224466 0.000000
+        0.4710 2.223421 0.000000
+        0.4720 2.222386 0.000000
+        0.4730 2.221362 0.000000
+        0.4740 2.220347 0.000000
+        0.4750 2.219342 0.000000
+        0.4760 2.218348 0.000000
+        0.4770 2.217362 0.000000
+        0.4780 2.216386 0.000000
+        0.4790 2.215419 0.000000
+        0.4800 2.214461 0.000000
+        0.4810 2.213512 0.000000
+        0.4820 2.212573 0.000000
+        0.4830 2.211642 0.000000
+        0.4840 2.210719 0.000000
+        0.4850 2.209805 0.000000
+        0.4860 2.208900 0.000000
+        0.4870 2.208002 0.000000
+        0.4880 2.207113 0.000000
+        0.4890 2.206232 0.000000
+        0.4900 2.205359 0.000000
+        0.4910 2.204494 0.000000
+        0.4920 2.203636 0.000000
+        0.4930 2.202787 0.000000
+        0.4940 2.201944 0.000000
+        0.4950 2.201109 0.000000
+        0.4960 2.200282 0.000000
+        0.4970 2.199461 0.000000
+        0.4980 2.198648 0.000000
+        0.4990 2.197842 0.000000
+        0.5000 2.197043 0.000000
+        0.5010 2.196251 0.000000
+        0.5020 2.195466 0.000000
+        0.5030 2.194687 0.000000
+        0.5040 2.193915 0.000000
+        0.5050 2.193149 0.000000
+        0.5060 2.192390 0.000000
+        0.5070 2.191637 0.000000
+        0.5080 2.190891 0.000000
+        0.5090 2.190151 0.000000
+        0.5100 2.189417 0.000000
+        0.5110 2.188689 0.000000
+        0.5120 2.187967 0.000000
+        0.5130 2.187251 0.000000
+        0.5140 2.186540 0.000000
+        0.5150 2.185836 0.000000
+        0.5160 2.185137 0.000000
+        0.5170 2.184444 0.000000
+        0.5180 2.183757 0.000000
+        0.5190 2.183075 0.000000
+        0.5200 2.182399 0.000000
+        0.5210 2.181727 0.000000
+        0.5220 2.181062 0.000000
+        0.5230 2.180401 0.000000
+        0.5240 2.179746 0.000000
+        0.5250 2.179096 0.000000
+        0.5260 2.178451 0.000000
+        0.5270 2.177811 0.000000
+        0.5280 2.177176 0.000000
+        0.5290 2.176546 0.000000
+        0.5300 2.175920 0.000000
+        0.5310 2.175300 0.000000
+        0.5320 2.174684 0.000000
+        0.5330 2.174073 0.000000
+        0.5340 2.173467 0.000000
+        0.5350 2.172865 0.000000
+        0.5360 2.172268 0.000000
+        0.5370 2.171675 0.000000
+        0.5380 2.171087 0.000000
+        0.5390 2.170503 0.000000
+        0.5400 2.169924 0.000000
+        0.5410 2.169348 0.000000
+        0.5420 2.168777 0.000000
+        0.5430 2.168211 0.000000
+        0.5440 2.167648 0.000000
+        0.5450 2.167090 0.000000
+        0.5460 2.166535 0.000000
+        0.5470 2.165985 0.000000
+        0.5480 2.165439 0.000000
+        0.5490 2.164896 0.000000
+        0.5500 2.164358 0.000000
+        0.5510 2.163823 0.000000
+        0.5520 2.163293 0.000000
+        0.5530 2.162766 0.000000
+        0.5540 2.162242 0.000000
+        0.5550 2.161723 0.000000
+        0.5560 2.161207 0.000000
+        0.5570 2.160695 0.000000
+        0.5580 2.160187 0.000000
+        0.5590 2.159682 0.000000
+        0.5600 2.159180 0.000000
+        0.5610 2.158682 0.000000
+        0.5620 2.158188 0.000000
+        0.5630 2.157697 0.000000
+        0.5640 2.157209 0.000000
+        0.5650 2.156725 0.000000
+        0.5660 2.156244 0.000000
+        0.5670 2.155766 0.000000
+        0.5680 2.155292 0.000000
+        0.5690 2.154821 0.000000
+        0.5700 2.154353 0.000000
+        0.5710 2.153888 0.000000
+        0.5720 2.153426 0.000000
+        0.5730 2.152968 0.000000
+        0.5740 2.152512 0.000000
+        0.5750 2.152060 0.000000
+        0.5760 2.151610 0.000000
+        0.5770 2.151164 0.000000
+        0.5780 2.150721 0.000000
+        0.5790 2.150280 0.000000
+        0.5800 2.149843 0.000000
+        0.5810 2.149408 0.000000
+        0.5820 2.148976 0.000000
+        0.5830 2.148547 0.000000
+        0.5840 2.148121 0.000000
+        0.5850 2.147697 0.000000
+        0.5860 2.147276 0.000000
+        0.5870 2.146858 0.000000
+        0.5880 2.146443 0.000000
+        0.5890 2.146030 0.000000
+        0.5900 2.145621 0.000000
+        0.5910 2.145213 0.000000
+        0.5920 2.144809 0.000000
+        0.5930 2.144406 0.000000
+        0.5940 2.144007 0.000000
+        0.5950 2.143610 0.000000
+        0.5960 2.143215 0.000000
+        0.5970 2.142823 0.000000
+        0.5980 2.142433 0.000000
+        0.5990 2.142046 0.000000
+        0.6000 2.141661 0.000000
+        0.6010 2.141279 0.000000
+        0.6020 2.140899 0.000000
+        0.6030 2.140521 0.000000
+        0.6040 2.140146 0.000000
+        0.6050 2.139773 0.000000
+        0.6060 2.139402 0.000000
+        0.6070 2.139034 0.000000
+        0.6080 2.138668 0.000000
+        0.6090 2.138304 0.000000
+        0.6100 2.137942 0.000000
+        0.6110 2.137583 0.000000
+        0.6120 2.137226 0.000000
+        0.6130 2.136870 0.000000
+        0.6140 2.136517 0.000000
+        0.6150 2.136167 0.000000
+        0.6160 2.135818 0.000000
+        0.6170 2.135471 0.000000
+        0.6180 2.135126 0.000000
+        0.6190 2.134784 0.000000
+        0.6200 2.134443 0.000000
+        0.6210 2.134105 0.000000
+        0.6220 2.133768 0.000000
+        0.6230 2.133434 0.000000
+        0.6240 2.133101 0.000000
+        0.6250 2.132771 0.000000
+        0.6260 2.132442 0.000000
+        0.6270 2.132115 0.000000
+        0.6280 2.131790 0.000000
+        0.6290 2.131468 0.000000
+        0.6300 2.131146 0.000000
+        0.6310 2.130827 0.000000
+        0.6320 2.130510 0.000000
+        0.6330 2.130194 0.000000
+        0.6340 2.129881 0.000000
+        0.6350 2.129569 0.000000
+        0.6360 2.129259 0.000000
+        0.6370 2.128950 0.000000
+        0.6380 2.128644 0.000000
+        0.6390 2.128339 0.000000
+        0.6400 2.128036 0.000000
+        0.6410 2.127734 0.000000
+        0.6420 2.127434 0.000000
+        0.6430 2.127136 0.000000
+        0.6440 2.126840 0.000000
+        0.6450 2.126545 0.000000
+        0.6460 2.126252 0.000000
+        0.6470 2.125961 0.000000
+        0.6480 2.125671 0.000000
+        0.6490 2.125383 0.000000
+        0.6500 2.125097 0.000000
+        0.6510 2.124811 0.000000
+        0.6520 2.124528 0.000000
+        0.6530 2.124246 0.000000
+        0.6540 2.123966 0.000000
+        0.6550 2.123687 0.000000
+        0.6560 2.123410 0.000000
+        0.6570 2.123134 0.000000
+        0.6580 2.122860 0.000000
+        0.6590 2.122587 0.000000
+        0.6600 2.122316 0.000000
+        0.6610 2.122046 0.000000
+        0.6620 2.121778 0.000000
+        0.6630 2.121511 0.000000
+        0.6640 2.121245 0.000000
+        0.6650 2.120981 0.000000
+        0.6660 2.120719 0.000000
+        0.6670 2.120458 0.000000
+        0.6680 2.120198 0.000000
+        0.6690 2.119939 0.000000
+        0.6700 2.119682 0.000000
+        0.6710 2.119426 0.000000
+        0.6720 2.119172 0.000000
+        0.6730 2.118919 0.000000
+        0.6740 2.118668 0.000000
+        0.6750 2.118417 0.000000
+        0.6760 2.118168 0.000000
+        0.6770 2.117920 0.000000
+        0.6780 2.117674 0.000000
+        0.6790 2.117429 0.000000
+        0.6800 2.117185 0.000000
+        0.6810 2.116942 0.000000
+        0.6820 2.116701 0.000000
+        0.6830 2.116461 0.000000
+        0.6840 2.116222 0.000000
+        0.6850 2.115984 0.000000
+        0.6860 2.115748 0.000000
+        0.6870 2.115513 0.000000
+        0.6880 2.115279 0.000000
+        0.6890 2.115046 0.000000
+        0.6900 2.114814 0.000000
+        0.6910 2.114584 0.000000
+        0.6920 2.114355 0.000000
+        0.6930 2.114126 0.000000
+        0.6940 2.113899 0.000000
+        0.6950 2.113674 0.000000
+        0.6960 2.113449 0.000000
+        0.6970 2.113225 0.000000
+        0.6980 2.113003 0.000000
+        0.6990 2.112782 0.000000
+        0.7000 2.112561 0.000000
+        0.7010 2.112342 0.000000
+        0.7020 2.112124 0.000000
+        0.7030 2.111907 0.000000
+        0.7040 2.111692 0.000000
+        0.7050 2.111477 0.000000
+        0.7060 2.111263 0.000000
+        0.7070 2.111050 0.000000
+        0.7080 2.110839 0.000000
+        0.7090 2.110628 0.000000
+        0.7100 2.110419 0.000000
+        0.7110 2.110210 0.000000
+        0.7120 2.110003 0.000000
+        0.7130 2.109796 0.000000
+        0.7140 2.109591 0.000000
+        0.7150 2.109386 0.000000
+        0.7160 2.109183 0.000000
+        0.7170 2.108980 0.000000
+        0.7180 2.108779 0.000000
+        0.7190 2.108578 0.000000
+        0.7200 2.108378 0.000000
+        0.7210 2.108180 0.000000
+        0.7220 2.107982 0.000000
+        0.7230 2.107785 0.000000
+        0.7240 2.107589 0.000000
+        0.7250 2.107395 0.000000
+        0.7260 2.107201 0.000000
+        0.7270 2.107008 0.000000
+        0.7280 2.106816 0.000000
+        0.7290 2.106624 0.000000
+        0.7300 2.106434 0.000000
+        0.7310 2.106245 0.000000
+        0.7320 2.106056 0.000000
+        0.7330 2.105869 0.000000
+        0.7340 2.105682 0.000000
+        0.7350 2.105496 0.000000
+        0.7360 2.105311 0.000000
+        0.7370 2.105127 0.000000
+        0.7380 2.104944 0.000000
+        0.7390 2.104761 0.000000
+        0.7400 2.104579 0.000000
+        0.7410 2.104399 0.000000
+        0.7420 2.104219 0.000000
+        0.7430 2.104040 0.000000
+        0.7440 2.103862 0.000000
+        0.7450 2.103684 0.000000
+        0.7460 2.103508 0.000000
+        0.7470 2.103332 0.000000
+        0.7480 2.103157 0.000000
+        0.7490 2.102983 0.000000
+        0.7500 2.102809 0.000000
+        0.7510 2.102636 0.000000
+        0.7520 2.102465 0.000000
+        0.7530 2.102293 0.000000
+        0.7540 2.102123 0.000000
+        0.7550 2.101954 0.000000
+        0.7560 2.101785 0.000000
+        0.7570 2.101617 0.000000
+        0.7580 2.101450 0.000000
+        0.7590 2.101283 0.000000
+        0.7600 2.101118 0.000000
+        0.7610 2.100953 0.000000
+        0.7620 2.100788 0.000000
+        0.7630 2.100625 0.000000
+        0.7640 2.100462 0.000000
+        0.7650 2.100300 0.000000
+        0.7660 2.100139 0.000000
+        0.7670 2.099978 0.000000
+        0.7680 2.099818 0.000000
+        0.7690 2.099659 0.000000
+        0.7700 2.099500 0.000000
+        0.7710 2.099343 0.000000
+        0.7720 2.099185 0.000000
+        0.7730 2.099029 0.000000
+        0.7740 2.098873 0.000000
+        0.7750 2.098718 0.000000
+        0.7760 2.098564 0.000000
+        0.7770 2.098410 0.000000
+        0.7780 2.098257 0.000000
+        0.7790 2.098104 0.000000
+        0.7800 2.097953 0.000000
+        0.7810 2.097802 0.000000
+        0.7820 2.097651 0.000000
+        0.7830 2.097502 0.000000
+        0.7840 2.097353 0.000000
+        0.7850 2.097204 0.000000
+        0.7860 2.097056 0.000000
+        0.7870 2.096909 0.000000
+        0.7880 2.096762 0.000000
+        0.7890 2.096616 0.000000
+        0.7900 2.096471 0.000000
+        0.7910 2.096326 0.000000
+        0.7920 2.096182 0.000000
+        0.7930 2.096039 0.000000
+        0.7940 2.095896 0.000000
+        0.7950 2.095754 0.000000
+        0.7960 2.095612 0.000000
+        0.7970 2.095471 0.000000
+        0.7980 2.095330 0.000000
+        0.7990 2.095191 0.000000
+        0.8000 2.095051 0.000000
+        0.8010 2.094913 0.000000
+        0.8020 2.094774 0.000000
+        0.8030 2.094637 0.000000
+        0.8040 2.094500 0.000000
+        0.8050 2.094363 0.000000
+        0.8060 2.094228 0.000000
+        0.8070 2.094092 0.000000
+        0.8080 2.093957 0.000000
+        0.8090 2.093823 0.000000
+        0.8100 2.093690 0.000000
+        0.8110 2.093557 0.000000
+        0.8120 2.093424 0.000000
+        0.8130 2.093292 0.000000
+        0.8140 2.093161 0.000000
+        0.8150 2.093030 0.000000
+        0.8160 2.092900 0.000000
+        0.8170 2.092770 0.000000
+        0.8180 2.092640 0.000000
+        0.8190 2.092512 0.000000
+        0.8200 2.092383 0.000000
+        0.8210 2.092256 0.000000
+        0.8220 2.092129 0.000000
+        0.8230 2.092002 0.000000
+        0.8240 2.091876 0.000000
+        0.8250 2.091750 0.000000
+        0.8260 2.091625 0.000000
+        0.8270 2.091500 0.000000
+        0.8280 2.091376 0.000000
+        0.8290 2.091253 0.000000
+        0.8300 2.091129 0.000000
+        0.8310 2.091007 0.000000
+        0.8320 2.090884 0.000000
+        0.8330 2.090763 0.000000
+        0.8340 2.090642 0.000000
+        0.8350 2.090521 0.000000
+        0.8360 2.090401 0.000000
+        0.8370 2.090281 0.000000
+        0.8380 2.090162 0.000000
+        0.8390 2.090043 0.000000
+        0.8400 2.089925 0.000000
+        0.8410 2.089807 0.000000
+        0.8420 2.089689 0.000000
+        0.8430 2.089572 0.000000
+        0.8440 2.089456 0.000000
+        0.8450 2.089340 0.000000
+        0.8460 2.089224 0.000000
+        0.8470 2.089109 0.000000
+        0.8480 2.088995 0.000000
+        0.8490 2.088880 0.000000
+        0.8500 2.088766 0.000000
+        0.8510 2.088653 0.000000
+        0.8520 2.088540 0.000000
+        0.8530 2.088428 0.000000
+        0.8540 2.088316 0.000000
+        0.8550 2.088204 0.000000
+        0.8560 2.088093 0.000000
+        0.8570 2.087982 0.000000
+        0.8580 2.087872 0.000000
+        0.8590 2.087762 0.000000
+        0.8600 2.087653 0.000000
+        0.8610 2.087544 0.000000
+        0.8620 2.087435 0.000000
+        0.8630 2.087327 0.000000
+        0.8640 2.087219 0.000000
+        0.8650 2.087112 0.000000
+        0.8660 2.087005 0.000000
+        0.8670 2.086898 0.000000
+        0.8680 2.086792 0.000000
+        0.8690 2.086686 0.000000
+        0.8700 2.086581 0.000000
+        0.8710 2.086476 0.000000
+        0.8720 2.086371 0.000000
+        0.8730 2.086267 0.000000
+        0.8740 2.086163 0.000000
+        0.8750 2.086060 0.000000
+        0.8760 2.085957 0.000000
+        0.8770 2.085854 0.000000
+        0.8780 2.085752 0.000000
+        0.8790 2.085650 0.000000
+        0.8800 2.085549 0.000000
+        0.8810 2.085448 0.000000
+        0.8820 2.085347 0.000000
+        0.8830 2.085247 0.000000
+        0.8840 2.085147 0.000000
+        0.8850 2.085047 0.000000
+        0.8860 2.084948 0.000000
+        0.8870 2.084849 0.000000
+        0.8880 2.084751 0.000000
+        0.8890 2.084653 0.000000
+        0.8900 2.084555 0.000000
+        0.8910 2.084457 0.000000
+        0.8920 2.084360 0.000000
+        0.8930 2.084264 0.000000
+        0.8940 2.084167 0.000000
+        0.8950 2.084071 0.000000
+        0.8960 2.083976 0.000000
+        0.8970 2.083880 0.000000
+        0.8980 2.083786 0.000000
+        0.8990 2.083691 0.000000
+        0.9000 2.083597 0.000000
+        0.9010 2.083503 0.000000
+        0.9020 2.083409 0.000000
+        0.9030 2.083316 0.000000
+        0.9040 2.083223 0.000000
+        0.9050 2.083131 0.000000
+        0.9060 2.083038 0.000000
+        0.9070 2.082947 0.000000
+        0.9080 2.082855 0.000000
+        0.9090 2.082764 0.000000
+        0.9100 2.082673 0.000000
+        0.9110 2.082582 0.000000
+        0.9120 2.082492 0.000000
+        0.9130 2.082402 0.000000
+        0.9140 2.082313 0.000000
+        0.9150 2.082223 0.000000
+        0.9160 2.082134 0.000000
+        0.9170 2.082046 0.000000
+        0.9180 2.081957 0.000000
+        0.9190 2.081869 0.000000
+        0.9200 2.081782 0.000000
+        0.9210 2.081694 0.000000
+        0.9220 2.081607 0.000000
+        0.9230 2.081520 0.000000
+        0.9240 2.081434 0.000000
+        0.9250 2.081348 0.000000
+        0.9260 2.081262 0.000000
+        0.9270 2.081176 0.000000
+        0.9280 2.081091 0.000000
+        0.9290 2.081006 0.000000
+        0.9300 2.080921 0.000000
+        0.9310 2.080837 0.000000
+        0.9320 2.080753 0.000000
+        0.9330 2.080669 0.000000
+        0.9340 2.080585 0.000000
+        0.9350 2.080502 0.000000
+        0.9360 2.080420 0.000000
+        0.9370 2.080337 0.000000
+        0.9380 2.080255 0.000000
+        0.9390 2.080172 0.000000
+        0.9400 2.080091 0.000000
+        0.9410 2.080009 0.000000
+        0.9420 2.079928 0.000000
+        0.9430 2.079847 0.000000
+        0.9440 2.079766 0.000000
+        0.9450 2.079686 0.000000
+        0.9460 2.079606 0.000000
+        0.9470 2.079526 0.000000
+        0.9480 2.079447 0.000000
+        0.9490 2.079367 0.000000
+        0.9500 2.079288 0.000000
+        0.9510 2.079210 0.000000
+        0.9520 2.079131 0.000000
+        0.9530 2.079053 0.000000
+        0.9540 2.078975 0.000000
+        0.9550 2.078897 0.000000
+        0.9560 2.078820 0.000000
+        0.9570 2.078743 0.000000
+        0.9580 2.078666 0.000000
+        0.9590 2.078589 0.000000
+        0.9600 2.078513 0.000000
+        0.9610 2.078437 0.000000
+        0.9620 2.078361 0.000000
+        0.9630 2.078285 0.000000
+        0.9640 2.078210 0.000000
+        0.9650 2.078135 0.000000
+        0.9660 2.078060 0.000000
+        0.9670 2.077985 0.000000
+        0.9680 2.077911 0.000000
+        0.9690 2.077837 0.000000
+        0.9700 2.077763 0.000000
+        0.9710 2.077689 0.000000
+        0.9720 2.077616 0.000000
+        0.9730 2.077543 0.000000
+        0.9740 2.077470 0.000000
+        0.9750 2.077397 0.000000
+        0.9760 2.077325 0.000000
+        0.9770 2.077253 0.000000
+        0.9780 2.077181 0.000000
+        0.9790 2.077109 0.000000
+        0.9800 2.077038 0.000000
+        0.9810 2.076967 0.000000
+        0.9820 2.076895 0.000000
+        0.9830 2.076825 0.000000
+        0.9840 2.076754 0.000000
+        0.9850 2.076684 0.000000
+        0.9860 2.076614 0.000000
+        0.9870 2.076544 0.000000
+        0.9880 2.076474 0.000000
+        0.9890 2.076405 0.000000
+        0.9900 2.076336 0.000000
+        0.9910 2.076267 0.000000
+        0.9920 2.076198 0.000000
+        0.9930 2.076130 0.000000
+        0.9940 2.076061 0.000000
+        0.9950 2.075994 0.000000
+        0.9960 2.075926 0.000000
+        0.9970 2.075858 0.000000
+        0.9980 2.075791 0.000000
+        0.9990 2.075724 0.000000
+        1.0000 2.075657 0.000000
+        1.0025 2.075490 0.000000
+        1.0050 2.075325 0.000000
+        1.0075 2.075161 0.000000
+        1.0100 2.074999 0.000000
+        1.0125 2.074838 0.000000
+        1.0150 2.074678 0.000000
+        1.0175 2.074519 0.000000
+        1.0200 2.074362 0.000000
+        1.0225 2.074206 0.000000
+        1.0250 2.074051 0.000000
+        1.0275 2.073897 0.000000
+        1.0300 2.073744 0.000000
+        1.0325 2.073593 0.000000
+        1.0350 2.073443 0.000000
+        1.0375 2.073294 0.000000
+        1.0400 2.073146 0.000000
+        1.0425 2.072999 0.000000
+        1.0450 2.072853 0.000000
+        1.0475 2.072709 0.000000
+        1.0500 2.072565 0.000000
+        1.0525 2.072423 0.000000
+        1.0550 2.072282 0.000000
+        1.0575 2.072141 0.000000
+        1.0600 2.072002 0.000000
+        1.0625 2.071864 0.000000
+        1.0650 2.071727 0.000000
+        1.0675 2.071591 0.000000
+        1.0700 2.071456 0.000000
+        1.0725 2.071322 0.000000
+        1.0750 2.071189 0.000000
+        1.0775 2.071057 0.000000
+        1.0800 2.070926 0.000000
+        1.0825 2.070796 0.000000
+        1.0850 2.070666 0.000000
+        1.0875 2.070538 0.000000
+        1.0900 2.070411 0.000000
+        1.0925 2.070284 0.000000
+        1.0950 2.070159 0.000000
+        1.0975 2.070034 0.000000
+        1.1000 2.069911 0.000000
+        1.1025 2.069788 0.000000
+        1.1050 2.069666 0.000000
+        1.1075 2.069545 0.000000
+        1.1100 2.069425 0.000000
+        1.1125 2.069305 0.000000
+        1.1150 2.069187 0.000000
+        1.1175 2.069069 0.000000
+        1.1200 2.068953 0.000000
+        1.1225 2.068837 0.000000
+        1.1250 2.068722 0.000000
+        1.1275 2.068607 0.000000
+        1.1300 2.068494 0.000000
+        1.1325 2.068381 0.000000
+        1.1350 2.068269 0.000000
+        1.1375 2.068158 0.000000
+        1.1400 2.068047 0.000000
+        1.1425 2.067938 0.000000
+        1.1450 2.067829 0.000000
+        1.1475 2.067721 0.000000
+        1.1500 2.067613 0.000000
+        1.1525 2.067507 0.000000
+        1.1550 2.067400 0.000000
+        1.1575 2.067295 0.000000
+        1.1600 2.067191 0.000000
+        1.1625 2.067087 0.000000
+        1.1650 2.066984 0.000000
+        1.1675 2.066881 0.000000
+        1.1700 2.066780 0.000000
+        1.1725 2.066679 0.000000
+        1.1750 2.066578 0.000000
+        1.1775 2.066479 0.000000
+        1.1800 2.066380 0.000000
+        1.1825 2.066281 0.000000
+        1.1850 2.066184 0.000000
+        1.1875 2.066087 0.000000
+        1.1900 2.065990 0.000000
+        1.1925 2.065894 0.000000
+        1.1950 2.065799 0.000000
+        1.1975 2.065705 0.000000
+        1.2000 2.065611 0.000000
+        1.2025 2.065517 0.000000
+        1.2050 2.065425 0.000000
+        1.2075 2.065333 0.000000
+        1.2100 2.065241 0.000000
+        1.2125 2.065150 0.000000
+        1.2150 2.065060 0.000000
+        1.2175 2.064970 0.000000
+        1.2200 2.064881 0.000000
+        1.2225 2.064793 0.000000
+        1.2250 2.064705 0.000000
+        1.2275 2.064617 0.000000
+        1.2300 2.064530 0.000000
+        1.2325 2.064444 0.000000
+        1.2350 2.064358 0.000000
+        1.2375 2.064273 0.000000
+        1.2400 2.064188 0.000000
+        1.2425 2.064104 0.000000
+        1.2450 2.064020 0.000000
+        1.2475 2.063937 0.000000
+        1.2500 2.063855 0.000000
+        1.2525 2.063772 0.000000
+        1.2550 2.063691 0.000000
+        1.2575 2.063610 0.000000
+        1.2600 2.063529 0.000000
+        1.2625 2.063449 0.000000
+        1.2650 2.063370 0.000000
+        1.2675 2.063291 0.000000
+        1.2700 2.063212 0.000000
+        1.2725 2.063134 0.000000
+        1.2750 2.063056 0.000000
+        1.2775 2.062979 0.000000
+        1.2800 2.062902 0.000000
+        1.2825 2.062826 0.000000
+        1.2850 2.062750 0.000000
+        1.2875 2.062675 0.000000
+        1.2900 2.062600 0.000000
+        1.2925 2.062526 0.000000
+        1.2950 2.062452 0.000000
+        1.2975 2.062378 0.000000
+        1.3000 2.062305 0.000000
+        1.3025 2.062233 0.000000
+        1.3050 2.062161 0.000000
+        1.3075 2.062089 0.000000
+        1.3100 2.062017 0.000000
+        1.3125 2.061947 0.000000
+        1.3150 2.061876 0.000000
+        1.3175 2.061806 0.000000
+        1.3200 2.061736 0.000000
+        1.3225 2.061667 0.000000
+        1.3250 2.061598 0.000000
+        1.3275 2.061530 0.000000
+        1.3300 2.061462 0.000000
+        1.3325 2.061394 0.000000
+        1.3350 2.061327 0.000000
+        1.3375 2.061260 0.000000
+        1.3400 2.061194 0.000000
+        1.3425 2.061128 0.000000
+        1.3450 2.061062 0.000000
+        1.3475 2.060997 0.000000
+        1.3500 2.060932 0.000000
+        1.3525 2.060867 0.000000
+        1.3550 2.060803 0.000000
+        1.3575 2.060739 0.000000
+        1.3600 2.060676 0.000000
+        1.3625 2.060612 0.000000
+        1.3650 2.060550 0.000000
+        1.3675 2.060487 0.000000
+        1.3700 2.060425 0.000000
+        1.3725 2.060364 0.000000
+        1.3750 2.060302 0.000000
+        1.3775 2.060241 0.000000
+        1.3800 2.060181 0.000000
+        1.3825 2.060120 0.000000
+        1.3850 2.060061 0.000000
+        1.3875 2.060001 0.000000
+        1.3900 2.059942 0.000000
+        1.3925 2.059883 0.000000
+        1.3950 2.059824 0.000000
+        1.3975 2.059766 0.000000
+        1.4000 2.059708 0.000000
+        1.4025 2.059650 0.000000
+        1.4050 2.059592 0.000000
+        1.4075 2.059536 0.000000
+        1.4100 2.059479 0.000000
+        1.4125 2.059422 0.000000
+        1.4150 2.059366 0.000000
+        1.4175 2.059310 0.000000
+        1.4200 2.059255 0.000000
+        1.4225 2.059200 0.000000
+        1.4250 2.059145 0.000000
+        1.4275 2.059090 0.000000
+        1.4300 2.059036 0.000000
+        1.4325 2.058982 0.000000
+        1.4350 2.058928 0.000000
+        1.4375 2.058875 0.000000
+        1.4400 2.058822 0.000000
+        1.4425 2.058769 0.000000
+        1.4450 2.058716 0.000000
+        1.4475 2.058664 0.000000
+        1.4500 2.058612 0.000000
+        1.4525 2.058560 0.000000
+        1.4550 2.058509 0.000000
+        1.4575 2.058458 0.000000
+        1.4600 2.058407 0.000000
+        1.4625 2.058356 0.000000
+        1.4650 2.058306 0.000000
+        1.4675 2.058256 0.000000
+        1.4700 2.058206 0.000000
+        1.4725 2.058156 0.000000
+        1.4750 2.058107 0.000000
+        1.4775 2.058058 0.000000
+        1.4800 2.058009 0.000000
+        1.4825 2.057961 0.000000
+        1.4850 2.057912 0.000000
+        1.4875 2.057864 0.000000
+        1.4900 2.057816 0.000000
+        1.4925 2.057769 0.000000
+        1.4950 2.057721 0.000000
+        1.4975 2.057674 0.000000
+        1.5000 2.057628 0.000000
+        1.5025 2.057581 0.000000
+        1.5050 2.057535 0.000000
+        1.5075 2.057489 0.000000
+        1.5100 2.057443 0.000000
+        1.5125 2.057397 0.000000
+        1.5150 2.057352 0.000000
+        1.5175 2.057307 0.000000
+        1.5200 2.057261 0.000000
+        1.5225 2.057217 0.000000
+        1.5250 2.057172 0.000000
+        1.5275 2.057128 0.000000
+        1.5300 2.057084 0.000000
+        1.5325 2.057040 0.000000
+        1.5350 2.056997 0.000000
+        1.5375 2.056953 0.000000
+        1.5400 2.056910 0.000000
+        1.5425 2.056867 0.000000
+        1.5450 2.056824 0.000000
+        1.5475 2.056782 0.000000
+        1.5500 2.056740 0.000000
+        1.5525 2.056697 0.000000
+        1.5550 2.056656 0.000000
+        1.5575 2.056614 0.000000
+        1.5600 2.056572 0.000000
+        1.5625 2.056531 0.000000
+        1.5650 2.056490 0.000000
+        1.5675 2.056449 0.000000
+        1.5700 2.056408 0.000000
+        1.5725 2.056368 0.000000
+        1.5750 2.056328 0.000000
+        1.5775 2.056288 0.000000
+        1.5800 2.056248 0.000000
+        1.5825 2.056208 0.000000
+        1.5850 2.056169 0.000000
+        1.5875 2.056129 0.000000
+        1.5900 2.056090 0.000000
+        1.5925 2.056051 0.000000
+        1.5950 2.056013 0.000000
+        1.5975 2.055974 0.000000
+        1.6000 2.055936 0.000000
+        1.6025 2.055897 0.000000
+        1.6050 2.055860 0.000000
+        1.6075 2.055822 0.000000
+        1.6100 2.055784 0.000000
+        1.6125 2.055747 0.000000
+        1.6150 2.055709 0.000000
+        1.6175 2.055672 0.000000
+        1.6200 2.055635 0.000000
+        1.6225 2.055598 0.000000
+        1.6250 2.055562 0.000000
+        1.6275 2.055526 0.000000
+        1.6300 2.055489 0.000000
+        1.6325 2.055453 0.000000
+        1.6350 2.055417 0.000000
+        1.6375 2.055382 0.000000
+        1.6400 2.055346 0.000000
+        1.6425 2.055311 0.000000
+        1.6450 2.055275 0.000000
+        1.6475 2.055240 0.000000
+        1.6500 2.055206 0.000000
+        1.6525 2.055171 0.000000
+        1.6550 2.055136 0.000000
+        1.6575 2.055102 0.000000
+        1.6600 2.055068 0.000000
+        1.6625 2.055033 0.000000
+        1.6650 2.055000 0.000000
+        1.6675 2.054966 0.000000
+        1.6700 2.054932 0.000000
+        1.6725 2.054899 0.000000
+        1.6750 2.054865 0.000000
+        1.6775 2.054832 0.000000
+        1.6800 2.054799 0.000000
+        1.6825 2.054766 0.000000
+        1.6850 2.054734 0.000000
+        1.6875 2.054701 0.000000
+        1.6900 2.054669 0.000000
+