diff --git a/dataset/primgen.py b/dataset/primgen.py new file mode 100644 index 0000000..8e12c35 --- /dev/null +++ b/dataset/primgen.py @@ -0,0 +1,136 @@ +import subprocess as sp +import subprocess +import glob, os +import shutil +import pointcloud as pc + +modelType = "off" +samplingRate = 0.003 +maxDistance = 0.003 +maxAngleDistance = 0.01 +errorSigma = 0 +k = 16 +pointCloudSize = 2048 +cutOutProb = 0 +maxIterations = 10 + +toolPath = "C:/Projekte/csg_playground_build/Release/primgen.exe" + +def getExtension(modType): + if("off" in modType): + return "off" + elif("obj" in modType): + return "obj" + elif("csg" in modType): + return ".json" + else: + return "" + + +def run(modelPath, outputFolder): + + executable = "{} {} \"{}\" \"{}\" {} {} {} {} {} {} {} {}".format( + toolPath, modelType, modelPath, outputFolder, + samplingRate, maxDistance, maxAngleDistance, errorSigma, + k, pointCloudSize, cutOutProb, maxIterations) + + print("Call generator with " + executable) + + p = sp.Popen(executable, stdout=subprocess.PIPE) + for line in p.stdout: + print(line) + + # Wait until process terminates (without using p.wait()) + # while p.poll() is None: + # Process hasn't exited yet, let's wait some + # time.sleep(0.5) + + # Get return code from process + return_code = p.returncode + + if return_code == -1: + print("Unable to generate primtitives for model {}".format(modelPath)); + else: + print("Done. Exist Code: " + str(return_code)) + + +def extract_clusters(outputFolder, cluster_method="none", **kwargs): + + if "none" in cluster_method: + return + + all_clusters = [] + + for subdir, dirs, _ in os.walk(outputFolder): + for dir in dirs: + path = os.path.join(subdir, dir) + for _,_,files in os.walk(path): + for file in files: + file = os.path.join(path, file.lower()) + print(file) + if file.endswith("_pc.xyz"): + pointcloud = pc.read_pointcloud(file); + + clusters = [] + if "per_primitive" in cluster_method: + clusters = pc.cluster_per_column(pointcloud, column=7) # primitive id column + elif "cube" in cluster_method: + clusters = pc.cluster_cubes(pointcloud, + kwargs.get("cluster_dims", [1,1,1])) + elif "dbscan" in cluster_method: + clusters = pc.cluster_dbscan(pointcloud, + selected_indices=kwargs.get("selected_indices", [0,1,2,3,4,5]), + eps=kwargs.get("eps", 0.1), + min_samples=kwargs.get("min_samples", None) + ) + + for idx, cluster in enumerate(clusters): + pos = file.rfind("pc.xyz") + new_file = file[:pos] + str(idx) + "_pc.xyz" + pc.write_pointcloud(new_file, cluster) + + # all_clusters.extend(clusters) + + return all_clusters + +def runForFolder(modelFolder, outputFolder): + + os.chdir(modelFolder) + modelFiles = glob.glob("*." + getExtension(modelType)) + print("Working on {} model files with extension {} from folder {}.".format(len(modelFiles),getExtension(modelType), modelFolder)) + + folderIdx = 0 + for modelFile in modelFiles: + + try: + subfolderPath = outputFolder + str(folderIdx) + "/" + folderIdx += 1 + + print("Check if output sub folder exists...") + if os.path.exists(subfolderPath) and os.path.isdir(subfolderPath): + shutil.rmtree(subfolderPath) + print("Yes => Existing sub folder was deleted.") + + os.mkdir(subfolderPath) + print("Successfully created the directory %s " % subfolderPath) + + run(modelFolder + modelFile, subfolderPath) + except OSError as err: + print("Creation of the directory %s failed." % str(err)) + + + + +if __name__ == "__main__": + + outputFolder = "D:/output_0/" + modelFolder = "C:/Users/friedrich/PycharmProjects/data/models/" + + # clusters = extract_clusters("C:/Projekte/csg_playground_build/testOFF", "cube", + # cluster_dims=[2,2,2]) + # #eps=0.1, min_samples=0.01, selected_indices=[7]) + + # pc.draw_clusters(clusters) + + runForFolder(modelFolder, outputFolder) + diff --git a/model/seg_model_custom_241.pth b/model/seg_model_custom_241.pth new file mode 100644 index 0000000..3bccb56 Binary files /dev/null and b/model/seg_model_custom_241.pth differ diff --git a/pointcloud.py b/pointcloud.py new file mode 100644 index 0000000..40501ff --- /dev/null +++ b/pointcloud.py @@ -0,0 +1,157 @@ +import numpy as np +import open3d as o3d +from sklearn.cluster import DBSCAN + + +def mini_color_table(index, norm=True): + colors = [ + [0.5000, 0.5400, 0.5300], [0.8900, 0.1500, 0.2100], [0.6400, 0.5800, 0.5000], + [1.0000, 0.3800, 0.0100], [1.0000, 0.6600, 0.1400], [0.4980, 1.0000, 0.0000], + [0.4980, 1.0000, 0.8314], [0.9412, 0.9725, 1.0000], [0.5412, 0.1686, 0.8863], + [0.5765, 0.4392, 0.8588], [0.3600, 0.1400, 0.4300], [0.5600, 0.3700, 0.6000], + ] + + color = colors[index % len(colors)] + + if not norm: + color[0] *= 255 + color[1] *= 255 + color[2] *= 255 + + return color + + +def clusterToColor(cluster, cluster_idx): + + colors = np.zeros(shape=(len(cluster), 3)) + point_idx = 0 + for point in cluster: + colors[point_idx, :] = mini_color_table(cluster_idx) + point_idx += 1 + + return colors + + +def read_pointcloud(path): + file = open(path) + + header = file.readline() + num_points = int(header.split()[0]) + pc = [] + + for i in range(num_points): + pc.append(list(float(s) for s in file.readline().split())) + + return np.array(pc) + + +def write_pointcloud(file, pc, numCols=6): + np.savetxt(file, pc[:,:numCols], header=str(len(pc)) + ' ' + str(numCols), comments='') + + +def farthest_point_sampling(pts, K): + + if pts.shape[0] < K: + return pts + + def calc_distances(p0, points): + return ((p0[:3] - points[:, :3]) ** 2).sum(axis=1) + + farthest_pts = np.zeros((K, pts.shape[1])) + farthest_pts[0] = pts[np.random.randint(len(pts))] + distances = calc_distances(farthest_pts[0], pts) + for i in range(1, K): + farthest_pts[i] = pts[np.argmax(distances)] + distances = np.minimum(distances, calc_distances(farthest_pts[i], pts)) + + return farthest_pts + + +def cluster_per_column(pc, column): + + clusters = [] + for i in range(0, int(np.max(pc[:, column]))): + cluster_pc = pc[pc[:, column] == i, :] + clusters.append(cluster_pc) + + return clusters + + +def cluster_cubes(data, cluster_dims): + + max = data[:,:3].max(axis=0) + max += max * 0.01 + + min = data[:,:3].min(axis=0) + min -= min * 0.01 + + size = (max - min) + + clusters = {} + + cluster_size = size / np.array(cluster_dims, dtype=np.float32) + + print('Min: ' + str(min) + ' Max: ' + str(max)) + print('Cluster Size: ' + str(cluster_size)) + + for row in data: + + # print('Row: ' + str(row)) + + cluster_pos = ((row[:3] - min) / cluster_size).astype(int) + cluster_idx = cluster_dims[0] * cluster_dims[2] * cluster_pos[1] + cluster_dims[0] * cluster_pos[2] + cluster_pos[0] + clusters.setdefault(cluster_idx, []).append(row) + + # Apply farthest point sampling to each cluster + for key, cluster in clusters.items(): + c = np.vstack(cluster) + clusters[key] = c # farthest_point_sampling(c, max_points_per_cluster) + + return clusters.values() + + +def cluster_dbscan(data, selected_indices, eps, min_samples, metric='euclidean', algo='auto'): + + min_samples = min_samples * len(data); + + print('Clustering. Min Samples: ' + str(min_samples) + ' EPS: ' + str(eps) + "Selected Indices: " + str(selected_indices)) + + # 0,1,2 : pos + # 3,4,5 : normal + # 6: type index + # 7,8,9,10: type index one hot encoded + # 11,12: normal as angles + + db_res = DBSCAN(eps=eps, metric=metric, n_jobs=-1, algorithm=algo, min_samples=min_samples).fit(data[:, selected_indices]) + + + labels = db_res.labels_ + n_clusters = len(set(labels)) - (1 if -1 in labels else 0) + n_noise = list(labels).count(-1) + print("Noise: " + str(n_noise) + " Clusters: " + str(n_clusters)) + + clusters = {} + for idx, l in enumerate(labels): + if l is -1: + continue + clusters.setdefault(str(l), []).append(data[idx, :]) + + + npClusters = [] + for cluster in clusters.values(): + npClusters.append(np.array(cluster)) + + return npClusters + +def draw_clusters(clusters): + + clouds = [] + + for cluster_idx, cluster in enumerate(clusters): + + cloud = o3d.PointCloud() + cloud.points = o3d.Vector3dVector(cluster[:,:3]) + cloud.colors = o3d.Vector3dVector(clusterToColor(cluster, cluster_idx)) + clouds.append(cloud) + + o3d.draw_geometries(clouds) \ No newline at end of file diff --git a/predict/pointclouds/0_pc.xyz b/predict/pointclouds/0_pc.xyz new file mode 100644 index 0000000..a3323e1 --- /dev/null +++ b/predict/pointclouds/0_pc.xyz @@ -0,0 +1,2048 @@ +0.0759953 -0.395683 -0.130632 -0.871549 -0.481571 0.0921502 +-0.364005 0.664317 0.169368 -0.997143 0.00181983 -0.0755164 +0.415995 0.424317 -0.150632 0.920812 -0.223131 -0.319865 +-0.364005 0.104317 -0.290632 -0.678055 0.734933 -0.0107393 +0.0359953 0.304317 0.189368 -0.0355514 0.00170225 0.999366 +-0.104005 0.524317 -0.230632 0.721273 0.28679 -0.156531 +0.175995 0.0443165 -0.170632 0.0717818 -0.053979 -0.995955 +0.275995 0.684317 0.189368 -0.000426732 0.999998 -0.00171851 +-0.364005 -0.455683 -0.0706319 -0.860296 -0.347281 0.373211 +0.455995 -0.455683 0.00936812 0.470789 -0.874441 -0.11709 +-0.204005 -0.0956835 0.0293681 0.649153 0.760138 0.0281194 +-0.424005 0.324317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.204005 -0.235683 -0.290632 0.0384737 0.00410846 -0.999251 +0.375995 -0.355683 -0.310632 -0.136967 0.0586659 -0.988837 +-0.464005 0.504317 -0.270632 -0.36538 -0.104835 -0.600835 +-0.104005 0.204317 -0.0906319 0.678055 -0.734933 0.0107393 +0.175995 0.644317 -0.130632 -0.84803 0.365772 -0.383459 +-0.0640047 0.604317 0.189368 0.997143 -0.00181983 0.0755164 +0.135995 0.344317 -0.250632 -0.541357 0.355717 -0.761826 +0.195995 -0.595683 0.0493681 0.136967 -0.0586659 0.988837 +0.295995 0.404317 0.169368 0.633956 -0.000342665 -0.356817 +0.295995 -0.235683 -0.0706319 -0.470789 0.874441 0.11709 +-0.224005 0.384317 0.189368 -0.0755146 0.00101157 0.997144 +-0.304005 0.564317 -0.0706319 -0.358505 0.931881 0.055417 +0.295995 0.224317 -0.0306319 0.566001 -0.359049 0.742097 +0.0359953 0.444317 -0.0306319 0.0413401 0.678055 0.73382 +0.195995 -0.555683 -0.290632 0.470789 -0.874441 -0.11709 +-0.384005 0.0643165 -0.0306319 -0.735011 -0.677998 0.00878997 +-0.244005 0.324317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.144005 -0.315683 -0.0706319 -0.00789434 0.634209 0.773025 +-0.0440047 -0.0156835 -0.130632 -0.808327 -0.505969 -0.301002 +-0.364005 -0.115683 -0.170632 -0.649153 -0.760138 -0.0281194 +0.155995 -0.335683 0.0693681 0.136967 -0.0586659 0.988837 +-0.204005 -0.455683 -0.230632 0.376748 -0.344466 -0.859886 +0.335995 0.544317 0.00936812 0.301081 0.928023 0.219369 +0.175995 -0.275683 -0.270632 -0.470789 0.874441 0.11709 +0.115995 0.504317 0.149368 0.0355514 -0.00170225 -0.999366 +0.315995 0.244317 -0.250632 0.73576 -0.0797323 -0.672518 +0.295995 -0.515683 -0.110632 0.470789 -0.874441 -0.11709 +-0.124005 0.164317 -0.290632 0.678055 -0.734933 0.0107393 +0.255995 0.504317 -0.250632 -0.0930473 0.257536 -0.961778 +-0.204005 0.104317 0.0493681 0.678055 -0.734933 0.0107393 +0.0959953 0.264317 -0.0706319 -0.0312191 -0.931409 0.362594 +-0.164005 0.504317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.484005 0.484317 -0.0706319 -0.929051 -0.35035 -0.11882 +-0.344005 0.224317 -0.130632 0.358505 -0.931881 -0.055417 +-0.184005 -0.495683 -0.0506319 0.535609 -0.658254 0.528984 +-0.0440047 0.344317 -0.210632 -0.0293011 -0.279522 -0.959679 +-0.244005 0.0643165 -0.150632 0.678055 -0.734933 0.0107393 +-0.244005 0.284317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.284005 0.544317 -0.250632 0.0913104 0.0940827 -0.991368 +0.0959953 0.684317 0.149368 0.0355514 -0.00170225 -0.999366 +-0.304005 -0.295683 -0.150632 -0.39245 0.886515 -0.245101 +-0.244005 -0.0556835 -0.290632 0.0384737 0.00410846 -0.999251 +-0.384005 -0.0956835 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.364005 0.484317 0.149368 -0.997143 0.00181983 -0.0755164 +0.195995 0.384317 0.0293681 -0.352287 -0.105524 0.929918 +-0.144005 -0.155683 -0.150632 0.649153 0.760138 0.0281194 +0.395995 -0.375683 -0.130632 0.871549 0.481571 -0.0921502 +0.175995 -0.115683 -0.110632 -0.9425 0.321964 0.0896242 +-0.0640047 0.324317 0.0293681 0.929051 0.35035 0.11882 +-0.424005 0.364317 -0.190632 -0.929051 -0.35035 -0.11882 +0.295995 -0.435683 0.0493681 0.136967 -0.0586659 0.988837 +0.395995 0.584317 -0.190632 0.301081 0.928023 0.219369 +-0.224005 0.564317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0640047 0.444317 0.169368 0.997143 -0.00181983 0.0755164 +0.175995 0.564317 0.00936812 -0.801267 0.121476 0.585832 +0.355995 0.384317 0.00936812 0.589321 -0.36193 0.72228 +-0.144005 0.584317 -0.0906319 0.929051 0.35035 0.11882 +0.135995 0.484317 -0.150632 -0.878717 0.359351 -0.314179 +-0.104005 -0.215683 0.0493681 0.759684 -0.649749 0.0265783 +0.315995 -0.215683 -0.230632 0.871549 0.481571 -0.0921502 +0.135995 -0.535683 -0.110632 -0.871549 -0.481571 0.0921502 +-0.364005 0.324317 0.169368 -0.997143 0.00181983 -0.0755164 +0.395995 -0.315683 0.0293681 0.871549 0.481571 -0.0921502 +0.0759953 -0.455683 -0.270632 -0.871549 -0.481571 0.0921502 +-0.304005 0.424317 0.0293681 -0.0913104 -0.0940827 0.991368 +0.215995 0.184317 -0.150632 -0.576431 0.325849 -0.749214 +0.235995 -0.415683 -0.290632 -0.136967 0.0586659 -0.988837 +0.175995 0.304317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.544317 0.149368 0.0355514 -0.00170225 -0.999366 +-0.0240047 -0.295683 -0.150632 -0.0101951 0.833239 -0.552731 +0.175995 -0.315683 -0.0706319 -0.470789 0.874441 0.11709 +-0.264005 -0.195683 -0.0506319 -0.649153 -0.760138 -0.0281194 +-0.364005 0.244317 -0.270632 -0.929051 -0.35035 -0.11882 +-0.284005 -0.355683 -0.0106319 -0.247337 0.440442 0.863038 +0.375995 0.284317 -0.130632 0.951507 -0.30759 -0.00469417 +-0.344005 -0.415683 -0.210632 -0.703313 -0.0371461 -0.709909 +0.115995 -0.455683 0.00936812 -0.871549 -0.481571 0.0921502 +0.355995 -0.475683 -0.230632 0.470789 -0.874441 -0.11709 +-0.264005 -0.0556835 -0.0906319 0.649153 0.760138 0.0281194 +0.455995 0.524317 -0.0506319 0.932925 -0.334293 0.133772 +-0.384005 -0.0556835 -0.290632 -0.759684 0.649749 -0.0265783 +-0.384005 0.0443165 -0.170632 -0.735011 -0.677998 0.00878997 +0.315995 0.384317 -0.250632 0.487256 0.0480274 -0.871927 +-0.0640047 -0.415683 -0.110632 0.0122811 -0.998176 0.0591038 +-0.00400471 0.464317 -0.170632 0.0234672 0.83021 -0.55692 +-0.384005 0.524317 -0.170632 -0.358505 0.931881 0.055417 +-0.104005 0.324317 0.189368 -0.0755146 0.00101157 0.997144 +-0.344005 0.204317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.224005 0.0843165 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.404005 0.504317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.264005 -0.535683 -0.150632 -0.0850522 -0.965438 -0.246364 +-0.104005 0.204317 0.0493681 0.678055 -0.734933 0.0107393 +-0.184005 -0.335683 -0.190632 0.552871 0.602458 -0.575654 +-0.0840047 -0.215683 -0.250632 0.759684 -0.649749 0.0265783 +0.275995 -0.275683 0.0493681 0.0372307 0.0944623 0.845778 +0.295995 0.584317 -0.110632 0.301081 0.928023 0.219369 +-0.304005 0.00431655 0.0493681 0.678055 -0.734933 0.0107393 +-0.204005 0.444317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.244005 0.204317 -0.210632 -0.678055 0.734933 -0.0107393 +-0.164005 0.664317 0.149368 0.0755146 -0.00101157 -0.997144 +0.115995 0.00431655 -0.0706319 -0.502517 -0.864502 0.0106364 +-0.0840047 0.464317 -0.0506319 0.0443355 0.839399 0.54168 +0.235995 0.0843165 -0.0706319 0.555833 -0.313623 0.76977 +-0.324005 0.424317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.284005 0.564317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.144005 0.284317 -0.170632 -0.0441569 -0.825277 -0.562977 +-0.164005 0.624317 -0.210632 -0.358505 0.931881 0.055417 +0.0759953 -0.335683 -0.250632 -0.470789 0.874441 0.11709 +-0.384005 -0.0556835 -0.0706319 -0.759684 0.649749 -0.0265783 +-0.304005 -0.155683 -0.270632 -0.649153 -0.760138 -0.0281194 +-0.224005 0.224317 -0.0906319 -0.678055 0.734933 -0.0107393 +-0.184005 0.384317 0.0293681 -0.0913104 -0.0940827 0.991368 +0.0559953 0.284317 -0.190632 -0.0424719 -0.728958 -0.683216 +-0.0840047 -0.215683 -0.0706319 0.759684 -0.649749 0.0265783 +0.195995 0.264317 0.00936812 -0.126967 -0.188983 0.973736 +-0.224005 -0.235683 0.0493681 -0.649153 -0.760138 -0.0281194 +0.0159953 -0.335683 -0.0506319 -0.00274965 0.214427 0.976727 +0.255995 0.624317 -0.210632 -0.32764 0.31671 -0.890135 +-0.144005 0.284317 -0.290632 0.735011 0.677998 -0.00878997 +0.0959953 0.404317 0.189368 -0.0355514 0.00170225 0.999366 +0.0359953 0.584317 0.149368 0.0355514 -0.00170225 -0.999366 +0.315995 -0.535683 0.00936812 0.470789 -0.874441 -0.11709 +-0.264005 -0.195683 -0.170632 -0.649153 -0.760138 -0.0281194 +-0.184005 0.124317 -0.0706319 0.678055 -0.734933 0.0107393 +-0.164005 -0.135683 -0.270632 0.649153 0.760138 0.0281194 +0.275995 -0.135683 -0.150632 0.783915 -0.0141397 -0.620707 +-0.184005 0.604317 0.00936812 -0.358505 0.931881 0.055417 +0.155995 0.604317 0.189368 -0.0355514 0.00170225 0.999366 +0.275995 -0.315683 -0.290632 -0.136967 0.0586659 -0.988837 +-0.224005 -0.0956835 -0.190632 0.649153 0.760138 0.0281194 +0.355995 -0.315683 -0.210632 0.871549 0.481571 -0.0921502 +-0.304005 -0.0156835 -0.210632 0.649153 0.760138 0.0281194 +0.235995 0.304317 -0.290632 0.16829 0.174723 -0.970127 +-0.184005 -0.395683 -0.0106319 0.534148 0.117613 0.83717 +0.195995 0.444317 0.189368 -0.0355514 0.00170225 0.999366 +0.395995 -0.475683 -0.0906319 0.470789 -0.874441 -0.11709 +-0.264005 0.0643165 -0.0306319 0.678055 -0.734933 0.0107393 +-0.144005 0.284317 -0.0306319 0.735011 0.677998 -0.00878997 +0.235995 -0.275683 -0.150632 -0.470789 0.874441 0.11709 +0.255995 0.484317 0.0493681 -0.202591 -0.162543 0.965676 +0.0559953 0.344317 -0.0106319 0.00782815 -0.250836 0.967997 +0.355995 0.484317 -0.210632 0.562871 0.0127411 -0.826432 +-0.164005 0.464317 0.149368 0.0755146 -0.00101157 -0.997144 +0.215995 -0.575683 -0.0506319 0.470789 -0.874441 -0.11709 +0.0959953 -0.295683 -0.150632 -0.0101053 0.82604 -0.56343 +-0.164005 0.144317 -0.170632 0.678055 -0.734933 0.0107393 +-0.444005 0.384317 -0.0906319 -0.929051 -0.35035 -0.11882 +0.275995 0.304317 0.189368 -0.00211386 -0.929263 0.0721674 +-0.324005 0.124317 -0.110632 -0.678055 0.734933 -0.0107393 +0.0159953 0.0643165 -0.110632 0.344896 0.934434 0.0887719 +-0.244005 0.584317 -0.150632 -0.358505 0.931881 0.055417 +-0.0240047 0.264317 -0.110632 -0.0410358 -0.999031 -0.0158224 +0.255995 -0.535683 -0.210632 0.470789 -0.874441 -0.11709 +-0.364005 -0.355683 -0.0906319 -0.873171 0.434198 0.221461 +-0.144005 -0.475683 -0.150632 0.833674 -0.495638 -0.243578 +-0.464005 0.424317 0.00936812 -0.929051 -0.35035 -0.11882 +0.215995 0.404317 -0.270632 -0.140416 0.270681 -0.952373 +0.135995 0.464317 -0.0506319 -0.89888 0.199391 0.390192 +-0.324005 0.104317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.0840047 0.204317 -0.190632 0.678055 -0.734933 0.0107393 +0.315995 0.184317 -0.130632 0.836283 -0.48916 -0.247632 +-0.284005 -0.515683 -0.0506319 -0.240643 -0.813707 0.529124 +0.155995 0.264317 -0.170632 -0.301081 -0.928023 -0.219369 +0.215995 -0.495683 0.0493681 0.136967 -0.0586659 0.988837 +-0.304005 -0.175683 0.0493681 -0.649153 -0.760138 -0.0281194 +0.275995 0.324317 0.00936812 0.256791 -0.300448 0.918577 +-0.264005 0.664317 0.149368 0.0602119 0.207049 -0.790068 +0.135995 -0.555683 -0.210632 -0.871549 -0.481571 0.0921502 +0.375995 -0.295683 -0.0706319 0.871549 0.481571 -0.0921502 +-0.464005 0.464317 -0.170632 -0.929051 -0.35035 -0.11882 +-0.104005 0.424317 -0.230632 0.0913104 0.0940827 -0.991368 +0.0559953 0.384317 -0.210632 -0.0127279 0.140735 -0.989965 +-0.264005 0.464317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.204005 0.204317 0.0493681 -0.000821192 0.0138536 0.999904 +0.415995 -0.395683 -0.230632 0.871549 0.481571 -0.0921502 +-0.184005 -0.115683 -0.0706319 0.649153 0.760138 0.0281194 +-0.284005 0.164317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.124005 -0.255683 -0.170632 0.759684 -0.649749 0.0265783 +-0.344005 -0.135683 -0.0306319 -0.649153 -0.760138 -0.0281194 +0.415995 0.424317 -0.0506319 0.891055 -0.355725 0.281904 +-0.404005 0.284317 -0.0906319 -0.929051 -0.35035 -0.11882 +-0.244005 -0.295683 -0.0706319 0.0719378 0.920248 0.384667 +0.155995 0.124317 -0.110632 -0.861155 0.501587 0.0825732 +0.195995 0.544317 -0.190632 -0.604688 0.363674 -0.708569 +-0.344005 0.584317 0.129368 0.0755146 -0.00101157 -0.997144 +0.155995 0.564317 -0.0906319 -0.947988 0.316198 -0.0365487 +-0.364005 0.344317 -0.270632 0.0913104 0.0940827 -0.991368 +0.0759953 -0.375683 0.0493681 -0.470789 0.874441 0.11709 +-0.264005 -0.375683 -0.230632 -0.0933608 0.298839 -0.949726 +-0.324005 0.124317 -0.210632 -0.678055 0.734933 -0.0107393 +-0.104005 0.504317 -0.130632 0.929051 0.35035 0.11882 +-0.104005 0.424317 0.0493681 -0.0913104 -0.0940827 0.991368 +0.0159953 0.664317 0.189368 -0.999368 -0.000487557 -0.0355506 +0.0359953 0.484317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 -0.375683 -0.270632 -0.136967 0.0586659 -0.988837 +0.375995 0.564317 -0.0706319 0.301081 0.928023 0.219369 +0.0959953 -0.475683 -0.170632 -0.871549 -0.481571 0.0921502 +-0.104005 0.524317 0.189368 -0.0755146 0.00101157 0.997144 +0.195995 0.684317 0.149368 0.0355514 -0.00170225 -0.999366 +-0.424005 0.424317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.344005 -0.495683 -0.150632 -0.708686 -0.660484 -0.248042 +-0.304005 0.0243165 -0.290632 0.000821192 -0.0138536 -0.999904 +0.255995 0.584317 -0.0306319 0.301081 0.928023 0.219369 +0.355995 -0.235683 0.0293681 0.871549 0.481571 -0.0921502 +0.415995 -0.435683 -0.310632 0.470789 -0.874441 -0.11709 +-0.384005 0.284317 -0.190632 -0.929051 -0.35035 -0.11882 +-0.384005 0.524317 -0.0706319 -0.358505 0.931881 0.055417 +-0.324005 0.324317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.204005 0.204317 -0.290632 0.000821192 -0.0138536 -0.999904 +0.215995 0.224317 -0.0706319 -0.301081 -0.928023 -0.219369 +0.275995 -0.495683 -0.290632 -0.136967 0.0586659 -0.988837 +0.235995 0.264317 -0.210632 -0.301081 -0.928023 -0.219369 +-0.324005 0.00431655 -0.110632 -0.107285 -0.70329 0.00965593 +-0.324005 0.404317 0.169368 -0.0755146 0.00101157 0.997144 +-0.164005 0.364317 -0.250632 0.0913104 0.0940827 -0.991368 +0.375995 0.324317 -0.0506319 0.827597 -0.368571 0.423346 +0.195995 -0.0156835 -0.110632 0.863206 -0.500998 0.0622335 +-0.164005 -0.295683 0.0293681 -0.649153 -0.760138 -0.0281194 +-0.144005 -0.295683 -0.270632 0.759684 -0.649749 0.0265783 +-0.0840047 -0.355683 -0.170632 0.00114967 -0.084275 -0.99644 +0.335995 -0.255683 -0.150632 0.871549 0.481571 -0.0921502 +0.415995 -0.375683 -0.0306319 0.871549 0.481571 -0.0921502 +0.0559953 0.484317 -0.110632 0.0406806 0.999165 -0.00351298 +0.215995 -0.395683 0.0493681 0.136967 -0.0586659 0.988837 +0.395995 0.484317 0.0293681 0.626492 -0.365928 0.688176 +0.315995 0.564317 -0.230632 0.142261 0.183757 -0.972621 +0.0159953 -0.0156835 -0.0706319 0.367245 -0.447148 0.815591 +0.175995 -0.475683 -0.270632 -0.136967 0.0586659 -0.988837 +0.135995 0.424317 -0.210632 -0.703907 0.371475 -0.605391 +-0.00400471 0.284317 -0.0306319 -0.0180191 -0.74624 0.665407 +0.255995 -0.155683 -0.0706319 0.430062 -0.376231 0.820669 +0.255995 0.104317 -0.150632 0.671279 -0.397893 -0.625234 +-0.264005 -0.435683 0.00936812 -0.0839363 -0.189369 0.978312 +0.415995 -0.455683 -0.170632 0.470789 -0.874441 -0.11709 +-0.264005 0.184317 -0.0106319 -0.678055 0.734933 -0.0107393 +-0.364005 0.504317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.244005 0.484317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.284005 -0.475683 -0.210632 -0.265813 -0.555775 -0.787691 +0.0959953 -0.355683 -0.0306319 -0.470789 0.874441 0.11709 +0.375995 -0.475683 0.0293681 0.136967 -0.0586659 0.988837 +0.375995 0.344317 -0.190632 0.873912 -0.176465 -0.45291 +0.435995 0.504317 -0.130632 0.920045 -0.222211 -0.322701 +0.235995 0.564317 0.0693681 -0.445357 -0.0665706 0.892867 +-0.184005 0.324317 0.149368 0.0755146 -0.00101157 -0.997144 +0.135995 0.324317 -0.0106319 0.00139075 -0.387575 0.921832 +0.275995 0.404317 0.0493681 0.0734271 -0.251922 0.964958 +0.295995 0.604317 0.189368 -0.0355514 0.00170225 0.999366 +-0.144005 0.584317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0440047 0.404317 -0.0106319 0.0297837 0.293241 0.95556 +-0.384005 0.404317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.304005 -0.0156835 -0.0306319 0.649153 0.760138 0.0281194 +-0.284005 -0.0956835 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.204005 0.544317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.164005 0.284317 0.0493681 -0.678055 0.734933 -0.0107393 +-0.144005 -0.415683 -0.0906319 0.967351 -0.0426501 0.249827 +-0.00400471 -0.375683 -0.170632 0.00522956 -0.416496 -0.909083 +0.0359953 -0.0156835 -0.150632 0.687025 -0.422108 -0.591457 +-0.304005 -0.155683 -0.110632 -0.649153 -0.760138 -0.0281194 +-0.224005 0.584317 -0.0706319 -0.358505 0.931881 0.055417 +-0.144005 -0.155683 -0.0106319 0.649153 0.760138 0.0281194 +-0.0640047 -0.355683 -0.0506319 0.000847875 -0.0779966 0.996951 +-0.204005 -0.235683 -0.110632 -0.649153 -0.760138 -0.0281194 +0.315995 -0.355683 0.0493681 0.136967 -0.0586659 0.988837 +-0.284005 0.324317 0.149368 0.0755146 -0.00101157 -0.997144 +0.0959953 -0.455683 -0.0706319 -0.871549 -0.481571 0.0921502 +0.215995 -0.555683 -0.130632 0.470789 -0.874441 -0.11709 +-0.144005 0.164317 -0.0106319 0.678055 -0.734933 0.0107393 +0.155995 -0.535683 -0.0106319 -0.871549 -0.481571 0.0921502 +0.215995 0.364317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 -0.275683 -0.0306319 -0.470789 0.874441 0.11709 +0.295995 0.484317 0.189368 -0.0355514 0.00170225 0.999366 +-0.324005 0.124317 -0.0306319 -0.678055 0.734933 -0.0107393 +-0.204005 -0.235683 -0.210632 -0.649153 -0.760138 -0.0281194 +-0.284005 0.244317 -0.270632 0.358505 -0.931881 -0.055417 +0.315995 -0.415683 -0.290632 -0.136967 0.0586659 -0.988837 +0.115995 0.00431655 -0.150632 -0.502517 -0.864502 0.0106364 +-0.144005 0.404317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 0.664317 0.149368 0.0755146 -0.00101157 -0.997144 +0.115995 0.404317 -0.0106319 0.0314179 0.34058 0.939675 +0.195995 0.524317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 0.324317 0.189368 -0.0355514 0.00170225 0.999366 +0.175995 0.624317 -0.0506319 0.301081 0.928023 0.219369 +-0.284005 0.544317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.264005 0.0443165 -0.230632 0.678055 -0.734933 0.0107393 +-0.224005 0.264317 -0.170632 0.358505 -0.931881 -0.055417 +-0.184005 0.244317 -0.230632 -0.678055 0.734933 -0.0107393 +0.135995 -0.315683 -0.210632 -0.470789 0.874441 0.11709 +0.175995 0.484317 0.00936812 -0.685111 0.0504998 0.72667 +0.375995 -0.395683 0.0293681 0.136967 -0.0586659 0.988837 +0.395995 0.364317 -0.110632 0.950857 -0.309593 0.00467193 +-0.324005 0.564317 -0.190632 -0.358505 0.931881 0.055417 +-0.384005 0.224317 -0.0506319 -0.929051 -0.35035 -0.11882 +-0.344005 0.544317 -0.0106319 -0.358505 0.931881 0.055417 +-0.324005 0.224317 -0.210632 0.358505 -0.931881 -0.055417 +-0.204005 -0.235683 -0.0306319 -0.649153 -0.760138 -0.0281194 +-0.0240047 0.484317 -0.0906319 0.0432149 0.985981 0.161167 +0.135995 -0.495683 0.0693681 0.136967 -0.0586659 0.988837 +0.135995 -0.415683 0.0693681 0.136967 -0.0586659 0.988837 +-0.284005 0.244317 -0.0506319 0.358505 -0.931881 -0.055417 +0.0359953 0.384317 0.149368 0.0355514 -0.00170225 -0.999366 +0.155995 0.384317 0.149368 0.0355514 -0.00170225 -0.999366 +0.195995 0.464317 -0.230632 -0.416095 0.334838 -0.84542 +-0.344005 -0.395683 -0.0306319 -0.71313 0.119076 0.690845 +0.215995 -0.175683 -0.130632 -0.350804 -0.881312 -0.316585 +-0.384005 -0.0556835 -0.210632 -0.759684 0.649749 -0.0265783 +-0.384005 0.0443165 -0.250632 -0.735011 -0.677998 0.00878997 +-0.364005 -0.0356835 0.00936812 -0.759684 0.649749 -0.0265783 +-0.0840047 0.224317 -0.270632 0.735011 0.677998 -0.00878997 +0.0559953 -0.395683 -0.210632 -0.871549 -0.481571 0.0921502 +0.235995 -0.255683 -0.230632 -0.470789 0.874441 0.11709 +0.275995 0.164317 -0.0706319 0.494237 -0.277153 0.823878 +0.335995 -0.275683 -0.270632 0.871549 0.481571 -0.0921502 +0.455995 -0.435683 -0.0706319 0.871549 0.481571 -0.0921502 +-0.0640047 0.284317 -0.170632 -0.0441147 -0.822171 -0.567506 +-0.144005 0.544317 -0.0106319 0.929051 0.35035 0.11882 +-0.124005 0.564317 -0.170632 0.929051 0.35035 0.11882 +-0.264005 0.364317 0.0293681 -0.0913104 -0.0940827 0.991368 +0.0959953 0.564317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.624317 0.149368 0.0355514 -0.00170225 -0.999366 +0.355995 0.244317 -0.190632 0.923826 -0.226825 -0.308371 +-0.344005 -0.355683 -0.170632 -0.768644 0.466229 -0.437969 +-0.264005 0.144317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.184005 -0.175683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.144005 -0.395683 -0.170632 0.895979 0.124889 -0.426174 +0.115995 -0.515683 -0.270632 -0.871549 -0.481571 0.0921502 +-0.364005 -0.415683 -0.130632 -0.99343 -0.0430147 -0.106046 +0.255995 -0.555683 0.0493681 0.136967 -0.0586659 0.988837 +-0.184005 0.284317 -0.110632 0.358505 -0.931881 -0.055417 +-0.0840047 -0.295683 -0.110632 -0.0122873 0.997503 0.0695147 +-0.0840047 -0.195683 -0.170632 0.649153 0.760138 0.0281194 +-0.384005 0.264317 0.00936812 -0.0913104 -0.0940827 0.991368 +0.115995 0.0643165 -0.110632 -0.862506 0.50213 0.0628265 +0.175995 0.284317 -0.250632 -0.301081 -0.928023 -0.219369 +0.235995 -0.0756835 -0.110632 0.0631834 0.993956 0.0897691 +-0.384005 0.0643165 0.0493681 -0.735011 -0.677998 0.00878997 +-0.384005 0.0843165 -0.110632 -0.678055 0.734933 -0.0107393 +-0.264005 0.0643165 0.0493681 -0.000821192 0.0138536 0.999904 +0.0159953 -0.395683 -0.0906319 0.0108755 -0.887664 0.460233 +0.0359953 -0.295683 -0.110632 -0.0122861 0.997387 0.0711648 +0.175995 0.0443165 -0.0706319 0.104309 -0.0484108 0.993361 +0.335995 0.504317 0.0693681 0.232076 -0.294435 0.927063 +-0.224005 -0.295683 -0.150632 0.235842 0.936652 -0.258962 +-0.184005 0.124317 -0.250632 0.678055 -0.734933 0.0107393 +-0.284005 0.164317 -0.150632 -0.678055 0.734933 -0.0107393 +-0.124005 -0.255683 -0.0106319 0.759684 -0.649749 0.0265783 +0.195995 -0.315683 0.00936812 -0.470789 0.874441 0.11709 +-0.244005 -0.195683 -0.250632 -0.649153 -0.760138 -0.0281194 +0.335995 0.264317 -0.0706319 0.811476 -0.370157 0.452182 +-0.104005 0.324317 -0.250632 0.0913104 0.0940827 -0.991368 +0.275995 0.224317 -0.170632 0.011226 -0.018826 -0.999759 +-0.244005 -0.135683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.0840047 0.264317 -0.0706319 -0.0327635 -0.94809 0.316272 +-0.0840047 0.384317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0440047 0.0443165 -0.0906319 -0.675029 0.599525 0.430006 +0.195995 0.124317 -0.170632 -0.270337 0.145432 -0.951694 +0.215995 -0.335683 -0.270632 -0.136967 0.0586659 -0.988837 +0.215995 -0.115683 -0.170632 -0.26987 0.319311 -0.908411 +0.335995 0.304317 -0.230632 0.753437 -0.0904953 -0.651248 +0.335995 0.444317 0.0293681 0.396524 -0.331048 0.85625 +-0.324005 -0.0956835 -0.290632 0.0384737 0.00410846 -0.999251 +0.0759953 0.444317 -0.190632 0.0142757 0.683776 -0.729527 +0.355995 -0.475683 -0.150632 0.470789 -0.874441 -0.11709 +-0.204005 -0.515683 -0.170632 0.386525 -0.826653 -0.408953 +-0.204005 -0.335683 -0.0306319 0.389538 0.597714 0.700713 +-0.404005 0.344317 -0.130632 -0.929051 -0.35035 -0.11882 +-0.364005 -0.0356835 -0.150632 -0.759684 0.649749 -0.0265783 +-0.284005 -0.0356835 -0.150632 0.649153 0.760138 0.0281194 +-0.284005 0.164317 -0.0706319 -0.678055 0.734933 -0.0107393 +-0.204005 0.244317 -0.0306319 -0.678055 0.734933 -0.0107393 +-0.0840047 0.224317 -0.0106319 0.735011 0.677998 -0.00878997 +0.215995 -0.295683 0.0693681 -0.0746772 0.266278 0.685261 +0.235995 0.204317 -0.0106319 -0.301081 -0.928023 -0.219369 +0.235995 0.604317 -0.0906319 0.301081 0.928023 0.219369 +0.275995 -0.535683 -0.0506319 0.470789 -0.874441 -0.11709 +0.355995 -0.495683 -0.0306319 0.470789 -0.874441 -0.11709 +-0.284005 0.244317 -0.150632 0.358505 -0.931881 -0.055417 +-0.244005 -0.0756835 -0.0306319 0.649153 0.760138 0.0281194 +0.315995 0.604317 -0.170632 0.301081 0.928023 0.219369 +-0.364005 -0.115683 -0.0906319 -0.649153 -0.760138 -0.0281194 +0.155995 0.244317 -0.0906319 -0.301081 -0.928023 -0.219369 +0.335995 -0.475683 -0.310632 -0.136967 0.0586659 -0.988837 +-0.124005 0.524317 -0.0706319 0.929051 0.35035 0.11882 +0.235995 0.0443165 -0.130632 0.830989 -0.486358 -0.269958 +0.135995 0.244317 -0.0106319 -0.437052 -0.0701678 0.896686 +-0.484005 0.484317 0.00936812 -0.358505 0.931881 0.055417 +-0.444005 0.444317 -0.110632 -0.929051 -0.35035 -0.11882 +-0.304005 -0.315683 -0.0706319 -0.43128 0.805084 0.407232 +-0.304005 0.304317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.304005 0.504317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.284005 0.604317 0.169368 -0.0755146 0.00101157 0.997144 +-0.264005 0.384317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.224005 0.604317 -0.230632 -0.358505 0.931881 0.055417 +-0.204005 0.624317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0240047 0.404317 -0.210632 -0.0059777 0.29104 -0.95669 +0.0759953 0.624317 0.189368 -0.0355514 0.00170225 0.999366 +0.135995 0.444317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.144317 -0.0706319 -0.194181 0.124844 0.972962 +0.215995 0.324317 0.0293681 -0.121829 -0.190725 0.974053 +0.275995 0.444317 -0.250632 0.139881 0.184575 -0.972812 +0.375995 0.424317 -0.210632 0.732519 -0.0777935 -0.676273 +0.0359953 0.264317 -0.130632 -0.0435408 -0.980844 -0.189864 +0.155995 -0.295683 -0.130632 -0.0117261 0.955247 -0.295494 +-0.164005 0.444317 0.0293681 -0.0913104 -0.0940827 0.991368 +0.315995 0.564317 -0.0506319 0.301081 0.928023 0.219369 +0.395995 0.544317 -0.0106319 0.301081 0.928023 0.219369 +-0.204005 -0.115683 -0.130632 0.649153 0.760138 0.0281194 +-0.164005 -0.315683 -0.130632 -0.999924 -0.0123093 -0.000112619 +-0.324005 0.544317 -0.130632 -0.358505 0.931881 0.055417 +-0.264005 0.0443165 -0.0906319 0.678055 -0.734933 0.0107393 +-0.264005 0.464317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.264005 0.564317 -0.0106319 -0.358505 0.931881 0.055417 +-0.224005 0.544317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.184005 -0.515683 -0.110632 0.548758 -0.833464 0.0648247 +-0.184005 0.604317 -0.150632 -0.358505 0.931881 0.055417 +-0.144005 -0.195683 -0.270632 0.0384737 0.00410846 -0.999251 +-0.124005 -0.155683 -0.210632 0.649153 0.760138 0.0281194 +-0.124005 0.264317 -0.230632 0.735011 0.677998 -0.00878997 +-0.124005 0.344317 0.0293681 -0.0913104 -0.0940827 0.991368 +0.0359953 -0.315683 -0.170632 -0.006246 0.515222 -0.85698 +0.0959953 -0.395683 -0.270632 -0.136967 0.0586659 -0.988837 +0.235995 0.624317 -0.150632 0.301081 0.928023 0.219369 +0.295995 -0.255683 -0.0106319 -0.470789 0.874441 0.11709 +0.375995 -0.315683 -0.150632 0.871549 0.481571 -0.0921502 +0.395995 0.564317 -0.130632 0.301081 0.928023 0.219369 +-0.344005 -0.115683 -0.230632 -0.649153 -0.760138 -0.0281194 +-0.244005 -0.155683 0.0493681 -0.0384737 -0.00410846 0.999251 +0.295995 -0.215683 -0.290632 -0.136967 0.0586659 -0.988837 +0.195995 -0.555683 -0.190632 0.470789 -0.874441 -0.11709 +0.215995 0.244317 -0.130632 -0.301081 -0.928023 -0.219369 +-0.304005 0.264317 0.00936812 -0.0913104 -0.0940827 0.991368 +0.335995 -0.295683 0.0493681 0.136967 -0.0586659 0.988837 +-0.204005 0.504317 0.189368 -0.0755146 0.00101157 0.997144 +0.235995 0.484317 0.149368 0.0355514 -0.00170225 -0.999366 +-0.444005 0.504317 -0.110632 -0.358505 0.931881 0.055417 +-0.304005 -0.0356835 -0.290632 0.0384737 0.00410846 -0.999251 +-0.284005 0.104317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.264005 -0.0556835 -0.230632 0.649153 0.760138 0.0281194 +-0.244005 0.424317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.144005 0.224317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.124005 0.484317 0.00936812 0.929051 0.35035 0.11882 +-0.124005 0.584317 -0.230632 0.143748 0.110124 -0.921877 +-0.124005 0.624317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 0.564317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.00400471 0.0243165 -0.170632 0.00655204 0.267395 -0.963565 +0.0759953 0.444317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.664317 0.189368 -0.0355514 0.00170225 0.999366 +0.215995 0.584317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.404317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.264317 0.00936812 0.226232 -0.292989 0.928964 +0.275995 -0.495683 0.0493681 0.136967 -0.0586659 0.988837 +0.275995 -0.235683 -0.170632 -0.470789 0.874441 0.11709 +0.295995 -0.495683 -0.230632 0.470789 -0.874441 -0.11709 +-0.0640047 0.464317 -0.150632 0.0287449 0.901951 -0.43083 +-0.364005 0.544317 0.169368 -0.997143 0.00181983 -0.0755164 +-0.344005 0.364317 0.129368 0.0755146 -0.00101157 -0.997144 +0.0959953 0.264317 -0.150632 -0.0447013 -0.933936 -0.354624 +0.255995 -0.335683 0.0493681 0.136967 -0.0586659 0.988837 +-0.344005 0.0243165 -0.0506319 -0.735011 -0.677998 0.00878997 +-0.264005 0.404317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.224005 0.444317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 -0.455683 -0.0106319 0.386143 -0.353057 0.8522 +-0.164005 0.484317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.144005 0.164317 -0.230632 0.678055 -0.734933 0.0107393 +-0.124005 -0.175683 -0.0906319 0.649153 0.760138 0.0281194 +-0.124005 0.244317 -0.130632 0.735011 0.677998 -0.00878997 +0.235995 0.324317 0.149368 0.0355514 -0.00170225 -0.999366 +-0.444005 0.424317 -0.210632 -0.929051 -0.35035 -0.11882 +-0.444005 0.504317 -0.210632 -0.358505 0.931881 0.055417 +-0.444005 0.504317 -0.0306319 -0.358505 0.931881 0.055417 +-0.364005 0.0243165 0.00936812 -0.735011 -0.677998 0.00878997 +-0.304005 -0.455683 -0.0306319 -0.458342 -0.402715 0.792303 +-0.284005 0.0243165 -0.170632 0.678055 -0.734933 0.0107393 +-0.244005 -0.535683 -0.0906319 0.0702097 -0.973085 0.219491 +-0.244005 0.264317 -0.230632 0.358505 -0.931881 -0.055417 +-0.224005 0.144317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.0640047 0.304317 -0.0306319 -0.013687 -0.673634 0.738912 +0.0759953 -0.395683 -0.0706319 -0.871549 -0.481571 0.0921502 +0.115995 0.284317 -0.210632 -0.301081 -0.928023 -0.219369 +-0.304005 -0.155683 -0.190632 -0.649153 -0.760138 -0.0281194 +-0.204005 0.104317 -0.190632 0.678055 -0.734933 0.0107393 +-0.464005 0.424317 -0.0506319 -0.929051 -0.35035 -0.11882 +-0.444005 0.364317 -0.0306319 -0.929051 -0.35035 -0.11882 +-0.384005 -0.0956835 -0.0106319 -0.649153 -0.760138 -0.0281194 +-0.264005 -0.315683 -0.190632 -0.0918007 0.794803 -0.599884 +-0.264005 -0.195683 0.00936812 -0.649153 -0.760138 -0.0281194 +-0.204005 -0.395683 -0.230632 0.398238 0.123474 -0.908934 +-0.204005 -0.0956835 -0.250632 0.649153 0.760138 0.0281194 +-0.204005 0.104317 -0.0106319 0.678055 -0.734933 0.0107393 +-0.164005 -0.235683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.104005 0.424317 -0.0106319 0.929051 0.35035 0.11882 +-0.0240047 -0.295683 -0.0906319 -0.0113224 0.916084 0.400727 +-0.00400471 0.284317 -0.170632 -0.0440803 -0.819689 -0.571085 +0.0959953 -0.295683 -0.0906319 -0.0112736 0.912041 0.409838 +0.135995 -0.495683 -0.0506319 -0.871549 -0.481571 0.0921502 +0.135995 -0.335683 0.00936812 -0.470789 0.874441 0.11709 +0.175995 0.584317 -0.150632 -0.802986 0.370806 -0.466579 +0.235995 -0.275683 -0.0906319 -0.470789 0.874441 0.11709 +0.295995 -0.515683 -0.170632 0.470789 -0.874441 -0.11709 +0.375995 -0.355683 -0.250632 0.871549 0.481571 -0.0921502 +0.395995 -0.355683 -0.190632 0.871549 0.481571 -0.0921502 +-0.284005 0.164317 -0.230632 -0.678055 0.734933 -0.0107393 +0.175995 0.564317 0.149368 0.0355514 -0.00170225 -0.999366 +0.195995 0.344317 -0.270632 -0.163695 0.276926 -0.946844 +0.215995 0.444317 0.0293681 -0.375572 -0.0960491 0.921794 +0.295995 0.564317 0.0493681 0.301081 0.928023 0.219369 +-0.364005 0.104317 -0.170632 -0.678055 0.734933 -0.0107393 +-0.344005 -0.135683 0.0293681 -0.649153 -0.760138 -0.0281194 +-0.324005 -0.495683 -0.0906319 -0.622073 -0.743088 0.24667 +-0.184005 0.304317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.144005 -0.295683 -0.210632 0.759684 -0.649749 0.0265783 +-0.124005 -0.255683 -0.0906319 0.759684 -0.649749 0.0265783 +0.355995 -0.255683 -0.0306319 0.871549 0.481571 -0.0921502 +-0.404005 -0.0756835 -0.130632 -0.759684 0.649749 -0.0265783 +0.355995 0.224317 -0.110632 0.916833 -0.344967 0.201015 +-0.404005 0.324317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.124005 0.184317 -0.150632 0.678055 -0.734933 0.0107393 +0.275995 0.344317 -0.270632 0.332177 0.113568 -0.936349 +-0.204005 0.324317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.144005 -0.475683 -0.0906319 0.839135 -0.498885 0.216714 +-0.0240047 0.344317 -0.0106319 0.00630349 -0.284015 0.958797 +0.0359953 0.264317 -0.0706319 -0.03176 -0.937414 0.346726 +0.175995 -0.595683 -0.0906319 0.470789 -0.874441 -0.11709 +0.255995 0.564317 -0.230632 -0.211046 0.289186 -0.933718 +0.435995 -0.395683 0.0293681 0.136967 -0.0586659 0.988837 +-0.204005 0.104317 -0.130632 0.678055 -0.734933 0.0107393 +0.155995 -0.575683 -0.150632 -0.871549 -0.481571 0.0921502 +0.415995 -0.475683 -0.0306319 0.470789 -0.874441 -0.11709 +0.0159953 0.324317 -0.210632 -0.0341624 -0.423671 -0.905153 +0.395995 0.524317 -0.190632 0.689356 -0.0528683 -0.722476 +0.315995 0.284317 -0.0106319 0.549717 -0.356879 0.755269 +0.0559953 0.524317 0.149368 0.0355514 -0.00170225 -0.999366 +0.155995 0.524317 -0.0306319 -0.886182 0.187335 0.423765 +-0.164005 0.524317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.164005 0.564317 0.0493681 -0.0913104 -0.0940827 0.991368 +0.415995 0.484317 -0.0306319 0.858999 -0.363829 0.360184 +-0.364005 0.464317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.244005 0.324317 0.189368 -0.0755146 0.00101157 0.997144 +-0.224005 0.0843165 -0.0706319 0.678055 -0.734933 0.0107393 +-0.184005 0.384317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.124005 0.464317 0.189368 -0.0755146 0.00101157 0.997144 +0.0359953 0.424317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.324317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.344317 -0.210632 -0.0276999 -0.234787 -0.971641 +0.115995 0.604317 0.149368 0.0355514 -0.00170225 -0.999366 +0.175995 0.484317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.444317 0.189368 -0.0355514 0.00170225 0.999366 +0.295995 0.544317 0.189368 -0.0355514 0.00170225 0.999366 +-0.424005 0.404317 -0.150632 -0.929051 -0.35035 -0.11882 +0.195995 -0.275683 -0.190632 -0.470789 0.874441 0.11709 +0.435995 0.464317 -0.0906319 0.952418 -0.304086 -0.0207676 +-0.364005 0.104317 0.00936812 -0.678055 0.734933 -0.0107393 +-0.344005 -0.0156835 -0.250632 -0.759684 0.649749 -0.0265783 +-0.344005 0.0243165 -0.210632 -0.735011 -0.677998 0.00878997 +-0.264005 -0.195683 -0.110632 -0.649153 -0.760138 -0.0281194 +-0.164005 0.144317 0.0493681 0.678055 -0.734933 0.0107393 +-0.144005 0.164317 -0.0706319 0.678055 -0.734933 0.0107393 +0.135995 -0.515683 -0.170632 -0.871549 -0.481571 0.0921502 +0.135995 -0.435683 -0.270632 -0.136967 0.0586659 -0.988837 +0.135995 -0.315683 -0.270632 -0.136967 0.0586659 -0.988837 +0.135995 0.504317 -0.0906319 -0.953552 0.295257 0.0596743 +-0.244005 0.204317 -0.150632 -0.678055 0.734933 -0.0107393 +0.0159953 0.384317 -0.0106319 0.0236052 0.125132 0.991853 +0.175995 -0.535683 0.0493681 0.136967 -0.0586659 0.988837 +0.195995 0.644317 0.189368 -0.0355514 0.00170225 0.999366 +0.215995 -0.115683 -0.0706319 -0.313099 0.37046 0.874488 +0.275995 -0.375683 -0.290632 -0.136967 0.0586659 -0.988837 +0.435995 -0.415683 -0.130632 0.871549 0.481571 -0.0921502 +-0.204005 -0.175683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.104005 -0.195683 -0.0106319 0.649153 0.760138 0.0281194 +-0.324005 -0.0556835 0.0493681 -0.0384737 -0.00410846 0.999251 +0.0759953 -0.355683 -0.170632 -0.470789 0.874441 0.11709 +0.175995 -0.455683 0.0493681 0.136967 -0.0586659 0.988837 +-0.104005 0.484317 -0.190632 0.929051 0.35035 0.11882 +-0.364005 0.104317 -0.0706319 -0.678055 0.734933 -0.0107393 +-0.344005 0.424317 0.129368 0.0755146 -0.00101157 -0.997144 +-0.284005 0.0243165 0.00936812 0.678055 -0.734933 0.0107393 +-0.224005 0.604317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.164005 0.564317 0.189368 -0.0755146 0.00101157 0.997144 +-0.124005 0.424317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0640047 0.364317 0.189368 0.997143 -0.00181983 0.0755164 +0.0159953 0.564317 0.189368 -0.999368 -0.000487557 -0.0355506 +0.0359953 0.644317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0759953 0.464317 -0.0706319 0.0447787 0.920561 0.388008 +0.0959953 0.304317 -0.250632 -0.654655 0.0764887 -0.58969 +0.0959953 0.464317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 0.404317 -0.250632 -0.495104 0.348733 -0.795765 +0.155995 0.644317 0.149368 0.0355514 -0.00170225 -0.999366 +0.175995 0.104317 -0.0706319 -0.421875 0.255928 0.869699 +0.195995 -0.595683 -0.0106319 0.470789 -0.874441 -0.11709 +0.255995 -0.555683 -0.0106319 0.470789 -0.874441 -0.11709 +0.395995 -0.455683 -0.270632 0.470789 -0.874441 -0.11709 +-0.424005 0.464317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.304005 -0.355683 -0.210632 -0.429715 0.465098 -0.77397 +-0.304005 0.164317 0.0293681 -0.678055 0.734933 -0.0107393 +-0.304005 0.484317 0.169368 -0.0755146 0.00101157 0.997144 +-0.244005 -0.495683 -0.0306319 0.073418 -0.691428 0.718705 +-0.184005 -0.275683 -0.0506319 -0.649153 -0.760138 -0.0281194 +-0.124005 -0.375683 -0.0706319 0.00585824 -0.483889 0.875026 +-0.124005 0.264317 0.0293681 0.735011 0.677998 -0.00878997 +-0.0840047 0.384317 0.0293681 0.929051 0.35035 0.11882 +-0.0840047 0.484317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0240047 0.444317 -0.0306319 0.0411686 0.670817 0.74045 +0.0359953 0.0243165 -0.0906319 0.80776 0.304022 0.505068 +0.0759953 -0.395683 -0.0106319 -0.871549 -0.481571 0.0921502 +0.155995 -0.0156835 -0.170632 0.25418 -0.159486 -0.953891 +0.175995 0.224317 -0.0306319 -0.301081 -0.928023 -0.219369 +0.215995 0.604317 -0.0106319 0.301081 0.928023 0.219369 +0.235995 -0.535683 -0.270632 0.470789 -0.874441 -0.11709 +0.255995 0.124317 -0.0906319 0.700784 -0.400087 0.5904 +0.255995 0.164317 -0.170632 0.207525 -0.132554 -0.969187 +0.255995 0.264317 -0.270632 -0.301081 -0.928023 -0.219369 +0.255995 0.364317 0.0293681 0.0401832 -0.242186 0.969397 +0.275995 -0.255683 -0.110632 -0.470789 0.874441 0.11709 +0.275995 -0.115683 -0.0906319 0.808942 0.355094 0.468531 +0.275995 0.364317 0.189368 -0.0355514 0.00170225 0.999366 +0.315995 0.504317 -0.230632 0.268748 0.138141 -0.953248 +0.335995 0.444317 -0.230632 0.503923 0.0404599 -0.862789 +0.395995 -0.335683 -0.0906319 0.871549 0.481571 -0.0921502 +0.395995 0.444317 -0.0106319 0.759875 -0.372465 0.532765 +0.395995 0.464317 -0.170632 0.83075 -0.142317 -0.538131 +-0.184005 -0.115683 -0.210632 0.649153 0.760138 0.0281194 +-0.104005 -0.395683 -0.130632 0.0116092 -0.939932 -0.341023 +-0.00400471 -0.0356835 -0.110632 0.00825348 -0.993187 0.116235 +0.215995 0.584317 -0.210632 -0.480887 0.346408 -0.805441 +0.255995 -0.535683 -0.150632 0.470789 -0.874441 -0.11709 +0.355995 0.544317 -0.210632 0.435915 0.0706581 -0.8972 +0.355995 0.584317 -0.150632 0.301081 0.928023 0.219369 +0.355995 0.604317 -0.210632 0.301081 0.928023 0.219369 +0.395995 0.384317 -0.170632 0.900184 -0.200685 -0.386506 +-0.424005 0.324317 -0.0506319 -0.929051 -0.35035 -0.11882 +-0.404005 0.384317 -0.250632 -0.929051 -0.35035 -0.11882 +-0.384005 0.264317 -0.130632 -0.929051 -0.35035 -0.11882 +-0.364005 0.604317 0.169368 -0.997143 0.00181983 -0.0755164 +-0.344005 0.644317 0.129368 0.0755146 -0.00101157 -0.997144 +-0.324005 0.384317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.304005 0.364317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.244005 0.264317 -0.110632 0.358505 -0.931881 -0.055417 +-0.224005 -0.0956835 -0.0906319 0.649153 0.760138 0.0281194 +-0.224005 0.0843165 -0.230632 0.678055 -0.734933 0.0107393 +-0.184005 0.604317 -0.0506319 -0.358505 0.931881 0.055417 +-0.164005 0.144317 -0.110632 0.678055 -0.734933 0.0107393 +-0.164005 0.344317 0.189368 -0.0755146 0.00101157 0.997144 +-0.124005 0.344317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.104005 -0.215683 -0.130632 0.759684 -0.649749 0.0265783 +0.115995 -0.495683 -0.130632 -0.871549 -0.481571 0.0921502 +0.135995 -0.335683 -0.0506319 -0.470789 0.874441 0.11709 +0.135995 0.544317 -0.130632 -0.905452 0.350382 -0.239543 +0.155995 0.424317 0.00936812 -0.646108 0.0293365 0.762668 +0.155995 0.504317 -0.190632 -0.723381 0.372156 -0.581548 +0.215995 0.524317 0.0493681 -0.499894 -0.0422998 0.865042 +0.275995 -0.175683 -0.110632 0.728624 -0.679102 0.0890322 +0.275995 0.144317 -0.130632 0.811742 -0.47601 -0.338215 +0.335995 -0.335683 -0.290632 -0.136967 0.0586659 -0.988837 +0.335995 0.344317 -0.0106319 0.597796 -0.362908 0.714784 +0.415995 0.544317 -0.0906319 0.301081 0.928023 0.219369 +-0.364005 0.204317 -0.170632 0.358505 -0.931881 -0.055417 +-0.244005 -0.0756835 -0.150632 0.649153 0.760138 0.0281194 +-0.184005 -0.475683 -0.190632 0.580639 -0.545307 -0.604565 +-0.0440047 0.444317 -0.190632 0.0122568 0.648649 -0.760966 +-0.444005 0.464317 -0.250632 -0.929051 -0.35035 -0.11882 +-0.404005 0.0643165 -0.290632 -0.735011 -0.677998 0.00878997 +-0.384005 -0.0956835 -0.250632 -0.649153 -0.760138 -0.0281194 +-0.384005 0.0843165 -0.210632 -0.678055 0.734933 -0.0107393 +-0.364005 0.0243165 -0.290632 -0.735011 -0.677998 0.00878997 +-0.364005 0.204317 -0.0906319 0.358505 -0.931881 -0.055417 +-0.344005 0.0243165 -0.150632 -0.735011 -0.677998 0.00878997 +-0.324005 0.124317 -0.270632 -0.678055 0.734933 -0.0107393 +-0.324005 0.224317 -0.0306319 0.358505 -0.931881 -0.055417 +-0.304005 -0.515683 -0.170632 -0.399755 -0.821583 -0.406445 +-0.304005 -0.155683 -0.0506319 -0.649153 -0.760138 -0.0281194 +-0.304005 0.224317 -0.0906319 0.358505 -0.931881 -0.055417 +-0.284005 -0.0356835 0.00936812 0.649153 0.760138 0.0281194 +-0.284005 0.0243165 -0.0506319 0.678055 -0.734933 0.0107393 +-0.264005 -0.435683 -0.230632 -0.0955321 -0.215531 -0.971813 +-0.264005 -0.315683 -0.0306319 -0.0844436 0.731106 0.677018 +-0.264005 0.564317 -0.110632 -0.358505 0.931881 0.055417 +-0.264005 0.584317 -0.210632 -0.358505 0.931881 0.055417 +-0.224005 -0.495683 -0.210632 0.226012 -0.660825 -0.715701 +-0.224005 0.224317 -0.250632 -0.678055 0.734933 -0.0107393 +-0.224005 0.224317 0.00936812 -0.678055 0.734933 -0.0107393 +-0.204005 0.284317 -0.210632 0.358505 -0.931881 -0.055417 +-0.184005 -0.255683 -0.250632 -0.649153 -0.760138 -0.0281194 +-0.184005 -0.255683 -0.170632 -0.649153 -0.760138 -0.0281194 +-0.184005 -0.115683 -0.0106319 0.649153 0.760138 0.0281194 +-0.184005 0.264317 0.00936812 -0.678055 0.734933 -0.0107393 +-0.164005 -0.415683 -0.210632 0.695412 -0.03755 -0.717629 +-0.144005 0.264317 -0.0906319 0.735011 0.677998 -0.00878997 +-0.124005 -0.255683 -0.230632 0.759684 -0.649749 0.0265783 +-0.104005 -0.315683 -0.150632 -0.008543 0.700501 -0.713463 +-0.0640047 0.384317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.0440047 -0.395683 -0.0706319 0.00876016 -0.717982 0.695917 +0.0159953 0.464317 -0.0706319 0.0447775 0.920874 0.387265 +0.0359953 -0.375683 -0.250632 -0.871549 -0.481571 0.0921502 +0.0559953 0.364317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.284317 -0.0306319 -0.0168591 -0.727269 0.68612 +0.0959953 -0.415683 0.0293681 -0.871549 -0.481571 0.0921502 +0.0959953 0.444317 -0.0306319 0.0415001 0.684906 0.727422 +0.115995 -0.495683 -0.210632 -0.871549 -0.481571 0.0921502 +0.155995 -0.575683 -0.250632 0.309254 -0.827164 -0.0919098 +0.155995 0.304317 -0.290632 -0.298208 0.310134 -0.902709 +0.155995 0.584317 -0.0306319 -0.923296 0.226166 0.310434 +0.195995 -0.155683 -0.0906319 -0.741561 -0.425448 0.518731 +0.215995 0.304317 0.189368 -0.0355514 0.00170225 0.999366 +0.255995 -0.555683 -0.0906319 0.470789 -0.874441 -0.11709 +0.255995 -0.275683 -0.270632 -0.136967 0.0586659 -0.988837 +0.335995 -0.515683 -0.0706319 0.470789 -0.874441 -0.11709 +0.335995 -0.255683 -0.210632 0.871549 0.481571 -0.0921502 +0.355995 -0.275683 -0.110632 0.871549 0.481571 -0.0921502 +0.375995 -0.295683 -0.0106319 0.871549 0.481571 -0.0921502 +0.395995 -0.395683 -0.290632 0.871549 0.481571 -0.0921502 +-0.364005 0.544317 -0.210632 -0.358505 0.931881 0.055417 +-0.344005 -0.135683 -0.130632 -0.649153 -0.760138 -0.0281194 +-0.204005 0.244317 -0.130632 -0.678055 0.734933 -0.0107393 +-0.164005 -0.135683 -0.110632 0.649153 0.760138 0.0281194 +-0.104005 0.304317 -0.190632 -0.0407724 -0.65446 -0.75497 +-0.0240047 -0.395683 -0.130632 0.0116367 -0.942225 -0.334642 +0.0759953 -0.435683 -0.190632 -0.871549 -0.481571 0.0921502 +0.315995 -0.215683 -0.130632 -0.470789 0.874441 0.11709 +-0.364005 -0.455683 -0.170632 -0.850899 -0.343487 -0.397476 +-0.364005 0.404317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.284005 -0.175683 -0.230632 -0.649153 -0.760138 -0.0281194 +-0.244005 0.204317 -0.0506319 -0.678055 0.734933 -0.0107393 +-0.224005 -0.215683 -0.150632 -0.649153 -0.760138 -0.0281194 +-0.224005 -0.215683 -0.0706319 -0.649153 -0.760138 -0.0281194 +-0.184005 -0.255683 0.00936812 -0.649153 -0.760138 -0.0281194 +-0.164005 -0.435683 -0.0506319 0.775222 -0.216057 0.593591 +-0.164005 -0.355683 -0.0506319 0.712316 0.441723 0.545424 +-0.164005 -0.135683 0.0293681 0.649153 0.760138 0.0281194 +-0.124005 -0.175683 0.0293681 0.649153 0.760138 0.0281194 +-0.124005 0.244317 -0.0506319 0.735011 0.677998 -0.00878997 +0.335995 0.204317 -0.170632 -0.301081 -0.928023 -0.219369 +0.415995 -0.395683 -0.170632 0.871549 0.481571 -0.0921502 +0.415995 -0.395683 -0.0906319 0.871549 0.481571 -0.0921502 +-0.404005 0.284317 -0.0306319 -0.929051 -0.35035 -0.11882 +-0.384005 0.284317 -0.250632 -0.929051 -0.35035 -0.11882 +-0.364005 0.0443165 -0.0906319 -0.735011 -0.677998 0.00878997 +-0.324005 -0.355683 -0.0506319 -0.629204 0.489165 0.604003 +-0.264005 0.184317 -0.110632 -0.678055 0.734933 -0.0107393 +-0.224005 0.524317 0.149368 0.0755146 -0.00101157 -0.997144 +0.135995 0.524317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 -0.555683 -0.0706319 -0.871549 -0.481571 0.0921502 +0.155995 0.0843165 -0.150632 -0.581629 0.328937 -0.74384 +0.155995 0.364317 0.00936812 -0.538798 -0.0242489 0.842075 +0.195995 0.184317 -0.0906319 -0.763635 0.449585 0.463275 +0.215995 -0.495683 -0.290632 -0.136967 0.0586659 -0.988837 +0.215995 0.0243165 -0.0906319 0.782279 -0.449417 0.431231 +0.215995 0.524317 -0.230632 -0.374771 0.326686 -0.867649 +0.315995 -0.475683 0.0293681 0.136967 -0.0586659 0.988837 +0.315995 0.204317 -0.0706319 0.765519 -0.372385 0.524678 +0.435995 -0.435683 -0.210632 0.871549 0.481571 -0.0921502 +0.175995 0.164317 -0.130632 -0.83509 0.482163 -0.264764 +0.335995 -0.495683 -0.190632 0.470789 -0.874441 -0.11709 +-0.104005 0.184317 -0.250632 0.678055 -0.734933 0.0107393 +-0.104005 0.304317 0.00936812 0.358505 -0.931881 -0.055417 +0.0559953 -0.315683 -0.0706319 -0.00756639 0.607374 0.794285 +0.275995 -0.235683 -0.250632 -0.470789 0.874441 0.11709 +-0.224005 0.284317 -0.270632 0.0913104 0.0940827 -0.991368 +0.335995 -0.215683 -0.0506319 0.871549 0.481571 -0.0921502 +-0.404005 0.524317 -0.230632 -0.358505 0.931881 0.055417 +-0.224005 0.504317 -0.250632 0.0913104 0.0940827 -0.991368 +0.375995 0.524317 0.0493681 0.463228 -0.343409 0.816991 +-0.344005 0.524317 0.129368 0.0755146 -0.00101157 -0.997144 +0.275995 0.524317 0.0693681 -0.153101 -0.180017 0.971674 +-0.464005 0.464317 -0.0306319 -0.929051 -0.35035 -0.11882 +-0.424005 0.384317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.424005 0.524317 -0.150632 -0.358505 0.931881 0.055417 +-0.384005 0.344317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.384005 0.444317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.364005 0.444317 0.169368 -0.997143 0.00181983 -0.0755164 +-0.304005 -0.395683 -0.230632 -0.411713 0.12267 -0.903019 +-0.304005 0.444317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.304005 0.484317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.304005 0.644317 0.169368 -0.0755146 0.00101157 0.997144 +-0.284005 0.224317 0.00936812 0.358505 -0.931881 -0.055417 +-0.284005 0.364317 0.169368 -0.0755146 0.00101157 0.997144 +-0.284005 0.464317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.264005 -0.295683 -0.110632 -0.0947812 0.993015 0.0702693 +-0.264005 0.0443165 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.264005 0.504317 0.169368 -0.0755146 0.00101157 0.997144 +-0.244005 -0.375683 -0.0106319 0.0789288 0.308477 0.947952 +-0.244005 -0.0756835 0.0493681 0.649153 0.760138 0.0281194 +-0.244005 0.344317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.224005 0.584317 0.00936812 -0.358505 0.931881 0.055417 +-0.224005 0.664317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.424317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.204005 0.564317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.184005 0.584317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.164005 0.144317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.164005 0.444317 0.189368 -0.0755146 0.00101157 0.997144 +-0.144005 0.404317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.144005 0.664317 0.189368 -0.0755146 0.00101157 0.997144 +-0.124005 0.544317 -0.110632 0.929051 0.35035 0.11882 +-0.104005 -0.175683 -0.250632 0.649153 0.760138 0.0281194 +-0.104005 0.244317 -0.190632 0.735011 0.677998 -0.00878997 +-0.0840047 -0.315683 -0.0706319 -0.0077988 0.62639 0.779375 +-0.0840047 0.404317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 0.464317 -0.230632 0.929051 0.35035 0.11882 +-0.0640047 0.324317 0.169368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.484317 0.189368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.544317 0.189368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.664317 0.189368 0.997143 -0.00181983 0.0755164 +-0.0240047 0.00431655 -0.0706319 -0.396109 -0.0969663 0.913069 +-0.00400471 0.0443165 -0.0706319 0.00649544 0.61399 0.789287 +-0.00400471 0.364317 -0.210632 -0.0218565 -0.0801051 -0.996542 +0.0159953 0.424317 -0.210632 0.00226632 0.461401 -0.88718 +0.0359953 0.464317 -0.150632 0.0298881 0.915946 -0.400138 +0.0559953 0.684317 0.169368 -0.000426732 0.999998 -0.00171851 +0.0759953 0.384317 -0.0106319 0.0244591 0.147489 0.988754 +0.0759953 0.524317 0.189368 -0.0355514 0.00170225 0.999366 +0.0959953 -0.435683 -0.110632 -0.871549 -0.481571 0.0921502 +0.0959953 -0.335683 -0.210632 -0.470789 0.874441 0.11709 +0.0959953 0.0243165 -0.110632 -0.862821 0.502245 0.0573501 +0.0959953 0.364317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.404317 -0.210632 -0.00373483 0.338793 -0.94085 +0.0959953 0.464317 -0.150632 0.0305274 0.923489 -0.382362 +0.115995 -0.355683 0.0493681 -0.470789 0.874441 0.11709 +0.115995 0.404317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.0643165 -0.0706319 -0.576575 0.344266 0.740878 +0.135995 0.344317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.364317 0.189368 -0.0355514 0.00170225 0.999366 +0.135995 0.424317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 -0.0156835 -0.0706319 -0.502517 -0.864502 0.0106364 +0.155995 0.604317 -0.110632 -0.915163 0.345846 -0.207027 +0.175995 0.424317 0.149368 0.0355514 -0.00170225 -0.999366 +0.195995 -0.415683 -0.270632 -0.136967 0.0586659 -0.988837 +0.195995 0.624317 -0.170632 -0.693811 0.370997 -0.617225 +0.215995 0.0843165 -0.170632 0.28087 -0.174874 -0.943648 +0.215995 0.684317 0.189368 -0.000426732 0.999998 -0.00171851 +0.235995 -0.155683 -0.170632 0.0642367 -0.354804 -0.932731 +0.235995 0.364317 -0.270632 0.0523155 0.213622 -0.975514 +0.235995 0.404317 0.0293681 -0.166663 -0.175293 0.970305 +0.235995 0.464317 -0.250632 -0.145006 0.271923 -0.951331 +0.235995 0.544317 0.189368 -0.0355514 0.00170225 0.999366 +0.255995 -0.0956835 -0.150632 0.413489 0.682261 -0.602948 +0.255995 0.204317 -0.0506319 -0.301081 -0.928023 -0.219369 +0.255995 0.364317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.624317 0.189368 -0.0355514 0.00170225 0.999366 +0.255995 0.664317 0.149368 0.0355514 -0.00170225 -0.999366 +0.275995 0.564317 0.00936812 0.301081 0.928023 0.219369 +0.295995 0.284317 -0.270632 0.5486 0.0195958 -0.835844 +0.295995 0.464317 0.0493681 0.0901694 -0.256719 0.962271 +0.295995 0.644317 0.169368 0.887225 0.000232767 -0.0848645 +0.315995 0.224317 -0.210632 -0.301081 -0.928023 -0.219369 +0.315995 0.384317 0.0293681 0.356185 -0.322835 0.87687 +0.335995 -0.415683 0.0293681 0.136967 -0.0586659 0.988837 +0.355995 -0.515683 0.0293681 0.470789 -0.874441 -0.11709 +0.355995 -0.415683 -0.310632 -0.136967 0.0586659 -0.988837 +0.355995 -0.355683 0.0293681 0.136967 -0.0586659 0.988837 +0.355995 0.384317 -0.230632 0.685361 -0.050638 -0.726427 +0.375995 0.364317 -0.0306319 0.775801 -0.37214 0.509533 +0.395995 0.384317 -0.0706319 0.907049 -0.349696 0.234448 +-0.364005 0.244317 -0.190632 -0.929051 -0.35035 -0.11882 +-0.224005 -0.335683 -0.210632 0.237367 0.615362 -0.751656 +-0.0440047 0.0243165 -0.150632 -0.722386 0.276998 -0.633586 +0.375995 -0.455683 -0.190632 0.470789 -0.874441 -0.11709 +-0.404005 0.324317 -0.170632 -0.929051 -0.35035 -0.11882 +-0.364005 -0.475683 -0.110632 -0.861848 -0.503202 0.0632946 +-0.364005 -0.395683 -0.170632 -0.899135 0.123082 -0.420008 +-0.364005 -0.0956835 -0.130632 -0.649153 -0.760138 -0.0281194 +-0.344005 -0.0156835 -0.0706319 -0.759684 0.649749 -0.0265783 +-0.344005 0.544317 -0.0906319 -0.358505 0.931881 0.055417 +-0.324005 -0.315683 -0.110632 -0.596436 0.799734 0.0684819 +-0.324005 0.0443165 0.0493681 -0.000821192 0.0138536 0.999904 +-0.324005 0.0643165 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.304005 -0.155683 0.00936812 -0.649153 -0.760138 -0.0281194 +-0.284005 0.0443165 -0.130632 0.678055 -0.734933 0.0107393 +-0.264005 -0.515683 -0.190632 -0.086206 -0.821726 -0.563324 +-0.264005 0.244317 -0.190632 0.358505 -0.931881 -0.055417 +-0.224005 0.264317 -0.0706319 0.358505 -0.931881 -0.055417 +-0.204005 0.604317 -0.190632 -0.358505 0.931881 0.055417 +-0.184005 0.244317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.184005 0.624317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.124005 0.364317 0.189368 -0.0755146 0.00101157 0.997144 +-0.124005 0.464317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.104005 0.484317 -0.0906319 0.0431108 0.987348 0.152599 +-0.104005 0.584317 0.189368 -0.0755146 0.00101157 0.997144 +-0.104005 0.624317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0840047 0.204317 -0.130632 0.678055 -0.734933 0.0107393 +-0.0640047 0.344317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.0240047 -0.335683 -0.0706319 -0.00397355 0.314098 0.949341 +-0.00400471 0.484317 -0.130632 0.0364875 0.981262 -0.189153 +0.135995 0.264317 -0.130632 -0.0434318 -0.982722 -0.179917 +0.135995 0.464317 -0.190632 -0.76946 0.372307 -0.518939 +0.215995 -0.555683 -0.230632 0.470789 -0.874441 -0.11709 +0.255995 -0.415683 0.0493681 0.136967 -0.0586659 0.988837 +0.275995 0.404317 -0.270632 0.208199 0.160521 -0.964822 +0.355995 0.284317 -0.170632 0.933955 -0.240519 -0.264341 +0.375995 -0.275683 0.0493681 0.136967 -0.0586659 0.988837 +-0.424005 0.344317 -0.0906319 -0.929051 -0.35035 -0.11882 +-0.384005 0.244317 -0.0906319 -0.929051 -0.35035 -0.11882 +-0.384005 0.524317 -0.0106319 -0.358505 0.931881 0.055417 +-0.364005 0.224317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.364005 0.384317 0.169368 -0.997143 0.00181983 -0.0755164 +-0.344005 -0.0356835 -0.210632 -0.759684 0.649749 -0.0265783 +-0.344005 -0.0156835 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.344005 0.464317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.324005 0.00431655 0.00936812 0.0579871 -0.709949 0.00988392 +-0.324005 0.144317 -0.0706319 -0.678055 0.734933 -0.0107393 +-0.324005 0.264317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.324005 0.344317 0.169368 -0.0755146 0.00101157 0.997144 +-0.324005 0.564317 -0.250632 0.0677085 0.138042 -0.936443 +-0.324005 0.564317 0.169368 -0.0755146 0.00101157 0.997144 +-0.304005 -0.415683 -0.0106319 -0.426139 -0.0401611 0.903766 +-0.304005 0.00431655 -0.250632 0.678055 -0.734933 0.0107393 +-0.304005 0.544317 -0.0306319 -0.358505 0.931881 0.055417 +-0.284005 -0.535683 -0.110632 -0.240542 -0.968575 0.0632612 +-0.284005 -0.115683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.284005 0.564317 -0.150632 -0.358505 0.931881 0.055417 +-0.264005 -0.195683 -0.290632 -0.649153 -0.760138 -0.0281194 +-0.244005 0.0643165 0.00936812 0.678055 -0.734933 0.0107393 +-0.244005 0.424317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.224005 -0.415683 -0.0106319 0.258796 -0.0428813 0.96498 +-0.224005 0.364317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.204005 -0.315683 -0.0706319 0.417431 0.810875 0.410161 +-0.204005 -0.295683 -0.110632 0.390635 0.91825 0.0649786 +-0.204005 -0.135683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.204005 -0.115683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.204005 0.464317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.204005 0.584317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.204005 0.604317 -0.110632 -0.358505 0.931881 0.055417 +-0.184005 0.244317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.184005 0.284317 -0.0506319 0.358505 -0.931881 -0.055417 +-0.144005 -0.275683 -0.130632 0.759684 -0.649749 0.0265783 +-0.144005 0.224317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.144005 0.304317 -0.230632 0.358505 -0.931881 -0.055417 +-0.144005 0.404317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.144005 0.444317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.144005 0.544317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.144005 0.564317 -0.0506319 0.929051 0.35035 0.11882 +-0.144005 0.604317 -0.170632 0.929051 0.35035 0.11882 +-0.124005 -0.235683 -0.270632 0.0384737 0.00410846 -0.999251 +-0.124005 -0.235683 -0.0506319 0.759684 -0.649749 0.0265783 +-0.124005 0.544317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.104005 0.284317 -0.150632 -0.0447968 -0.904447 -0.424209 +-0.104005 0.384317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.0840047 0.204317 -0.0506319 0.678055 -0.734933 0.0107393 +-0.0640047 0.484317 -0.110632 0.0402852 0.998895 -0.0241165 +-0.0240047 -0.335683 -0.170632 -0.00296994 0.250115 -0.968192 +0.0359953 -0.355683 -0.210632 -0.470789 0.874441 0.11709 +0.0559953 -0.415683 -0.250632 -0.871549 -0.481571 0.0921502 +0.0959953 -0.455683 -0.230632 -0.871549 -0.481571 0.0921502 +0.0959953 -0.435683 -0.0306319 -0.871549 -0.481571 0.0921502 +0.115995 -0.455683 0.0693681 -0.182691 -0.192709 0.704625 +0.115995 -0.355683 -0.270632 -0.136967 0.0586659 -0.988837 +0.115995 -0.335683 -0.170632 -0.470789 0.874441 0.11709 +0.115995 0.464317 -0.0906319 0.0437464 0.976762 0.209813 +0.135995 -0.495683 0.00936812 -0.871549 -0.481571 0.0921502 +0.135995 0.00431655 -0.110632 -0.502517 -0.864502 0.0106364 +0.155995 -0.315683 -0.170632 -0.470789 0.874441 0.11709 +0.155995 0.304317 0.189368 -0.0355514 0.00170225 0.999366 +0.175995 -0.375683 0.0693681 0.136967 -0.0586659 0.988837 +0.175995 0.304317 0.00936812 -0.322991 -0.117201 0.939111 +0.175995 0.404317 0.189368 -0.0355514 0.00170225 0.999366 +0.195995 -0.295683 -0.0306319 -0.470789 0.874441 0.11709 +0.195995 0.00431655 -0.150632 0.651593 -0.386785 -0.652433 +0.195995 0.604317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.584317 0.0293681 0.301081 0.928023 0.219369 +0.235995 -0.455683 0.0493681 0.136967 -0.0586659 0.988837 +0.235995 -0.295683 0.0293681 -0.470789 0.874441 0.11709 +0.235995 0.244317 -0.170632 -0.301081 -0.928023 -0.219369 +0.255995 -0.455683 -0.290632 -0.136967 0.0586659 -0.988837 +0.255995 0.0843165 -0.110632 0.862 -0.50004 0.0831208 +0.275995 0.584317 -0.0706319 0.301081 0.928023 0.219369 +0.315995 -0.515683 -0.0306319 0.470789 -0.874441 -0.11709 +0.335995 0.564317 -0.0906319 0.301081 0.928023 0.219369 +0.355995 -0.495683 -0.110632 0.470789 -0.874441 -0.11709 +0.355995 0.544317 -0.0306319 0.301081 0.928023 0.219369 +0.375995 -0.455683 -0.310632 0.222534 -0.493287 -0.473179 +0.395995 -0.455683 -0.130632 0.470789 -0.874441 -0.11709 +0.395995 -0.435683 0.0293681 0.136967 -0.0586659 0.988837 +0.395995 -0.335683 -0.0306319 0.871549 0.481571 -0.0921502 +0.415995 -0.355683 0.00936812 0.871549 0.481571 -0.0921502 +0.415995 0.404317 -0.110632 0.953509 -0.296137 -0.0558946 +0.435995 -0.415683 -0.0306319 0.871549 0.481571 -0.0921502 +-0.324005 -0.475683 -0.190632 -0.591578 -0.540007 -0.598689 +-0.224005 -0.535683 -0.130632 0.225406 -0.969904 -0.0920778 +-0.144005 -0.435683 -0.130632 0.96964 -0.220658 -0.105396 +-0.144005 -0.335683 -0.170632 -0.00326238 0.273812 -0.961755 +-0.0640047 -0.395683 -0.150632 0.00966554 -0.779431 -0.626298 +-0.0640047 0.264317 -0.130632 -0.0436374 -0.979022 -0.199027 +-0.384005 0.204317 -0.0106319 -0.929051 -0.35035 -0.11882 +-0.364005 -0.395683 -0.0706319 -0.910244 0.124602 0.394879 +-0.244005 -0.215683 -0.210632 -0.649153 -0.760138 -0.0281194 +-0.164005 -0.275683 -0.0906319 -0.649153 -0.760138 -0.0281194 +-0.164005 -0.255683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.124005 -0.255683 0.0493681 0.759684 -0.649749 0.0265783 +-0.104005 -0.195683 -0.210632 0.649153 0.760138 0.0281194 +0.175995 -0.295683 -0.230632 -0.470789 0.874441 0.11709 +0.415995 0.464317 -0.130632 0.931068 -0.236374 -0.277916 +-0.424005 0.504317 -0.0706319 -0.358505 0.931881 0.055417 +-0.384005 -0.0756835 -0.170632 -0.759684 0.649749 -0.0265783 +-0.364005 -0.0556835 -0.250632 -0.759684 0.649749 -0.0265783 +-0.364005 0.0843165 -0.250632 -0.678055 0.734933 -0.0107393 +-0.364005 0.304317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.364005 0.524317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.284005 0.304317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.244005 0.184317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.244005 0.184317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.104005 0.224317 -0.230632 0.735011 0.677998 -0.00878997 +0.0159953 0.324317 -0.0106319 -0.000803791 -0.432209 0.901765 +0.0359953 0.464317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0359953 0.604317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.564317 0.149368 0.0355514 -0.00170225 -0.999366 +0.115995 0.304317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.0443165 -0.150632 -0.548049 0.309008 -0.777137 +0.155995 -0.535683 -0.290632 -0.136967 0.0586659 -0.988837 +0.155995 0.464317 0.189368 -0.0355514 0.00170225 0.999366 +0.175995 0.344317 0.189368 -0.0355514 0.00170225 0.999366 +0.195995 0.284317 -0.290632 -0.301081 -0.928023 -0.219369 +0.195995 0.364317 0.149368 0.0355514 -0.00170225 -0.999366 +0.195995 0.624317 -0.0906319 0.301081 0.928023 0.219369 +0.215995 -0.255683 -0.270632 -0.470789 0.874441 0.11709 +0.215995 0.264317 -0.250632 -0.301081 -0.928023 -0.219369 +0.215995 0.444317 0.149368 0.0355514 -0.00170225 -0.999366 +0.275995 -0.375683 0.0493681 0.136967 -0.0586659 0.988837 +0.275995 0.244317 -0.230632 -0.301081 -0.928023 -0.219369 +0.275995 0.604317 -0.150632 0.301081 0.928023 0.219369 +0.295995 -0.315683 0.0493681 0.136967 -0.0586659 0.988837 +0.295995 -0.275683 -0.290632 -0.136967 0.0586659 -0.988837 +0.295995 0.604317 -0.210632 -0.062881 0.248864 -0.966495 +0.315995 -0.495683 -0.270632 0.470789 -0.874441 -0.11709 +0.315995 -0.255683 0.0293681 -0.470789 0.874441 0.11709 +0.335995 -0.255683 -0.0706319 0.871549 0.481571 -0.0921502 +0.375995 0.304317 -0.0906319 0.912248 -0.347305 0.217198 +0.435995 0.524317 -0.0106319 0.840031 -0.366984 0.399567 +0.455995 0.544317 -0.110632 0.93592 -0.243485 -0.254492 +0.0359953 -0.395683 -0.150632 0.00976375 -0.787502 -0.616122 +0.0759953 0.264317 -0.110632 -0.0407218 -0.999168 0.00130854 +0.195995 -0.295683 -0.150632 -0.470789 0.874441 0.11709 +0.195995 0.264317 -0.190632 -0.301081 -0.928023 -0.219369 +0.375995 0.324317 -0.150632 0.94602 -0.261733 -0.191159 +0.435995 -0.455683 -0.110632 0.470789 -0.874441 -0.11709 +0.435995 0.564317 -0.150632 0.301081 0.928023 0.219369 +-0.244005 -0.0556835 -0.190632 0.649153 0.760138 0.0281194 +0.0559953 -0.355683 -0.0506319 0.00112968 -0.10087 0.994896 +-0.464005 0.504317 -0.150632 -0.358505 0.931881 0.055417 +-0.404005 0.524317 -0.110632 -0.358505 0.931881 0.055417 +-0.144005 0.504317 0.189368 -0.0755146 0.00101157 0.997144 +-0.124005 0.504317 -0.0306319 0.929051 0.35035 0.11882 +-0.404005 0.484317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.264005 0.524317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.204005 0.484317 0.149368 0.0755146 -0.00101157 -0.997144 +0.135995 0.544317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.484317 0.189368 -0.0355514 0.00170225 0.999366 +0.215995 0.524317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.504317 0.189368 -0.0355514 0.00170225 0.999366 +0.415995 0.524317 0.0293681 0.677693 -0.370069 0.635422 +0.155995 0.544317 -0.170632 -0.784572 0.371824 -0.496159 +-0.324005 0.544317 0.0293681 -0.358505 0.931881 0.055417 +-0.444005 0.464317 -0.210632 -0.929051 -0.35035 -0.11882 +-0.404005 0.344317 -0.270632 -0.929051 -0.35035 -0.11882 +-0.384005 -0.0956835 -0.0506319 -0.649153 -0.760138 -0.0281194 +-0.364005 -0.375683 -0.130632 -0.948332 0.300695 -0.101232 +-0.344005 0.0243165 -0.250632 -0.735011 -0.677998 0.00878997 +-0.344005 0.244317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.344005 0.324317 0.129368 0.0755146 -0.00101157 -0.997144 +-0.324005 0.224317 -0.250632 0.358505 -0.931881 -0.055417 +-0.324005 0.524317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.324005 0.524317 0.169368 -0.0755146 0.00101157 0.997144 +-0.304005 -0.315683 -0.190632 -0.393147 0.733901 -0.553918 +-0.284005 -0.135683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.284005 -0.0756835 -0.290632 0.0384737 0.00410846 -0.999251 +-0.284005 -0.0356835 0.0493681 0.649153 0.760138 0.0281194 +-0.264005 -0.195683 0.0493681 -0.248982 -0.264721 0.645104 +-0.264005 0.564317 -0.0706319 -0.358505 0.931881 0.055417 +-0.244005 -0.115683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.224005 -0.235683 0.00936812 -0.649153 -0.760138 -0.0281194 +-0.224005 0.384317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.224005 0.384317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.224005 0.644317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.204005 0.404317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.184005 0.264317 -0.170632 -0.678055 0.734933 -0.0107393 +-0.184005 0.384317 0.189368 -0.0755146 0.00101157 0.997144 +-0.164005 0.184317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.164005 0.184317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.164005 0.344317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.164005 0.604317 0.0493681 0.929051 0.35035 0.11882 +-0.164005 0.604317 0.189368 -0.0755146 0.00101157 0.997144 +-0.144005 -0.155683 -0.0506319 0.649153 0.760138 0.0281194 +-0.124005 0.244317 -0.0106319 0.735011 0.677998 -0.00878997 +-0.124005 0.464317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.124005 0.484317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.124005 0.524317 -0.170632 0.929051 0.35035 0.11882 +-0.104005 -0.175683 -0.130632 0.649153 0.760138 0.0281194 +-0.0640047 -0.315683 -0.150632 -0.00848034 0.695456 -0.718381 +-0.0640047 0.424317 -0.230632 0.929051 0.35035 0.11882 +-0.0240047 0.264317 -0.0706319 -0.0322743 -0.942965 0.331287 +-0.00400471 -0.0156835 -0.150632 0.0087194 -0.580887 -0.813937 +0.0359953 0.0243165 -0.150632 0.728782 0.274297 -0.627406 +0.0359953 0.304317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0359953 0.424317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0559953 0.344317 -0.210632 -0.0281762 -0.247975 -0.968345 +0.0759953 0.324317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.404317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0759953 0.484317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0759953 0.604317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.324317 -0.0106319 0.000659569 -0.402557 0.915388 +0.0959953 0.364317 0.189368 -0.0355514 0.00170225 0.999366 +0.0959953 0.644317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.664317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 -0.475683 -0.270632 -0.136967 0.0586659 -0.988837 +0.115995 0.284317 -0.0306319 -0.64802 0.0303501 0.761003 +0.115995 0.364317 -0.0106319 0.0172579 -0.033911 0.999275 +0.115995 0.604317 0.189368 -0.0355514 0.00170225 0.999366 +0.135995 -0.295683 -0.0906319 -0.0112566 0.910631 0.412961 +0.135995 0.244317 -0.0506319 -0.301081 -0.928023 -0.219369 +0.135995 0.564317 0.189368 -0.0355514 0.00170225 0.999366 +0.135995 0.684317 0.149368 0.0355514 -0.00170225 -0.999366 +0.155995 0.284317 -0.210632 -0.301081 -0.928023 -0.219369 +0.175995 0.264317 -0.130632 -0.301081 -0.928023 -0.219369 +0.175995 0.564317 0.189368 -0.0355514 0.00170225 0.999366 +0.175995 0.604317 0.00936812 -0.844433 0.152589 0.513456 +0.215995 -0.555683 0.0493681 0.136967 -0.0586659 0.988837 +0.215995 -0.355683 0.0493681 0.136967 -0.0586659 0.988837 +0.215995 0.604317 -0.0506319 0.301081 0.928023 0.219369 +0.235995 -0.375683 -0.290632 -0.136967 0.0586659 -0.988837 +0.235995 0.404317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.584317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.444317 0.0493681 -0.118389 -0.191887 0.974249 +0.255995 0.444317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.584317 0.189368 -0.0355514 0.00170225 0.999366 +0.295995 -0.455683 -0.290632 -0.136967 0.0586659 -0.988837 +0.295995 0.444317 0.169368 0.676168 -0.000246759 -0.311492 +0.315995 0.344317 -0.250632 0.565913 0.0112678 -0.824375 +0.335995 0.544317 0.0493681 0.301081 0.928023 0.219369 +0.355995 -0.455683 -0.270632 0.470789 -0.874441 -0.11709 +0.355995 -0.315683 -0.250632 0.871549 0.481571 -0.0921502 +0.415995 -0.475683 0.0293681 0.136967 -0.0586659 0.988837 +0.435995 -0.435683 -0.250632 0.846871 0.39807 -0.093686 +-0.384005 0.0443165 -0.130632 -0.735011 -0.677998 0.00878997 +-0.284005 0.164317 -0.190632 -0.678055 0.734933 -0.0107393 +-0.244005 0.0643165 -0.190632 0.678055 -0.734933 0.0107393 +-0.144005 0.584317 -0.130632 0.929051 0.35035 0.11882 +-0.124005 0.184317 -0.190632 0.678055 -0.734933 0.0107393 +0.0759953 -0.435683 -0.150632 -0.871549 -0.481571 0.0921502 +0.115995 -0.495683 -0.0906319 -0.871549 -0.481571 0.0921502 +0.215995 -0.555683 -0.0906319 0.470789 -0.874441 -0.11709 +0.235995 -0.255683 -0.190632 -0.470789 0.874441 0.11709 +0.315995 -0.215683 -0.190632 0.871549 0.481571 -0.0921502 +0.355995 0.244317 -0.150632 0.953599 -0.293056 -0.0690506 +0.435995 0.504317 -0.0906319 0.953555 -0.290793 -0.0785641 +-0.444005 0.504317 0.00936812 -0.358505 0.931881 0.055417 +-0.424005 0.424317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.384005 -0.0556835 -0.0306319 -0.759684 0.649749 -0.0265783 +-0.384005 0.0643165 0.00936812 -0.735011 -0.677998 0.00878997 +-0.364005 -0.0956835 -0.290632 0.0384737 0.00410846 -0.999251 +-0.364005 -0.0556835 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.364005 -0.0356835 -0.110632 -0.759684 0.649749 -0.0265783 +-0.364005 0.104317 -0.0306319 -0.678055 0.734933 -0.0107393 +-0.364005 0.104317 0.0493681 -0.678055 0.734933 -0.0107393 +-0.364005 0.544317 -0.130632 -0.358505 0.931881 0.055417 +-0.344005 -0.435683 -0.0306319 -0.704856 -0.192149 0.68283 +-0.344005 -0.0956835 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.344005 -0.0556835 -0.290632 0.0384737 0.00410846 -0.999251 +-0.344005 -0.0156835 -0.290632 -0.759684 0.649749 -0.0265783 +-0.344005 -0.0156835 -0.0306319 -0.759684 0.649749 -0.0265783 +-0.344005 0.304317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.344005 0.424317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.344005 0.544317 -0.0506319 -0.358505 0.931881 0.055417 +-0.324005 -0.495683 -0.0506319 -0.546488 -0.652798 0.5246 +-0.324005 0.124317 -0.170632 -0.678055 0.734933 -0.0107393 +-0.324005 0.124317 0.00936812 -0.678055 0.734933 -0.0107393 +-0.324005 0.224317 -0.170632 0.358505 -0.931881 -0.055417 +-0.324005 0.464317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.324005 0.604317 0.169368 -0.0755146 0.00101157 0.997144 +-0.304005 -0.435683 -0.230632 -0.406649 -0.19781 -0.891912 +-0.304005 -0.155683 -0.150632 -0.649153 -0.760138 -0.0281194 +-0.304005 -0.0156835 -0.0706319 0.649153 0.760138 0.0281194 +-0.304005 0.0243165 -0.210632 0.678055 -0.734933 0.0107393 +-0.284005 0.104317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.284005 0.244317 -0.230632 0.358505 -0.931881 -0.055417 +-0.284005 0.424317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.264005 -0.295683 -0.150632 -0.0916097 0.959788 -0.265359 +-0.264005 0.284317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.264005 0.504317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.244005 -0.0756835 0.00936812 0.649153 0.760138 0.0281194 +-0.244005 0.104317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.244005 0.244317 -0.0306319 0.358505 -0.931881 -0.055417 +-0.244005 0.324317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.244005 0.544317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.244005 0.564317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.224005 -0.195683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.224005 0.144317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.224005 0.584317 -0.0306319 -0.358505 0.931881 0.055417 +-0.204005 0.324317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.424317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.204005 0.504317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.184005 -0.115683 -0.170632 0.649153 0.760138 0.0281194 +-0.184005 0.664317 0.189368 -0.0755146 0.00101157 0.997144 +-0.164005 -0.395683 -0.0506319 0.786781 0.134311 0.602442 +-0.164005 0.424317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.144005 -0.435683 -0.170632 0.884564 -0.201298 -0.420745 +-0.144005 -0.275683 -0.0506319 0.759684 -0.649749 0.0265783 +-0.144005 0.384317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.144005 0.624317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.124005 0.664317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.104005 0.304317 -0.0306319 -0.0143757 -0.685491 0.727912 +-0.104005 0.664317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 -0.395683 -0.0706319 0.00871227 -0.714128 0.69987 +-0.0840047 0.444317 -0.190632 0.929051 0.35035 0.11882 +-0.0640047 0.344317 -0.0106319 0.00553234 -0.300607 0.953729 +0.0359953 -0.0156835 -0.110632 0.846863 -0.520313 0.109991 +0.0959953 -0.415683 0.0693681 -0.871549 -0.481571 0.0921502 +0.0959953 -0.355683 0.00936812 -0.470789 0.874441 0.11709 +0.175995 -0.595683 -0.0506319 -0.871549 -0.481571 0.0921502 +0.175995 -0.415683 0.0493681 0.136967 -0.0586659 0.988837 +0.175995 -0.315683 -0.270632 -0.136967 0.0586659 -0.988837 +0.195995 -0.295683 -0.110632 -0.470789 0.874441 0.11709 +0.215995 -0.455683 -0.290632 -0.136967 0.0586659 -0.988837 +0.215995 -0.295683 -0.270632 -0.136967 0.0586659 -0.988837 +0.275995 -0.235683 -0.210632 -0.470789 0.874441 0.11709 +0.335995 -0.375683 -0.290632 -0.136967 0.0586659 -0.988837 +0.395995 -0.455683 -0.230632 0.470789 -0.874441 -0.11709 +0.415995 0.544317 -0.0506319 0.301081 0.928023 0.219369 +0.455995 -0.455683 -0.0306319 0.470789 -0.874441 -0.11709 +-0.404005 0.304317 -0.130632 -0.929051 -0.35035 -0.11882 +-0.384005 -0.0956835 -0.210632 -0.649153 -0.760138 -0.0281194 +-0.384005 0.0443165 -0.210632 -0.735011 -0.677998 0.00878997 +-0.364005 0.0643165 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.244005 -0.0956835 -0.290632 0.0384737 0.00410846 -0.999251 +0.0359953 -0.355683 -0.170632 0.00146822 -0.110175 -0.993908 +0.0359953 0.284317 -0.0306319 -0.0174443 -0.736884 0.675768 +0.0359953 0.344317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0559953 0.564317 0.189368 -0.0355514 0.00170225 0.999366 +0.135995 0.304317 -0.250632 -0.301081 -0.928023 -0.219369 +0.155995 -0.575683 -0.290632 -0.136967 0.0586659 -0.988837 +0.155995 0.604317 0.149368 0.0355514 -0.00170225 -0.999366 +0.175995 -0.495683 0.0493681 0.136967 -0.0586659 0.988837 +0.175995 0.684317 0.189368 -0.0205205 0.428902 0.570973 +0.195995 -0.375683 -0.270632 -0.136967 0.0586659 -0.988837 +0.195995 0.644317 0.149368 0.0355514 -0.00170225 -0.999366 +0.275995 -0.415683 -0.290632 -0.136967 0.0586659 -0.988837 +-0.364005 0.544317 -0.250632 -0.21042 0.656068 -0.289197 +-0.124005 0.504317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0840047 0.524317 0.149368 0.0755146 -0.00101157 -0.997144 +0.0359953 0.524317 0.189368 -0.0355514 0.00170225 0.999366 +0.175995 0.524317 0.00936812 -0.748146 0.0872398 0.657758 +0.175995 0.524317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.484317 0.0493681 -0.420235 -0.0773766 0.904102 +-0.464005 0.464317 -0.0906319 -0.929051 -0.35035 -0.11882 +-0.464005 0.484317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.444005 0.404317 -0.0306319 -0.929051 -0.35035 -0.11882 +-0.444005 0.444317 -0.150632 -0.929051 -0.35035 -0.11882 +-0.404005 -0.0756835 0.0293681 -0.759684 0.649749 -0.0265783 +-0.384005 0.0643165 -0.0706319 -0.735011 -0.677998 0.00878997 +-0.384005 0.0843165 -0.150632 -0.678055 0.734933 -0.0107393 +-0.384005 0.264317 -0.0506319 -0.929051 -0.35035 -0.11882 +-0.384005 0.444317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.364005 0.264317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.344005 0.204317 -0.0506319 0.358505 -0.931881 -0.055417 +-0.324005 0.00431655 -0.170632 -0.189921 -0.699961 0.00954193 +-0.284005 -0.0356835 -0.250632 0.649153 0.760138 0.0281194 +-0.284005 -0.0356835 -0.110632 0.649153 0.760138 0.0281194 +-0.284005 0.164317 -0.0306319 -0.678055 0.734933 -0.0107393 +-0.284005 0.244317 -0.110632 0.358505 -0.931881 -0.055417 +-0.284005 0.344317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.284005 0.424317 0.169368 -0.0755146 0.00101157 0.997144 +-0.264005 -0.475683 -0.0106319 -0.086876 -0.512057 0.854547 +-0.264005 0.184317 -0.250632 -0.678055 0.734933 -0.0107393 +-0.264005 0.624317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.244005 -0.215683 -0.0306319 -0.649153 -0.760138 -0.0281194 +-0.244005 0.0643165 -0.110632 0.678055 -0.734933 0.0107393 +-0.244005 0.484317 0.189368 -0.0755146 0.00101157 0.997144 +-0.224005 -0.0756835 -0.230632 0.649153 0.760138 0.0281194 +-0.224005 0.0843165 -0.0306319 0.678055 -0.734933 0.0107393 +-0.204005 -0.0956835 -0.0306319 0.649153 0.760138 0.0281194 +-0.204005 0.104317 -0.0906319 0.678055 -0.734933 0.0107393 +-0.204005 0.284317 -0.150632 0.358505 -0.931881 -0.055417 +-0.204005 0.284317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.184005 -0.495683 -0.150632 0.605958 -0.744713 -0.279673 +-0.184005 -0.375683 -0.210632 0.574315 0.292913 -0.764437 +-0.184005 0.124317 -0.0306319 0.678055 -0.734933 0.0107393 +-0.164005 -0.335683 -0.0906319 -0.999924 -0.0123093 -0.000112619 +-0.164005 -0.215683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.164005 -0.175683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.164005 0.144317 -0.210632 0.678055 -0.734933 0.0107393 +-0.164005 0.284317 -0.210632 -0.678055 0.734933 -0.0107393 +-0.144005 -0.195683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.144005 0.164317 0.0293681 0.678055 -0.734933 0.0107393 +-0.144005 0.284317 0.00936812 0.358505 -0.931881 -0.055417 +-0.144005 0.324317 0.169368 -0.00189103 -0.999998 0.00087126 +-0.144005 0.544317 0.0293681 0.929051 0.35035 0.11882 +-0.124005 -0.295683 -0.0906319 -0.0113605 0.919249 0.393417 +-0.124005 0.184317 -0.0306319 0.678055 -0.734933 0.0107393 +-0.124005 0.244317 -0.270632 0.735011 0.677998 -0.00878997 +-0.124005 0.284317 -0.0706319 -0.031166 -0.930809 0.364126 +-0.104005 0.204317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.104005 0.244317 -0.0906319 0.735011 0.677998 -0.00878997 +-0.0840047 -0.215683 -0.0306319 0.759684 -0.649749 0.0265783 +-0.0840047 0.224317 0.0293681 0.735011 0.677998 -0.00878997 +-0.0840047 0.344317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0840047 0.424317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0640047 0.444317 -0.0306319 0.0410474 0.665762 0.745004 +-0.0440047 -0.0156835 -0.0906319 -0.745853 -0.466864 0.475123 +-0.0240047 0.0643165 -0.110632 -0.333716 0.938448 0.0891533 +-0.0240047 0.264317 -0.150632 -0.0447101 -0.932852 -0.357466 +-0.00400471 -0.375683 -0.0706319 0.00613301 -0.506093 0.862369 +-0.00400471 0.424317 -0.0106319 0.0354251 0.463745 0.88524 +0.0159953 -0.295683 -0.150632 -0.0101658 0.830884 -0.556263 +0.0759953 -0.315683 -0.170632 -0.00617693 0.509642 -0.860311 +0.0759953 0.424317 -0.0106319 0.0359458 0.480674 0.876142 +0.0959953 0.484317 -0.110632 0.0408014 0.999162 0.00297019 +0.115995 -0.475683 -0.0306319 -0.871549 -0.481571 0.0921502 +0.115995 0.284317 -0.170632 -0.0440032 -0.814288 -0.578763 +0.115995 0.364317 -0.230632 -0.686249 0.370586 -0.625865 +0.135995 0.424317 -0.0306319 0.0387381 0.576633 0.816054 +0.135995 0.544317 -0.0706319 -0.95202 0.279289 0.125123 +0.155995 -0.515683 0.0293681 -0.871549 -0.481571 0.0921502 +0.155995 -0.315683 -0.0306319 -0.470789 0.874441 0.11709 +0.155995 0.444317 -0.230632 -0.578766 0.36066 -0.731394 +0.175995 -0.555683 -0.0306319 -0.871549 -0.481571 0.0921502 +0.175995 0.144317 -0.0906319 -0.756578 0.445668 0.478373 +0.195995 -0.135683 -0.150632 -0.722634 -0.0157421 -0.691051 +0.195995 0.244317 -0.0906319 -0.301081 -0.928023 -0.219369 +0.195995 0.344317 0.00936812 -0.298473 -0.126774 0.945955 +0.215995 0.224317 -0.0306319 -0.301081 -0.928023 -0.219369 +0.235995 -0.555683 -0.170632 0.470789 -0.874441 -0.11709 +0.235995 0.124317 -0.170632 0.245242 -0.154329 -0.957073 +0.255995 -0.255683 -0.0706319 -0.470789 0.874441 0.11709 +0.275995 -0.535683 0.0293681 0.136967 -0.0586659 0.988837 +0.275995 -0.515683 -0.250632 0.470789 -0.874441 -0.11709 +0.275995 0.184317 -0.150632 0.447434 -0.27057 -0.852259 +0.275995 0.564317 0.169368 0.0355514 -0.00170225 -0.999366 +0.295995 0.344317 0.169368 0.570639 -0.000486523 -0.424805 +0.315995 -0.395683 0.0493681 0.136967 -0.0586659 0.988837 +0.315995 0.224317 -0.150632 -0.301081 -0.928023 -0.219369 +0.315995 0.424317 -0.250632 0.405964 0.0834167 -0.910066 +0.315995 0.464317 -0.250632 0.32456 0.116583 -0.938647 +0.335995 -0.235683 -0.0106319 0.562614 0.571989 -0.0439943 +0.335995 0.264317 -0.230632 0.805046 -0.124062 -0.58008 +0.335995 0.304317 -0.0306319 0.678302 -0.370107 0.634747 +0.355995 -0.295683 -0.170632 0.871549 0.481571 -0.0921502 +0.355995 0.284317 -0.210632 0.860708 -0.165433 -0.481459 +0.355995 0.424317 0.00936812 0.570608 -0.359639 0.738272 +0.375995 -0.475683 -0.0506319 0.470789 -0.874441 -0.11709 +0.375995 -0.315683 -0.110632 0.871549 0.481571 -0.0921502 +0.375995 0.344317 -0.0906319 0.922303 -0.341837 0.180266 +0.395995 0.404317 -0.0306319 0.815763 -0.369784 0.444717 +0.435995 -0.435683 0.0293681 0.136967 -0.0586659 0.988837 +-0.464005 0.464317 -0.130632 -0.929051 -0.35035 -0.11882 +-0.424005 0.364317 -0.150632 -0.929051 -0.35035 -0.11882 +-0.364005 0.104317 -0.130632 -0.678055 0.734933 -0.0107393 +-0.344005 -0.335683 -0.130632 -0.767007 0.633818 -0.0998719 +-0.344005 0.544317 -0.170632 -0.358505 0.931881 0.055417 +-0.324005 -0.515683 -0.130632 -0.558394 -0.824325 -0.0931911 +-0.304005 0.224317 -0.130632 0.358505 -0.931881 -0.055417 +-0.284005 -0.0356835 -0.190632 0.649153 0.760138 0.0281194 +-0.284005 0.564317 -0.190632 -0.358505 0.931881 0.055417 +-0.204005 -0.315683 -0.170632 0.411942 0.800214 -0.435845 +-0.204005 0.244317 -0.190632 -0.678055 0.734933 -0.0107393 +-0.184005 -0.255683 -0.130632 -0.649153 -0.760138 -0.0281194 +-0.164005 0.604317 -0.110632 -0.358505 0.931881 0.055417 +-0.144005 0.164317 -0.130632 0.678055 -0.734933 0.0107393 +-0.0840047 -0.195683 -0.110632 0.649153 0.760138 0.0281194 +-0.0240047 0.304317 -0.190632 -0.0405108 -0.643915 -0.763995 +-0.00400471 -0.415683 -0.110632 0.0122818 -0.998221 0.0583398 +0.0359953 0.444317 -0.190632 0.0136126 0.672346 -0.740087 +0.0759953 0.304317 -0.210632 -0.301081 -0.928023 -0.219369 +0.155995 -0.0156835 -0.130632 -0.502517 -0.864502 0.0106364 +0.215995 -0.0956835 -0.130632 -0.361627 0.873338 -0.326353 +0.235995 0.604317 -0.190632 -0.464739 0.34367 -0.816022 +0.355995 0.264317 -0.110632 0.926332 -0.339242 0.163761 +-0.424005 0.404317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.344005 -0.135683 -0.0706319 -0.649153 -0.760138 -0.0281194 +-0.344005 -0.115683 -0.270632 -0.649153 -0.760138 -0.0281194 +-0.344005 0.104317 -0.230632 -0.678055 0.734933 -0.0107393 +-0.344005 0.464317 0.129368 0.0755146 -0.00101157 -0.997144 +-0.324005 -0.135683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.324005 0.144317 0.0493681 -0.678055 0.734933 -0.0107393 +-0.324005 0.664317 0.149368 0.00189103 0.999998 -0.00087126 +-0.304005 0.0243165 -0.0906319 0.678055 -0.734933 0.0107393 +-0.304005 0.384317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.304005 0.584317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.284005 -0.175683 -0.0906319 -0.649153 -0.760138 -0.0281194 +-0.284005 -0.175683 -0.0306319 -0.649153 -0.760138 -0.0281194 +-0.244005 -0.475683 -0.230632 0.0694935 -0.500123 -0.863161 +-0.244005 0.564317 0.0293681 -0.358505 0.931881 0.055417 +-0.224005 -0.515683 -0.0706319 0.243884 -0.881247 0.404876 +-0.224005 0.224317 -0.170632 -0.678055 0.734933 -0.0107393 +-0.184005 0.124317 -0.150632 0.678055 -0.734933 0.0107393 +-0.184005 0.124317 0.0293681 0.678055 -0.734933 0.0107393 +-0.164005 -0.275683 -0.230632 -0.649153 -0.760138 -0.0281194 +-0.164005 -0.135683 -0.230632 0.649153 0.760138 0.0281194 +-0.164005 -0.135683 -0.0306319 0.649153 0.760138 0.0281194 +-0.164005 0.264317 -0.270632 -0.678055 0.734933 -0.0107393 +-0.164005 0.584317 -0.0306319 0.929051 0.35035 0.11882 +-0.144005 -0.155683 0.0493681 0.649153 0.760138 0.0281194 +-0.124005 -0.175683 -0.170632 0.649153 0.760138 0.0281194 +-0.124005 -0.175683 -0.0306319 0.649153 0.760138 0.0281194 +-0.104005 -0.235683 -0.210632 0.759684 -0.649749 0.0265783 +-0.104005 0.244317 0.0493681 0.735011 0.677998 -0.00878997 +-0.0440047 -0.375683 -0.170632 0.00514874 -0.409903 -0.912076 +-0.0440047 0.464317 -0.0506319 0.0443508 0.840699 0.53966 +0.215995 -0.295683 -0.0706319 -0.470789 0.874441 0.11709 +0.235995 -0.175683 -0.0906319 0.0781359 -0.846763 0.526201 +0.255995 -0.275683 0.00936812 -0.470789 0.874441 0.11709 +0.255995 -0.175683 -0.150632 0.405803 -0.696539 -0.591741 +0.415995 -0.455683 -0.0706319 0.470789 -0.874441 -0.11709 +-0.364005 -0.115683 0.00936812 -0.649153 -0.760138 -0.0281194 +-0.284005 -0.0356835 -0.0506319 0.649153 0.760138 0.0281194 +-0.264005 -0.395683 0.00936812 -0.0848928 0.117313 0.98946 +-0.204005 -0.255683 -0.0706319 -0.649153 -0.760138 -0.0281194 +-0.204005 0.104317 -0.270632 0.678055 -0.734933 0.0107393 +-0.204005 0.104317 -0.0506319 0.678055 -0.734933 0.0107393 +-0.164005 0.144317 0.00936812 0.678055 -0.734933 0.0107393 +-0.144005 -0.275683 0.00936812 0.759684 -0.649749 0.0265783 +-0.144005 -0.155683 -0.250632 0.649153 0.760138 0.0281194 +-0.124005 -0.335683 -0.0506319 -0.0030552 0.239301 0.970929 +-0.124005 0.184317 0.00936812 0.678055 -0.734933 0.0107393 +-0.104005 -0.195683 -0.0506319 0.649153 0.760138 0.0281194 +-0.0840047 -0.215683 0.00936812 0.759684 -0.649749 0.0265783 +-0.0440047 0.284317 -0.0506319 -0.0241609 -0.840235 0.541644 +-0.0240047 0.384317 0.00936812 0.0222946 0.091294 0.995571 +0.0759953 -0.375683 -0.250632 -0.136967 0.0586659 -0.988837 +0.115995 -0.315683 -0.0706319 -0.00746261 0.598885 0.800706 +0.135995 -0.535683 -0.250632 -0.871549 -0.481571 0.0921502 +0.135995 -0.375683 0.0693681 0.136967 -0.0586659 0.988837 +0.155995 0.284317 -0.0106319 -0.423146 -0.0761358 0.902847 +0.155995 0.464317 -0.0106319 -0.766295 0.0985383 0.634871 +0.155995 0.604317 -0.0706319 -0.953101 0.300282 0.0377967 +0.175995 -0.555683 0.00936812 -0.871549 -0.481571 0.0921502 +0.175995 -0.315683 0.0493681 -0.470789 0.874441 0.11709 +0.175995 0.384317 -0.270632 -0.331065 0.317458 -0.8886 +0.195995 0.424317 -0.250632 -0.31868 0.314735 -0.894079 +0.215995 -0.575683 0.00936812 0.470789 -0.874441 -0.11709 +0.275995 0.244317 -0.0106319 0.401337 -0.331993 0.853638 +0.295995 -0.515683 -0.0706319 0.470789 -0.874441 -0.11709 +0.315995 -0.255683 -0.250632 0.871549 0.481571 -0.0921502 +0.315995 0.324317 0.00936812 0.464249 -0.343586 0.816338 +0.315995 0.564317 -0.0106319 0.301081 0.928023 0.219369 +0.355995 0.284317 -0.0506319 0.790337 -0.37156 0.487127 +0.355995 0.484317 0.0493681 0.403046 -0.332326 0.852703 +0.375995 0.464317 0.00936812 0.630829 -0.366342 0.683977 +-0.424005 0.404317 -0.190632 -0.929051 -0.35035 -0.11882 +-0.364005 0.244317 -0.150632 -0.929051 -0.35035 -0.11882 +-0.344005 -0.0156835 -0.130632 -0.759684 0.649749 -0.0265783 +-0.324005 -0.135683 -0.210632 -0.649153 -0.760138 -0.0281194 +-0.324005 -0.135683 -0.170632 -0.649153 -0.760138 -0.0281194 +-0.304005 -0.0156835 -0.130632 0.649153 0.760138 0.0281194 +-0.304005 0.144317 -0.130632 -0.678055 0.734933 -0.0107393 +-0.304005 0.244317 -0.190632 0.358505 -0.931881 -0.055417 +-0.304005 0.564317 -0.110632 -0.358505 0.931881 0.055417 +-0.284005 -0.175683 -0.130632 -0.649153 -0.760138 -0.0281194 +-0.164005 -0.275683 -0.190632 -0.649153 -0.760138 -0.0281194 +-0.164005 -0.135683 -0.190632 0.649153 0.760138 0.0281194 +-0.164005 0.264317 -0.130632 -0.678055 0.734933 -0.0107393 +-0.104005 0.224317 -0.150632 0.735011 0.677998 -0.00878997 +0.335995 -0.235683 -0.110632 0.871549 0.481571 -0.0921502 +-0.404005 -0.0756835 -0.0906319 -0.759684 0.649749 -0.0265783 +-0.364005 -0.0356835 -0.0506319 -0.759684 0.649749 -0.0265783 +-0.344005 -0.335683 -0.0706319 -0.713762 0.589819 0.377699 +-0.324005 -0.135683 -0.250632 -0.649153 -0.760138 -0.0281194 +-0.304005 -0.335683 -0.0306319 -0.402832 0.593991 0.696348 +-0.304005 0.144317 -0.250632 -0.678055 0.734933 -0.0107393 +-0.304005 0.144317 -0.0106319 -0.678055 0.734933 -0.0107393 +-0.264005 -0.0556835 0.0293681 0.649153 0.760138 0.0281194 +-0.264005 0.184317 -0.170632 -0.678055 0.734933 -0.0107393 +-0.244005 -0.215683 0.0293681 -0.649153 -0.760138 -0.0281194 +-0.244005 -0.0756835 -0.110632 0.649153 0.760138 0.0281194 +-0.244005 -0.0756835 -0.0706319 0.649153 0.760138 0.0281194 +-0.224005 -0.215683 -0.270632 -0.649153 -0.760138 -0.0281194 +-0.224005 0.264317 -0.0106319 0.358505 -0.931881 -0.055417 +-0.184005 -0.275683 0.0493681 -0.649153 -0.760138 -0.0281194 +-0.164005 0.144317 -0.0506319 0.678055 -0.734933 0.0107393 +-0.104005 0.464317 -0.0106319 0.929051 0.35035 0.11882 +-0.0640047 0.484317 -0.0706319 0.0445793 0.945153 0.323564 +0.0559953 -0.295683 -0.150632 -0.0101358 0.828485 -0.559829 +0.175995 0.484317 -0.210632 -0.586554 0.361602 -0.724691 +0.195995 -0.0956835 -0.0906319 -0.613113 0.663441 0.42888 +0.195995 0.544317 0.0293681 -0.666341 0.040184 0.744548 +0.215995 0.204317 -0.110632 -0.856357 0.499397 0.131297 +0.235995 0.204317 -0.170632 -0.347187 0.190515 -0.918201 +0.235995 0.304317 0.00936812 0.0410701 -0.24245 0.969294 +0.315995 -0.495683 -0.150632 0.470789 -0.874441 -0.11709 +0.315995 0.244317 -0.0506319 0.696622 -0.371137 0.613963 +0.355995 -0.275683 0.00936812 0.871549 0.481571 -0.0921502 +0.355995 0.324317 -0.210632 0.821013 -0.135255 -0.554643 +0.415995 0.544317 -0.170632 0.767426 -0.0992546 -0.633392 +-0.264005 -0.0556835 -0.130632 0.649153 0.760138 0.0281194 +-0.0840047 0.324317 -0.210632 0.358505 -0.931881 -0.055417 +0.0559953 0.424317 -0.210632 0.00296829 0.475255 -0.879834 +0.155995 -0.575683 -0.190632 -0.871549 -0.481571 0.0921502 +0.195995 -0.575683 -0.150632 0.470789 -0.874441 -0.11709 +0.195995 -0.575683 -0.110632 0.470789 -0.874441 -0.11709 +0.295995 0.164317 -0.110632 0.859709 -0.498353 0.111948 +-0.264005 -0.0556835 -0.0106319 0.649153 0.760138 0.0281194 +0.0359953 -0.375683 -0.0706319 0.00622199 -0.513282 0.858108 +0.195995 -0.335683 0.0693681 0.136967 -0.0586659 0.988837 +0.235995 0.184317 -0.0706319 -0.240662 0.151687 0.958646 +-0.244005 0.0643165 -0.270632 0.678055 -0.734933 0.0107393 +-0.224005 -0.0756835 -0.270632 0.649153 0.760138 0.0281194 +-0.224005 0.0843165 0.0293681 0.678055 -0.734933 0.0107393 +-0.124005 0.184317 -0.110632 0.678055 -0.734933 0.0107393 +-0.224005 0.0843165 -0.170632 0.678055 -0.734933 0.0107393 +-0.404005 0.504317 -0.0306319 -0.358505 0.931881 0.055417 +-0.244005 0.524317 0.189368 -0.0755146 0.00101157 0.997144 +0.135995 0.504317 -0.0506319 -0.92263 0.225343 0.313002 +0.275995 0.524317 -0.230632 -0.0239663 0.237335 -0.971132 +0.275995 0.524317 0.169368 0.0355514 -0.00170225 -0.999366 +0.415995 -0.415683 -0.270632 0.871549 0.481571 -0.0921502 +0.175995 0.524317 -0.210632 -0.603387 0.363532 -0.709754 +0.415995 0.504317 -0.170632 0.816979 -0.132384 -0.561252 +-0.424005 0.524317 -0.190632 -0.358505 0.931881 0.055417 +0.195995 0.504317 0.0293681 -0.594505 0.00280709 0.804073 +-0.484005 0.484317 -0.0306319 -0.929051 -0.35035 -0.11882 +-0.464005 0.464317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.464005 0.504317 -0.0906319 -0.358505 0.931881 0.055417 +-0.444005 0.384317 -0.0506319 -0.929051 -0.35035 -0.11882 +-0.444005 0.404317 -0.110632 -0.929051 -0.35035 -0.11882 +-0.444005 0.424317 -0.170632 -0.929051 -0.35035 -0.11882 +-0.444005 0.424317 -0.0906319 -0.929051 -0.35035 -0.11882 +-0.444005 0.444317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.444005 0.504317 -0.170632 -0.358505 0.931881 0.055417 +-0.424005 0.364317 -0.110632 -0.929051 -0.35035 -0.11882 +-0.424005 0.364317 -0.0706319 -0.929051 -0.35035 -0.11882 +-0.424005 0.504317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.404005 -0.0756835 -0.0506319 -0.759684 0.649749 -0.0265783 +-0.404005 -0.0756835 -0.0106319 -0.759684 0.649749 -0.0265783 +-0.404005 0.0643165 -0.250632 -0.735011 -0.677998 0.00878997 +-0.404005 0.284317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.404005 0.304317 -0.0706319 -0.929051 -0.35035 -0.11882 +-0.404005 0.344317 -0.210632 -0.929051 -0.35035 -0.11882 +-0.404005 0.364317 -0.230632 -0.929051 -0.35035 -0.11882 +-0.404005 0.364317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.384005 -0.0956835 -0.0906319 -0.649153 -0.760138 -0.0281194 +-0.384005 -0.0556835 -0.110632 -0.759684 0.649749 -0.0265783 +-0.384005 -0.0556835 0.00936812 -0.759684 0.649749 -0.0265783 +-0.384005 0.0443165 -0.290632 -0.735011 -0.677998 0.00878997 +-0.384005 0.244317 -0.0306319 -0.929051 -0.35035 -0.11882 +-0.384005 0.324317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.384005 0.364317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.384005 0.484317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.384005 0.524317 -0.210632 -0.358505 0.931881 0.055417 +-0.384005 0.544317 -0.230632 -0.358505 0.931881 0.055417 +-0.364005 -0.435683 -0.0906319 -0.947336 -0.211718 0.240272 +-0.364005 -0.115683 -0.0506319 -0.649153 -0.760138 -0.0281194 +-0.364005 0.0243165 -0.110632 -0.735011 -0.677998 0.00878997 +-0.364005 0.0443165 -0.230632 -0.735011 -0.677998 0.00878997 +-0.364005 0.0443165 -0.0306319 -0.735011 -0.677998 0.00878997 +-0.364005 0.0443165 0.0293681 -0.735011 -0.677998 0.00878997 +-0.364005 0.0843165 -0.0906319 -0.678055 0.734933 -0.0107393 +-0.364005 0.0843165 0.0293681 -0.678055 0.734933 -0.0107393 +-0.364005 0.344317 0.149368 -0.997143 0.00181983 -0.0755164 +-0.364005 0.364317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.364005 0.404317 0.149368 -0.997143 0.00181983 -0.0755164 +-0.364005 0.504317 0.169368 -0.997143 0.00181983 -0.0755164 +-0.364005 0.524317 -0.0306319 -0.358505 0.931881 0.055417 +-0.364005 0.564317 0.149368 -0.997143 0.00181983 -0.0755164 +-0.364005 0.624317 0.149368 -0.997143 0.00181983 -0.0755164 +-0.344005 -0.475683 -0.0506319 -0.695357 -0.495228 0.520794 +-0.344005 -0.375683 -0.0506319 -0.764601 0.295723 0.572655 +-0.344005 -0.0156835 -0.170632 -0.759684 0.649749 -0.0265783 +-0.344005 0.00431655 -0.230632 -0.735011 -0.677998 0.00878997 +-0.344005 0.00431655 -0.0906319 -0.735011 -0.677998 0.00878997 +-0.344005 0.00431655 0.0293681 -0.735011 -0.677998 0.00878997 +-0.344005 0.0243165 0.0493681 -0.735011 -0.677998 0.00878997 +-0.344005 0.0643165 0.0493681 -0.000821192 0.0138536 0.999904 +-0.344005 0.124317 -0.150632 -0.678055 0.734933 -0.0107393 +-0.344005 0.124317 -0.0906319 -0.678055 0.734933 -0.0107393 +-0.344005 0.124317 -0.0506319 -0.678055 0.734933 -0.0107393 +-0.344005 0.124317 0.0293681 -0.678055 0.734933 -0.0107393 +-0.344005 0.404317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.324005 -0.375683 -0.0306319 -0.598957 0.296918 0.7437 +-0.324005 -0.135683 -0.0906319 -0.649153 -0.760138 -0.0281194 +-0.324005 -0.135683 -0.0106319 -0.649153 -0.760138 -0.0281194 +-0.324005 -0.135683 0.0493681 -0.0384737 -0.00410846 0.999251 +-0.324005 -0.0156835 0.0293681 0.649153 0.760138 0.0281194 +-0.324005 0.00431655 -0.0506319 -0.0246489 -0.70662 0.00976992 +-0.324005 0.104317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.324005 0.224317 0.00936812 -0.0913104 -0.0940827 0.991368 +-0.324005 0.324317 0.149368 -0.00189103 -0.999998 0.00087126 +-0.324005 0.544317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.324005 0.624317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.304005 -0.295683 -0.0906319 -0.395053 0.892396 0.218087 +-0.304005 0.0243165 -0.150632 0.678055 -0.734933 0.0107393 +-0.304005 0.0243165 -0.0306319 0.678055 -0.734933 0.0107393 +-0.304005 0.0243165 0.0293681 0.678055 -0.734933 0.0107393 +-0.304005 0.144317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.304005 0.144317 -0.190632 -0.678055 0.734933 -0.0107393 +-0.304005 0.504317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.284005 -0.515683 -0.150632 -0.272271 -0.920651 -0.279768 +-0.284005 -0.515683 -0.0906319 -0.274631 -0.928633 0.249437 +-0.284005 -0.495683 -0.0306319 -0.245626 -0.67206 0.698572 +-0.284005 -0.355683 -0.230632 -0.241171 0.429462 -0.870287 +-0.284005 -0.295683 -0.170632 -0.238292 0.88562 -0.398615 +-0.284005 -0.295683 -0.0706319 -0.240939 0.895458 0.374305 +-0.284005 -0.175683 -0.290632 -0.319381 -0.393621 -0.493854 +-0.284005 -0.175683 -0.170632 -0.649153 -0.760138 -0.0281194 +-0.284005 -0.175683 0.0293681 -0.649153 -0.760138 -0.0281194 +-0.284005 -0.0156835 -0.290632 0.649153 0.760138 0.0281194 +-0.284005 0.0243165 -0.270632 0.678055 -0.734933 0.0107393 +-0.284005 0.0243165 -0.230632 0.678055 -0.734933 0.0107393 +-0.284005 0.0243165 0.0493681 0.678055 -0.734933 0.0107393 +-0.284005 0.0443165 -0.0306319 0.678055 -0.734933 0.0107393 +-0.284005 0.0443165 0.0293681 0.678055 -0.734933 0.0107393 +-0.284005 0.0643165 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.284005 0.164317 -0.110632 -0.678055 0.734933 -0.0107393 +-0.284005 0.164317 0.00936812 -0.678055 0.734933 -0.0107393 +-0.284005 0.164317 0.0493681 -0.678055 0.734933 -0.0107393 +-0.284005 0.344317 -0.270632 0.0913104 0.0940827 -0.991368 +-0.284005 0.384317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.284005 0.464317 0.169368 -0.0755146 0.00101157 0.997144 +-0.284005 0.484317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.284005 0.544317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.284005 0.564317 -0.230632 -0.358505 0.931881 0.055417 +-0.284005 0.564317 -0.0906319 -0.358505 0.931881 0.055417 +-0.284005 0.564317 -0.0306319 -0.358505 0.931881 0.055417 +-0.284005 0.564317 0.169368 -0.0755146 0.00101157 0.997144 +-0.284005 0.644317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.284005 0.664317 0.169368 0.00189103 0.999998 -0.00087126 +-0.264005 -0.195683 -0.230632 -0.649153 -0.760138 -0.0281194 +-0.264005 -0.175683 -0.270632 -0.649153 -0.760138 -0.0281194 +-0.264005 -0.175683 -0.210632 -0.649153 -0.760138 -0.0281194 +-0.264005 -0.0556835 -0.270632 0.649153 0.760138 0.0281194 +-0.264005 -0.0556835 -0.0506319 0.649153 0.760138 0.0281194 +-0.264005 -0.0356835 -0.290632 0.563098 0.6536 -0.116655 +-0.264005 0.0443165 -0.190632 0.678055 -0.734933 0.0107393 +-0.264005 0.0443165 -0.0506319 0.678055 -0.734933 0.0107393 +-0.264005 0.0443165 -0.0106319 0.678055 -0.734933 0.0107393 +-0.264005 0.124317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.264005 0.184317 -0.0706319 -0.678055 0.734933 -0.0107393 +-0.264005 0.184317 0.0293681 -0.678055 0.734933 -0.0107393 +-0.264005 0.244317 -0.0906319 0.358505 -0.931881 -0.055417 +-0.264005 0.244317 -0.0106319 0.358505 -0.931881 -0.055417 +-0.264005 0.324317 0.169368 -0.00189103 -0.999998 0.00087126 +-0.264005 0.364317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.264005 0.384317 0.169368 -0.0755146 0.00101157 0.997144 +-0.264005 0.404317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.264005 0.444317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.264005 0.444317 0.169368 -0.0755146 0.00101157 0.997144 +-0.264005 0.544317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.264005 0.544317 0.169368 -0.0755146 0.00101157 0.997144 +-0.264005 0.584317 -0.170632 -0.358505 0.931881 0.055417 +-0.264005 0.584317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.264005 0.644317 0.169368 -0.0755146 0.00101157 0.997144 +-0.244005 -0.395683 -0.230632 0.079525 0.134182 -0.987761 +-0.244005 -0.355683 -0.230632 0.0720108 0.441375 -0.894429 +-0.244005 -0.335683 -0.0306319 0.0774854 0.647025 0.758521 +-0.244005 -0.215683 -0.110632 -0.649153 -0.760138 -0.0281194 +-0.244005 -0.175683 -0.290632 0.0384737 0.00410846 -0.999251 +-0.244005 0.0643165 -0.0506319 0.678055 -0.734933 0.0107393 +-0.244005 0.424317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.244005 0.484317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.244005 0.584317 -0.110632 -0.358505 0.931881 0.055417 +-0.244005 0.584317 0.169368 -0.0755146 0.00101157 0.997144 +-0.244005 0.624317 0.169368 -0.0755146 0.00101157 0.997144 +-0.224005 -0.435683 -0.230632 0.245429 -0.209899 -0.946418 +-0.224005 -0.0956835 -0.130632 0.649153 0.760138 0.0281194 +-0.224005 -0.0956835 -0.0506319 0.649153 0.760138 0.0281194 +-0.224005 -0.0956835 -0.0106319 0.649153 0.760138 0.0281194 +-0.224005 0.0843165 -0.130632 0.678055 -0.734933 0.0107393 +-0.224005 0.224317 -0.290632 -0.633199 0.685458 -0.0760965 +-0.224005 0.224317 -0.130632 -0.678055 0.734933 -0.0107393 +-0.224005 0.224317 0.0493681 -0.678055 0.734933 -0.0107393 +-0.224005 0.464317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.224005 0.584317 -0.210632 -0.358505 0.931881 0.055417 +-0.224005 0.604317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 -0.515683 -0.0906319 0.411555 -0.880185 0.236423 +-0.204005 -0.375683 -0.0106319 0.395705 0.284185 0.873302 +-0.204005 -0.255683 0.0293681 -0.649153 -0.760138 -0.0281194 +-0.204005 -0.235683 -0.250632 -0.649153 -0.760138 -0.0281194 +-0.204005 -0.235683 -0.170632 -0.649153 -0.760138 -0.0281194 +-0.204005 -0.115683 -0.0906319 0.649153 0.760138 0.0281194 +-0.204005 0.104317 -0.230632 0.678055 -0.734933 0.0107393 +-0.204005 0.124317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.204005 0.164317 -0.290632 0.000821192 -0.0138536 -0.999904 +-0.204005 0.164317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.204005 0.244317 -0.270632 -0.678055 0.734933 -0.0107393 +-0.204005 0.244317 -0.0906319 -0.678055 0.734933 -0.0107393 +-0.204005 0.244317 0.00936812 -0.678055 0.734933 -0.0107393 +-0.204005 0.344317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.204005 0.344317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.204005 0.364317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.204005 0.364317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.404317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.464317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.484317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.204005 0.504317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.204005 0.544317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.584317 0.189368 -0.0755146 0.00101157 0.997144 +-0.204005 0.664317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.184005 -0.495683 -0.0906319 0.611208 -0.751165 0.249351 +-0.184005 -0.475683 -0.0306319 0.533462 -0.501001 0.681481 +-0.184005 -0.435683 -0.0106319 0.528099 -0.189842 0.82769 +-0.184005 -0.375683 -0.0306319 0.588027 0.299907 0.751185 +-0.184005 -0.255683 -0.210632 -0.649153 -0.760138 -0.0281194 +-0.184005 -0.255683 -0.0306319 -0.649153 -0.760138 -0.0281194 +-0.184005 -0.115683 -0.250632 0.649153 0.760138 0.0281194 +-0.184005 -0.115683 0.0493681 0.649153 0.760138 0.0281194 +-0.184005 0.124317 -0.190632 0.678055 -0.734933 0.0107393 +-0.184005 0.264317 -0.0906319 -0.678055 0.734933 -0.0107393 +-0.184005 0.264317 -0.0306319 -0.678055 0.734933 -0.0107393 +-0.184005 0.424317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.184005 0.464317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.184005 0.464317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.184005 0.484317 0.189368 -0.0755146 0.00101157 0.997144 +-0.184005 0.584317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.164005 -0.475683 -0.0706319 0.740673 -0.539296 0.400703 +-0.164005 -0.455683 -0.170632 0.792362 -0.398883 -0.461578 +-0.164005 -0.135683 -0.150632 0.649153 0.760138 0.0281194 +-0.164005 0.304317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.164005 0.524317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.164005 0.584317 0.0293681 0.929051 0.35035 0.11882 +-0.164005 0.624317 -0.170632 -0.358505 0.931881 0.055417 +-0.144005 -0.275683 0.0493681 0.759684 -0.649749 0.0265783 +-0.144005 -0.255683 -0.270632 0.0384737 0.00410846 -0.999251 +-0.144005 -0.255683 0.0293681 0.759684 -0.649749 0.0265783 +-0.144005 -0.155683 -0.110632 0.649153 0.760138 0.0281194 +-0.144005 0.164317 -0.270632 0.678055 -0.734933 0.0107393 +-0.144005 0.164317 -0.190632 0.678055 -0.734933 0.0107393 +-0.144005 0.264317 -0.210632 0.735011 0.677998 -0.00878997 +-0.144005 0.264317 -0.0506319 0.735011 0.677998 -0.00878997 +-0.144005 0.264317 0.0493681 -0.000821192 0.0138536 0.999904 +-0.144005 0.284317 -0.250632 0.735011 0.677998 -0.00878997 +-0.144005 0.344317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.144005 0.364317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.144005 0.424317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.144005 0.444317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.144005 0.484317 0.0493681 -0.0913104 -0.0940827 0.991368 +-0.144005 0.484317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.144005 0.544317 0.189368 -0.0755146 0.00101157 0.997144 +-0.144005 0.584317 0.189368 -0.0755146 0.00101157 0.997144 +-0.144005 0.604317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.124005 -0.415683 -0.110632 0.99732 -0.0371544 0.0630185 +-0.124005 -0.395683 -0.0906319 0.0107815 -0.880155 0.474423 +-0.124005 -0.375683 -0.170632 0.00498467 -0.396521 -0.917975 +-0.124005 -0.255683 -0.130632 0.759684 -0.649749 0.0265783 +-0.124005 -0.235683 0.0293681 0.759684 -0.649749 0.0265783 +-0.124005 0.184317 -0.0706319 0.678055 -0.734933 0.0107393 +-0.124005 0.264317 -0.290632 0.735011 0.677998 -0.00878997 +-0.124005 0.264317 -0.170632 0.735011 0.677998 -0.00878997 +-0.124005 0.264317 -0.0306319 0.735011 0.677998 -0.00878997 +-0.124005 0.384317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.124005 0.424317 0.189368 -0.0755146 0.00101157 0.997144 +-0.124005 0.484317 -0.0506319 0.929051 0.35035 0.11882 +-0.124005 0.504317 0.0293681 0.929051 0.35035 0.11882 +-0.124005 0.544317 -0.210632 0.929051 0.35035 0.11882 +-0.124005 0.544317 -0.150632 0.929051 0.35035 0.11882 +-0.104005 -0.215683 -0.0906319 0.759684 -0.649749 0.0265783 +-0.104005 0.204317 -0.0106319 0.678055 -0.734933 0.0107393 +-0.104005 0.224317 -0.110632 0.735011 0.677998 -0.00878997 +-0.104005 0.224317 -0.0706319 0.735011 0.677998 -0.00878997 +-0.104005 0.224317 -0.0306319 0.735011 0.677998 -0.00878997 +-0.104005 0.264317 -0.110632 -0.0412626 -0.998737 -0.0286233 +-0.104005 0.444317 -0.0306319 0.0409203 0.660513 0.749668 +-0.104005 0.444317 0.0293681 0.929051 0.35035 0.11882 +-0.104005 0.584317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0840047 -0.295683 -0.150632 -0.0102382 0.836689 -0.547497 +-0.0840047 -0.195683 -0.230632 0.649153 0.760138 0.0281194 +-0.0840047 0.204317 -0.230632 0.678055 -0.734933 0.0107393 +-0.0840047 0.224317 -0.0906319 0.735011 0.677998 -0.00878997 +-0.0840047 0.344317 0.0293681 -0.0913104 -0.0940827 0.991368 +-0.0840047 0.344317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 0.364317 -0.250632 0.0913104 0.0940827 -0.991368 +-0.0840047 0.364317 0.00936812 0.929051 0.35035 0.11882 +-0.0840047 0.404317 -0.230632 0.0913104 0.0940827 -0.991368 +-0.0840047 0.404317 -0.0106319 0.0293381 0.280572 0.95937 +-0.0840047 0.444317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 0.484317 -0.150632 0.0310095 0.929038 -0.368645 +-0.0840047 0.564317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0840047 0.604317 0.149368 0.0755146 -0.00101157 -0.997144 +-0.0840047 0.624317 0.189368 -0.0755146 0.00101157 0.997144 +-0.0640047 -0.295683 -0.0906319 -0.0113379 0.917372 0.397773 +-0.0640047 0.264317 -0.0906319 -0.0373295 -0.986967 0.156491 +-0.0640047 0.324317 -0.230632 0.358505 -0.931881 -0.055417 +-0.0640047 0.384317 0.00936812 0.02178 0.0781566 0.9967 +-0.0640047 0.384317 0.169368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.404317 -0.210632 -0.00671613 0.275085 -0.961395 +-0.0640047 0.424317 0.189368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.504317 0.169368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.564317 0.169368 0.997143 -0.00181983 0.0755164 +-0.0640047 0.624317 0.169368 0.997143 -0.00181983 0.0755164 +-0.0440047 -0.315683 -0.0706319 -0.00773377 0.621068 0.783623 +-0.0440047 0.0243165 -0.110632 -0.926664 0.355329 0.122617 +-0.0240047 -0.395683 -0.0906319 0.0108495 -0.885587 0.464214 +-0.0240047 -0.0356835 -0.150632 -0.327095 -0.746672 -0.579215 +-0.0240047 -0.0356835 -0.0906319 -0.356575 -0.813966 0.458599 +-0.0240047 0.00431655 -0.170632 -0.336286 -0.0823217 -0.938155 +-0.0240047 0.0443165 -0.150632 -0.368829 0.661364 -0.653118 +-0.0240047 0.304317 -0.0306319 -0.0129874 -0.661473 0.749831 +-0.0240047 0.464317 -0.150632 0.0292143 0.907773 -0.418395 +-0.00400471 -0.315683 -0.170632 -0.00631428 0.520739 -0.853638 +-0.00400471 -0.315683 -0.0706319 -0.00766765 0.615658 0.787881 +-0.00400471 -0.295683 -0.110632 -0.0122865 0.997426 0.0706048 +-0.00400471 0.264317 -0.0906319 -0.0369906 -0.984769 0.169848 +-0.00400471 0.364317 -0.0106319 0.0151624 -0.083958 0.996354 +-0.00400471 0.484317 -0.0706319 0.0445892 0.944421 0.325693 +0.0159953 -0.295683 -0.0906319 -0.0113065 0.914767 0.403722 +0.0159953 -0.0356835 -0.0906319 0.368297 -0.809995 0.456361 +0.0159953 0.00431655 -0.170632 0.347528 -0.0819641 -0.93408 +0.0159953 0.0243165 -0.0706319 0.392582 0.292817 0.871859 +0.0159953 0.0443165 -0.150632 0.380825 0.657913 -0.64971 +0.0159953 0.0443165 -0.0906319 0.425629 0.735315 0.527401 +0.0159953 0.284317 -0.0506319 -0.0233452 -0.82843 0.559566 +0.0159953 0.384317 -0.210632 -0.0134508 0.124026 -0.992188 +0.0159953 0.484317 -0.0906319 0.0432634 0.985302 0.165252 +0.0159953 0.624317 0.189368 -0.999368 -0.000487557 -0.0355506 +0.0359953 -0.395683 -0.110632 0.0122578 -0.996496 0.0827089 +0.0359953 0.0443165 -0.110632 0.750197 0.653996 0.0974361 +0.0359953 0.404317 -0.0106319 0.0306294 0.317563 0.947727 +0.0359953 0.404317 0.169368 -0.999368 -0.000487557 -0.0355506 +0.0359953 0.444317 0.169368 -0.999368 -0.000487557 -0.0355506 +0.0359953 0.544317 0.169368 -0.999368 -0.000487557 -0.0355506 +0.0359953 0.624317 0.169368 -0.999368 -0.000487557 -0.0355506 +0.0359953 0.644317 0.189368 -0.0355514 0.00170225 0.999366 +0.0559953 -0.375683 -0.0306319 -0.871549 -0.481571 0.0921502 +0.0759953 -0.435683 -0.230632 -0.871549 -0.481571 0.0921502 +0.0759953 -0.415683 -0.0906319 -0.871549 -0.481571 0.0921502 +0.0759953 -0.395683 0.0293681 -0.871549 -0.481571 0.0921502 +0.0759953 -0.295683 -0.110632 -0.0122857 0.997346 0.071735 +0.0759953 0.364317 -0.210632 -0.020623 -0.0489229 -0.998586 +0.0759953 0.384317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.424317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.484317 -0.0906319 0.0433322 0.984292 0.171147 +0.0759953 0.484317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.584317 0.189368 -0.0355514 0.00170225 0.999366 +0.0759953 0.664317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0759953 0.684317 0.189368 -0.0355514 0.00170225 0.999366 +0.0959953 -0.495683 -0.270632 -0.871549 -0.481571 0.0921502 +0.0959953 -0.435683 -0.270632 -0.136967 0.0586659 -0.988837 +0.0959953 -0.375683 0.0293681 -0.470789 0.874441 0.11709 +0.0959953 0.264317 -0.0306319 -0.676327 0.0456397 0.735173 +0.0959953 0.304317 0.169368 0.000426732 -0.999998 0.00171851 +0.0959953 0.424317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.464317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.544317 0.149368 0.0355514 -0.00170225 -0.999366 +0.0959953 0.584317 0.149368 0.0355514 -0.00170225 -0.999366 +0.115995 -0.515683 -0.230632 -0.871549 -0.481571 0.0921502 +0.115995 -0.495683 -0.170632 -0.871549 -0.481571 0.0921502 +0.115995 -0.395683 0.0693681 0.136967 -0.0586659 0.988837 +0.115995 -0.315683 -0.230632 -0.470789 0.874441 0.11709 +0.115995 -0.315683 -0.150632 -0.00818217 0.671441 -0.740872 +0.115995 -0.295683 -0.110632 -0.0122852 0.997304 0.0723157 +0.115995 0.0243165 -0.0906319 -0.728226 0.429867 0.533564 +0.115995 0.244317 -0.0306319 -0.301081 -0.928023 -0.219369 +0.115995 0.264317 -0.0906319 -0.0362478 -0.979495 0.198138 +0.115995 0.304317 -0.230632 -0.301081 -0.928023 -0.219369 +0.115995 0.384317 -0.210632 -0.0116231 0.166035 -0.986051 +0.115995 0.384317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 0.444317 -0.190632 0.0149285 0.694924 -0.718903 +0.115995 0.444317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 0.484317 -0.0706319 -0.943619 0.256747 0.208956 +0.115995 0.484317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 0.544317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 0.564317 0.149368 0.0355514 -0.00170225 -0.999366 +0.115995 0.644317 0.189368 -0.0355514 0.00170225 0.999366 +0.115995 0.664317 0.149368 0.0355514 -0.00170225 -0.999366 +0.115995 0.684317 0.169368 -0.000426732 0.999998 -0.00171851 +0.135995 -0.535683 -0.150632 -0.871549 -0.481571 0.0921502 +0.135995 -0.515683 -0.0906319 -0.871549 -0.481571 0.0921502 +0.135995 -0.515683 -0.0306319 -0.871549 -0.481571 0.0921502 +0.135995 -0.495683 -0.270632 -0.136967 0.0586659 -0.988837 +0.135995 -0.475683 0.0293681 -0.871549 -0.481571 0.0921502 +0.135995 -0.395683 -0.270632 -0.136967 0.0586659 -0.988837 +0.135995 0.00431655 -0.170632 -0.14685 0.0732244 -0.986438 +0.135995 0.0243165 -0.0706319 -0.349806 0.214554 0.911852 +0.135995 0.104317 -0.110632 -0.862199 0.502012 0.0677825 +0.135995 0.284317 -0.230632 -0.301081 -0.928023 -0.219369 +0.135995 0.304317 0.169368 0.000426732 -0.999998 0.00171851 +0.135995 0.384317 -0.230632 -0.627142 0.36599 -0.687548 +0.135995 0.384317 -0.0106319 0.0252767 0.169135 0.985261 +0.135995 0.444317 -0.0106319 -0.781056 0.108016 0.615034 +0.135995 0.484317 -0.0306319 -0.872029 0.174853 0.457144 +0.135995 0.484317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.584317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.624317 0.149368 0.0355514 -0.00170225 -0.999366 +0.135995 0.624317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 -0.555683 -0.110632 -0.871549 -0.481571 0.0921502 +0.155995 -0.535683 -0.0906319 -0.871549 -0.481571 0.0921502 +0.155995 -0.515683 -0.270632 -0.136967 0.0586659 -0.988837 +0.155995 -0.395683 0.0693681 0.136967 -0.0586659 0.988837 +0.155995 -0.335683 -0.270632 -0.136967 0.0586659 -0.988837 +0.155995 -0.335683 0.0293681 -0.470789 0.874441 0.11709 +0.155995 -0.295683 -0.250632 -0.470789 0.874441 0.11709 +0.155995 -0.295683 -0.210632 -0.470789 0.874441 0.11709 +0.155995 0.0243165 -0.170632 -0.0389337 0.0103378 -0.999188 +0.155995 0.104317 -0.0906319 -0.74848 0.441166 0.494973 +0.155995 0.224317 -0.0106319 -0.301081 -0.928023 -0.219369 +0.155995 0.244317 -0.0306319 -0.301081 -0.928023 -0.219369 +0.155995 0.364317 -0.250632 -0.464921 0.343702 -0.815906 +0.155995 0.384317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 0.464317 0.149368 0.0355514 -0.00170225 -0.999366 +0.155995 0.524317 -0.150632 -0.845666 0.366146 -0.388287 +0.155995 0.544317 -0.0106319 -0.858495 0.163641 0.486 +0.155995 0.544317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 0.564317 -0.150632 -0.837679 0.367311 -0.404178 +0.155995 0.564317 -0.0506319 -0.940583 0.251131 0.228549 +0.155995 0.644317 0.189368 -0.0355514 0.00170225 0.999366 +0.155995 0.684317 0.169368 -0.000426732 0.999998 -0.00171851 +0.175995 -0.575683 -0.230632 0.470789 -0.874441 -0.11709 +0.175995 -0.515683 -0.290632 -0.136967 0.0586659 -0.988837 +0.175995 0.00431655 -0.0706319 0.43832 -0.244144 0.864941 +0.175995 0.0843165 -0.170632 -0.230014 0.121823 -0.965514 +0.175995 0.104317 -0.150632 -0.501442 0.281413 -0.818007 +0.175995 0.244317 -0.0506319 -0.301081 -0.928023 -0.219369 +0.175995 0.244317 -0.0106319 -0.218833 -0.156664 0.9631 +0.175995 0.404317 0.00936812 -0.534038 -0.0264924 0.845032 +0.175995 0.444317 0.00936812 -0.613115 0.0121988 0.789884 +0.175995 0.484317 0.189368 -0.0355514 0.00170225 0.999366 +0.175995 0.564317 -0.170632 -0.740849 0.372473 -0.558913 +0.175995 0.604317 -0.0306319 0.301081 0.928023 0.219369 +0.195995 -0.555683 -0.250632 0.470789 -0.874441 -0.11709 +0.195995 -0.135683 -0.0706319 -0.624196 -0.0135977 0.781149 +0.195995 0.144317 -0.150632 -0.54091 0.304777 -0.78377 +0.195995 0.164317 -0.0706319 -0.553975 0.331409 0.763635 +0.195995 0.264317 -0.230632 -0.301081 -0.928023 -0.219369 +0.195995 0.324317 -0.290632 -0.104865 0.26087 -0.959661 +0.195995 0.424317 0.0293681 -0.43492 -0.0710871 0.89765 +0.195995 0.464317 0.0293681 -0.516542 -0.0346545 0.855549 +0.195995 0.604317 0.189368 -0.0355514 0.00170225 0.999366 +0.215995 -0.535683 -0.290632 -0.136967 0.0586659 -0.988837 +0.215995 -0.435683 0.0493681 0.136967 -0.0586659 0.988837 +0.215995 -0.395683 -0.290632 -0.136967 0.0586659 -0.988837 +0.215995 -0.295683 -0.0106319 -0.470789 0.874441 0.11709 +0.215995 -0.275683 -0.230632 -0.470789 0.874441 0.11709 +0.215995 -0.155683 -0.0706319 -0.309486 -0.396278 0.864397 +0.215995 0.00431655 -0.110632 0.863333 -0.501104 0.0595604 +0.215995 0.0443165 -0.0706319 0.582965 -0.32973 0.742488 +0.215995 0.104317 -0.0706319 0.185206 -0.095623 0.978018 +0.215995 0.144317 -0.170632 -0.168901 0.0860985 -0.981855 +0.215995 0.244317 0.00936812 0.0283198 -0.238644 0.970694 +0.215995 0.284317 0.00936812 -0.0461018 -0.215609 0.975391 +0.215995 0.344317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.364317 0.0293681 -0.201554 -0.162916 0.965831 +0.215995 0.384317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.424317 0.189368 -0.0355514 0.00170225 0.999366 +0.215995 0.444317 -0.250632 -0.232142 0.294452 -0.927041 +0.215995 0.484317 -0.230632 -0.33001 0.317228 -0.889073 +0.215995 0.564317 0.149368 0.0355514 -0.00170225 -0.999366 +0.215995 0.624317 -0.110632 0.301081 0.928023 0.219369 +0.215995 0.624317 0.189368 -0.0355514 0.00170225 0.999366 +0.215995 0.664317 0.149368 0.0355514 -0.00170225 -0.999366 +0.235995 -0.575683 0.0293681 0.470789 -0.874441 -0.11709 +0.235995 -0.555683 -0.0706319 0.470789 -0.874441 -0.11709 +0.235995 -0.555683 -0.0306319 0.470789 -0.874441 -0.11709 +0.235995 -0.535683 -0.230632 0.470789 -0.874441 -0.11709 +0.235995 -0.535683 0.0493681 0.136967 -0.0586659 0.988837 +0.235995 -0.515683 -0.290632 -0.136967 0.0586659 -0.988837 +0.235995 -0.375683 0.0493681 0.136967 -0.0586659 0.988837 +0.235995 -0.315683 -0.270632 -0.136967 0.0586659 -0.988837 +0.235995 -0.315683 0.0493681 0.136967 -0.0586659 0.988837 +0.235995 -0.135683 -0.0706319 0.0827038 -0.017345 0.996423 +0.235995 -0.0956835 -0.0906319 0.0803532 0.837089 0.541134 +0.235995 0.0843165 -0.150632 0.617777 -0.367651 -0.694978 +0.235995 0.124317 -0.0706319 0.307245 -0.167069 0.936803 +0.235995 0.224317 -0.150632 -0.60821 0.344744 -0.714853 +0.235995 0.224317 -0.0906319 -0.683038 0.404515 0.607922 +0.235995 0.264317 -0.290632 -0.301081 -0.928023 -0.219369 +0.235995 0.344317 0.0293681 -0.0437266 -0.216366 0.975332 +0.235995 0.344317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.424317 -0.270632 -0.0580676 0.247459 -0.967157 +0.235995 0.424317 0.0493681 -0.193803 -0.165693 0.966944 +0.235995 0.464317 0.0493681 -0.275839 -0.135453 0.951608 +0.235995 0.464317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.544317 -0.230632 -0.293948 0.30916 -0.904438 +0.235995 0.564317 -0.210632 -0.365833 0.324848 -0.872141 +0.235995 0.584317 -0.0106319 0.301081 0.928023 0.219369 +0.235995 0.604317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.644317 0.189368 -0.0355514 0.00170225 0.999366 +0.235995 0.684317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 -0.535683 -0.110632 0.470789 -0.874441 -0.11709 +0.255995 -0.515683 -0.230632 0.470789 -0.874441 -0.11709 +0.255995 -0.515683 0.0493681 0.136967 -0.0586659 0.988837 +0.255995 -0.395683 -0.290632 -0.136967 0.0586659 -0.988837 +0.255995 -0.355683 -0.290632 -0.136967 0.0586659 -0.988837 +0.255995 -0.255683 -0.150632 -0.470789 0.874441 0.11709 +0.255995 -0.235683 -0.230632 -0.470789 0.874441 0.11709 +0.255995 -0.135683 -0.170632 0.398719 -0.0132445 -0.916977 +0.255995 -0.115683 -0.0706319 0.434579 0.351312 0.829289 +0.255995 -0.0956835 -0.110632 0.51481 0.849441 0.115848 +0.255995 0.144317 -0.0706319 0.410399 -0.227693 0.88295 +0.255995 0.224317 -0.0106319 0.319042 -0.314816 0.893922 +0.255995 0.244317 -0.210632 -0.301081 -0.928023 -0.219369 +0.255995 0.244317 -0.150632 -0.301081 -0.928023 -0.219369 +0.255995 0.264317 -0.230632 -0.301081 -0.928023 -0.219369 +0.255995 0.284317 -0.290632 0.320152 0.118319 -0.939943 +0.255995 0.304317 0.169368 0.000426732 -0.999998 0.00171851 +0.255995 0.324317 -0.270632 0.26265 0.140442 -0.954611 +0.255995 0.324317 0.0293681 0.108427 -0.261867 0.958994 +0.255995 0.384317 -0.270632 0.134012 0.186583 -0.973255 +0.255995 0.384317 0.189368 -0.0355514 0.00170225 0.999366 +0.255995 0.504317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.544317 0.0693681 -0.306658 -0.123598 0.943756 +0.255995 0.564317 0.0293681 0.301081 0.928023 0.219369 +0.255995 0.584317 -0.210632 -0.277937 0.305455 -0.910737 +0.255995 0.604317 -0.110632 0.301081 0.928023 0.219369 +0.255995 0.604317 -0.0706319 0.301081 0.928023 0.219369 +0.255995 0.604317 0.149368 0.0355514 -0.00170225 -0.999366 +0.255995 0.624317 -0.170632 0.301081 0.928023 0.219369 +0.255995 0.664317 0.189368 -0.0355514 0.00170225 0.999366 +0.255995 0.684317 0.169368 -0.000426732 0.999998 -0.00171851 +0.275995 -0.535683 -0.0906319 0.470789 -0.874441 -0.11709 +0.275995 -0.535683 -0.0106319 0.470789 -0.874441 -0.11709 +0.275995 -0.515683 -0.210632 0.470789 -0.874441 -0.11709 +0.275995 -0.515683 -0.150632 0.470789 -0.874441 -0.11709 +0.275995 -0.455683 0.0493681 0.136967 -0.0586659 0.988837 +0.275995 -0.255683 -0.290632 -0.136967 0.0586659 -0.988837 +0.275995 -0.255683 -0.0306319 -0.470789 0.874441 0.11709 +0.275995 -0.135683 -0.110632 0.992458 -0.0179012 0.121271 +0.275995 0.144317 -0.0906319 0.740695 -0.424142 0.520866 +0.275995 0.204317 -0.0306319 0.494057 -0.348565 0.796489 +0.275995 0.284317 0.00936812 0.308613 -0.312488 0.898389 +0.275995 0.344317 0.0293681 0.191244 -0.284132 0.939517 +0.275995 0.384317 0.0293681 0.128434 -0.267411 0.954985 +0.275995 0.384317 0.169368 0.0355514 -0.00170225 -0.999366 +0.275995 0.404317 0.189368 -0.0355514 0.00170225 0.999366 +0.275995 0.424317 0.169368 0.0355514 -0.00170225 -0.999366 +0.275995 0.464317 0.169368 0.0355514 -0.00170225 -0.999366 +0.275995 0.484317 -0.250632 0.0594737 0.211322 -0.975605 +0.275995 0.584317 -0.230632 -0.128119 0.267324 -0.955051 +0.275995 0.604317 -0.0906319 0.301081 0.928023 0.219369 +0.275995 0.604317 0.169368 0.0355514 -0.00170225 -0.999366 +0.275995 0.644317 0.189368 -0.0355514 0.00170225 0.999366 +0.275995 0.664317 0.169368 0.0355514 -0.00170225 -0.999366 +0.295995 -0.515683 0.0293681 0.136967 -0.0586659 0.988837 +0.295995 -0.355683 -0.290632 -0.136967 0.0586659 -0.988837 +0.295995 -0.235683 -0.150632 -0.470789 0.874441 0.11709 +0.295995 -0.235683 -0.110632 -0.470789 0.874441 0.11709 +0.295995 0.164317 -0.150632 0.701031 -0.414632 -0.580096 +0.295995 0.184317 -0.0906319 0.722037 -0.412877 0.55497 +0.295995 0.304317 0.169368 0.000426732 -0.999998 0.00171851 +0.295995 0.324317 -0.270632 0.471435 0.0551084 -0.880168 +0.295995 0.364317 -0.270632 0.392258 0.0891517 -0.915518 +0.295995 0.384317 0.189368 -0.0355514 0.00170225 0.999366 +0.295995 0.424317 0.0493681 0.155932 -0.274859 0.948755 +0.295995 0.424317 0.189368 -0.0355514 0.00170225 0.999366 +0.295995 0.584317 0.169368 0.823908 8.89092e-05 -0.152853 +0.295995 0.664317 0.189368 -0.0355514 0.00170225 0.999366 +0.295995 0.684317 0.169368 -0.000426732 0.999998 -0.00171851 +0.315995 -0.315683 -0.290632 -0.136967 0.0586659 -0.988837 +0.315995 -0.235683 -0.0306319 -0.470789 0.874441 0.11709 +0.315995 0.264317 -0.0306319 0.623231 -0.365608 0.691298 +0.315995 0.304317 -0.250632 0.639447 -0.0258235 -0.768387 +0.315995 0.364317 0.00936812 0.430478 -0.337538 0.837104 +0.315995 0.544317 0.0293681 0.301081 0.928023 0.219369 +0.335995 -0.515683 -0.0106319 0.470789 -0.874441 -0.11709 diff --git a/predict/predict.py b/predict/predict.py index c5b8307..71cf2a3 100644 --- a/predict/predict.py +++ b/predict/predict.py @@ -1,17 +1,244 @@ import sys import os +import shutil +import math + sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../') # add project root directory from dataset.shapenet import ShapeNetPartSegDataset from model.pointnet2_part_seg import PointNet2PartSegmentNet import torch_geometric.transforms as GT import torch +import argparse from distutils.util import strtobool import numpy as np -import argparse +from sklearn.cluster import DBSCAN +from sklearn.preprocessing import StandardScaler +import open3d as o3d +import pointcloud as pc + +def eval_sample(net, sample): + ''' + sample: { 'points': tensor(n, 3), 'labels': tensor(n,) } + return: (pred_label, gt_label) with labels shape (n,) + ''' + net.eval() + with torch.no_grad(): + # points: (n, 3) + points, gt_label = sample['points'], sample['labels'] + n = points.shape[0] + + points = points.view(1, n, 3) # make a batch + points = points.transpose(1, 2).contiguous() + points = points.to(device, dtype) + + pred = net(points) # (batch_size, n, num_classes) + pred_label = pred.max(2)[1] + pred_label = pred_label.view(-1).cpu() # (n,) + + assert pred_label.shape == gt_label.shape + return (pred_label, gt_label) + + +def mini_color_table(index, norm=True): + colors = [ + [0.5000, 0.5400, 0.5300], [0.8900, 0.1500, 0.2100], [0.6400, 0.5800, 0.5000], + [1.0000, 0.3800, 0.0100], [1.0000, 0.6600, 0.1400], [0.4980, 1.0000, 0.0000], + [0.4980, 1.0000, 0.8314], [0.9412, 0.9725, 1.0000], [0.5412, 0.1686, 0.8863], + [0.5765, 0.4392, 0.8588], [0.3600, 0.1400, 0.4300], [0.5600, 0.3700, 0.6000], + ] + + color = colors[index % len(colors)] + + if not norm: + color[0] *= 255 + color[1] *= 255 + color[2] *= 255 + + return color + + +def label2color(labels): + ''' + labels: np.ndarray with shape (n, ) + colors(return): np.ndarray with shape (n, 3) + ''' + num = labels.shape[0] + colors = np.zeros((num, 3)) + + minl, maxl = np.min(labels), np.max(labels) + for l in range(minl, maxl + 1): + colors[labels == l, :] = mini_color_table(l) + + return colors + + +def clusterToColor(cluster, cluster_idx): + + colors = np.zeros(shape=(len(cluster), 3)) + point_idx = 0 + for point in cluster: + colors[point_idx, :] = mini_color_table(cluster_idx) + point_idx += 1 + + return colors + + +def normalize_pointcloud(pc): + + max = pc.max(axis=0) + min = pc.min(axis=0) + + f = np.max([abs(max[0] - min[0]), abs(max[1] - min[1]), abs(max[2] - min[2])]) + + pc[:, 0:3] /= f + pc[:, 3:6] /= (np.linalg.norm(pc[:, 3:6], ord=2, axis=1, keepdims=True)) + + return pc + + +def farthest_point_sampling(pts, K): + + if pts.shape[0] < K: + return pts + + def calc_distances(p0, points): + return ((p0[:3] - points[:, :3]) ** 2).sum(axis=1) + + farthest_pts = np.zeros((K, pts.shape[1])) + farthest_pts[0] = pts[np.random.randint(len(pts))] + distances = calc_distances(farthest_pts[0], pts) + for i in range(1, K): + farthest_pts[i] = pts[np.argmax(distances)] + distances = np.minimum(distances, calc_distances(farthest_pts[i], pts)) + + return farthest_pts + + +def append_onehotencoded_type(data, factor = 1.0): + + types = data[:, 6].astype(int) + res = np.zeros((len(types), 4)) + res[np.arange(len(types)), types] = factor + + return np.column_stack((data, res)) + + +def append_normal_angles(data): + + def func(x): + theta = math.acos(x[2]) / math.pi + phi = (math.atan2(x[1], x[0]) + math.pi) / (2.0 * math.pi) + return (theta, phi) + + res = np.array([func(xi) for xi in data[:, 3:6]]) + + print(res) + + return np.column_stack((data, res)) + + +def extract_cube_clusters(data, cluster_dims, max_points_per_cluster): + + max = data[:,:3].max(axis=0) + max += max * 0.01 + + min = data[:,:3].min(axis=0) + min -= min * 0.01 + + size = (max - min) + + clusters = {} + + cluster_size = size / np.array(cluster_dims, dtype=np.float32) + + print('Min: ' + str(min) + ' Max: ' + str(max)) + print('Cluster Size: ' + str(cluster_size)) + + for row in data: + + # print('Row: ' + str(row)) + + cluster_pos = ((row[:3] - min) / cluster_size).astype(int) + cluster_idx = cluster_dims[0] * cluster_dims[2] * cluster_pos[1] + cluster_dims[0] * cluster_pos[2] + cluster_pos[0] + clusters.setdefault(cluster_idx, []).append(row) + + # Apply farthest point sampling to each cluster + for key, cluster in clusters.items(): + c = np.vstack(cluster) + clusters[key] = farthest_point_sampling(c, max_points_per_cluster) + + return clusters.values() + + +def extract_clusters(data, selected_indices, eps, min_samples, metric='euclidean', algo='auto'): + + min_samples = min_samples * len(data) + + print('Clustering. Min Samples: ' + str(min_samples) + ' EPS: ' + str(eps)) + + # 0,1,2 : pos + # 3,4,5 : normal + # 6: type index + # 7,8,9,10: type index one hot encoded + # 11,12: normal as angles + + db_res = DBSCAN(eps=eps, metric=metric, n_jobs=-1, algorithm=algo, min_samples=min_samples).fit(data[:, selected_indices]) + + + labels = db_res.labels_ + n_clusters = len(set(labels)) - (1 if -1 in labels else 0) + n_noise = list(labels).count(-1) + print("Noise: " + str(n_noise) + " Clusters: " + str(n_clusters)) + + clusters = {} + for idx, l in enumerate(labels): + if l is -1: + continue + clusters.setdefault(str(l), []).append(data[idx, :]) + + + npClusters = [] + for cluster in clusters.values(): + npClusters.append(np.array(cluster)) + + return npClusters + + +def draw_clusters(clusters): + + clouds = [] + + cluster_idx = 0 + for cluster in clusters: + + cloud = o3d.PointCloud() + cloud.points = o3d.Vector3dVector(cluster[:,:3]) + cloud.colors = o3d.Vector3dVector(clusterToColor(cluster, cluster_idx)) + clouds.append(cloud) + cluster_idx += 1 + + o3d.draw_geometries(clouds) + + +def draw_sample_data(sample_data, colored_normals = False): + + cloud = o3d.PointCloud() + cloud.points = o3d.Vector3dVector(sample_data[:,:3]) + cloud.colors = \ + o3d.Vector3dVector(label2color(sample_data[:, 6].astype(int)) if not colored_normals else sample_data[:, 3:6]) + + o3d.draw_geometries([cloud]) + + +def recreate_folder(folder): + if os.path.exists(folder) and os.path.isdir(folder): + shutil.rmtree(folder) + os.mkdir(folder) + +sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../') # add project root directory -## parser = argparse.ArgumentParser() parser.add_argument('--npoints', type=int, default=2048, help='resample points number') parser.add_argument('--model', type=str, default='./checkpoint/seg_model_custom_3.pth', help='model path') @@ -27,9 +254,40 @@ print(opt) if __name__ == '__main__': + # Create dataset + print('Create data set ..') + + dataset_folder = './data/raw/predict/' + pointcloud_file = './pointclouds/0_pc.xyz' + + pc = pc.read_pointcloud(pointcloud_file) + pc = normalize_pointcloud(pc) + pc = append_normal_angles(pc) + + # pc = StandardScaler().fit_transform(pc) + + recreate_folder(dataset_folder) + + # Add full point cloud to prediction folder. + recreate_folder(dataset_folder + '0_0' + '/') + pc_fps = farthest_point_sampling(pc, opt.npoints) + pc.write_pointcloud(dataset_folder + '0_0' + '/pc.xyz', pc_fps) + + pc_clusters = extract_cube_clusters(pc, [4,4,4], 1024) + #pc_clusters = extract_clusters(pc, [0, 1, 2, 3, 4, 5], eps=0.1, min_samples=0.0001, metric='euclidean', algo='auto') + # Add cluster point clouds to prediction folder. + for idx, pcc in enumerate(pc_clusters): + + pcc = farthest_point_sampling(pcc, opt.npoints) + recreate_folder(dataset_folder + str(idx) + '/') + pc.write_pointcloud(dataset_folder + str(idx) + '/pc.xyz', pcc) + #draw_sample_data(pcc, False) + + draw_clusters(pc_clusters) + # Load dataset - print('Construct dataset ..') - test_transform = GT.Compose([GT.NormalizeScale(),]) + print('load dataset ..') + test_transform = GT.Compose([GT.NormalizeScale(), ]) test_dataset = ShapeNetPartSegDataset( mode='predict', @@ -57,34 +315,33 @@ if __name__ == '__main__': net = net.to(device, dtype) net.eval() - ## - def eval_sample(net, sample): - ''' - sample: { 'points': tensor(n, 3), 'labels': tensor(n,) } - return: (pred_label, gt_label) with labels shape (n,) - ''' - net.eval() - with torch.no_grad(): - # points: (n, 3) - points, gt_label = sample['points'], sample['labels'] - n = points.shape[0] - - points = points.view(1, n, 3) # make a batch - points = points.transpose(1, 2).contiguous() - points = points.to(device, dtype) - - pred = net(points) # (batch_size, n, num_classes) - pred_label = pred.max(2)[1] - pred_label = pred_label.view(-1).cpu() # (n,) - - assert pred_label.shape == gt_label.shape - return (pred_label, gt_label) + result_clusters = [] # Iterate over all the samples for sample in test_dataset: + print('Eval test sample ..') pred_label, gt_label = eval_sample(net, sample) - print('Eval done ..') + sample_data = np.column_stack((sample["points"].numpy(), sample["normals"].numpy(), pred_label.numpy())) + print('Eval done.') - pred_labels = pred_label.numpy() - print(pred_labels) + sample_data = normalize_pointcloud(sample_data) + + sample_data = append_onehotencoded_type(sample_data, 1.0) + sample_data = append_normal_angles(sample_data) + + print('Clustering ..') + print('Shape: ' + str(sample_data.shape)) + + clusters = extract_clusters(sample_data, [0, 1, 2, 3, 4, 5, 7, 8, 9, 10], eps=0.1, min_samples=0.0001, metric='euclidean', algo='auto') + + print('Clustering done. ' + str(len(clusters)) + " Clusters.") + print(sample_data[:, 6]) + + draw_sample_data(sample_data, False) + + result_clusters.extend(clusters) + + # result_clusters.append(sample_data) + + #draw_clusters(result_clusters) diff --git a/vis/view.py b/vis/view.py index 8da396a..a1eb1bd 100644 --- a/vis/view.py +++ b/vis/view.py @@ -1,4 +1,4 @@ -import open3d as o3d +# import open3d as o3d import numpy as np